Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Start off by adding a new user to Mysql
CREATE USER 'test123'@'localhost' IDENTIFIED BY 'testpassword123';
You should see a Query OK message from Mysql signalling that it run without error.
Now grant privileges to that user on a database
GRANT ALL PRIVILEGES ON testDatabase.* TO 'testuser'@'localhost'
Now reload privileges with
FLUSH PRIVILEGES;