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

