Home > [ database ] > [ mysql: create user ]

[ mysql: create user ]

Use this commands:

  1. create user <your_user_name>;
  2. grant all privileges on <your_db_name>.* to ‘<your_user_name>‘@’localhost’ identified by ‘<your_password>‘ with grant option;
  3. flush privileges;

Note: grant all privileges on *.* blabla.. (for all access)

  1. No comments yet.
  1. No trackbacks yet.