For creating new user, We need to follow simple steps as below :
Step 1: Login to MySQL as root
$ mysql -u root -p
Step 2 : We will see mysql command prompt
mysql> CREATE USER 'my_new_user'@'localhost' IDENTIFIED BY 'test_password';
Here, We have successfully created new user, But this u...