
To follow these instructions, you must know the root password for the database. This is likely different from the root password of the server.
mysql -u root -p
CREATE DATABASE mydatabasename;
CREATE USER myuser IDENTIFIED BY 'mypassword';
GRANT ALL ON mydatabasename.* to myuser;