imflexwala
12/1/2018 - 6:09 AM

Mysql Database user

create database db_name;
create user 'username'@'localhost' identified by 'password';
grant all on db_name.* to 'username'@'localhost';