[ mysql: create user ]
Use this commands:
- create user <your_user_name>;
- grant all privileges on <your_db_name>.* to ‘<your_user_name>‘@’localhost’ identified by ‘<your_password>‘ with grant option;
- flush privileges;
Note: grant all privileges on *.* blabla.. (for all access)
Categories: [ database ]
create user, [ database ]