Create Database with MySQL
If you don’t have phpMyAdmin, cPanel, or Plesk, you can SSH into the server and use the following commands:
create user dbuser@localhost identified by 'password';
create database db;
grant all on db.* to dbuser@localhost;
mysql -udbuser db -p
Print article | This entry was posted by elvis on 12/19/10 at 11:36:45 am . Follow any responses to this post through RSS 2.0. |