- create user and password
mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
- Grant privilege to all dbs
mysql> GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
mysql> GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';