对不同用户进行权限管理。

root用户下创建用户

create user username identified by 'password';

查看当前权限:

show grant;

赋予权限:权限列表

grant select,insert,update on *.*(databasename.tablename, * represents all) to username@'localhost'(login ip, '%' represents all) [identified by];

或者 grant all privileges on ...

flush privileges;

reference:

  1. mysql权限总结
  2. MYSQL授权命令grant的方法
posted on 2019-11-05 10:26  _林深时见鹿  阅读(95)  评论(0编辑  收藏  举报