1. Login to MySQL shell. 2. Run the following command to create database: CREATE DATABASE ‘new_db_name’; And press enter. New database is now created. 3. To create a user we need to run the following command: CREATE USER ‘newuser’@’localhost’ IDENTIFIED BY ‘password’; Press enter. New user is created. The last step is to assign a… Continue reading How to create MySQL Database, add user and assign user to a new database