- Create the database
mysqladmin -u db_user -p create drupaldb
- Login to MySQL
mysql -u db_user -p
- Grant privileges
GRANT ALL PRIVILEGES ON drupaldb.* TO nobody@localhost IDENTIFIED BY 'password';
- drupaldb = the Drupaldb database
- nobody@localhost = your DB account
- password = the password for the database user
- Flush the DB privileges
flush privileges;

