To create a new MySQL database follow this steps:
1. Access to MySQL console using a privileged user, in this case root:
Linux console
$ mysql -u root -p
2. Create database.
Linux console
mysql > CREATE DATABASE ”databasename”;
Now, you can add a user to the databaseor you can start populating it.
Easy?