mysql 授权

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 授权相关的知识,希望对你有一定的参考价值。

  

mysql grant 授权

授权格式如:grant 权限 to 数据库对象 on 用户

  1.   grant 授权用户增删改查权限: grant select, insert, update, delete on testdb.* to [email protected]‘%‘

  2. grant 数据库开发人员,创建表、索引、视图、存储过程、函数等权限。
    grant create on testdb.* to [email protected]‘192.168.0.%‘;
    grant alter on testdb.* to [email protected]‘192.168.0.%‘;
    grant drop on testdb.* to [email protected]‘192.168.0.%‘;

  3. 授权某个用户对该库的所有权限
    grant all on *.* to 用户@‘%‘
    执行刷新:flush privileges

  4. 赋予任何主机访问数据库的权限
    GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ WITH GRANT OPTION 

 

以上是关于mysql 授权的主要内容,如果未能解决你的问题,请参考以下文章

mysql对实例授权,可以不用对实例下的表重新授权吗?

mysql为远程用户授权及撤销授权

求助,MySql 5.6.17 授权用户问题

MYSQL授权先后顺序的测试

mysql——权限管理——授权收回权限查看授权

Mysql--基本配置、授权及删除权限