Create Database with MySQL

If you don’t have phpMyAdmin, cPanel, or Plesk, you can SSH into the server and use the following commands:

Code:

create user dbuser@localhost identified by 'password';
create database db;
grant all on db.* to dbuser@localhost;
 
mysql -udbuser db -p

No feedback yet