Please follow the below commands to create a database and user in ubuntu with command line
- mysql -u root
 - CREATE DATABASE new_database;
 - CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
 - GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'lo
 - FLUSH PRIVILEGES;
 - exit;
 

