欢迎光临
我们一直在努力

mysql权限

建站超值云服务器,限时71元/月

1,查看所有用户权限

select distinct concat('User:''',user,'''@''',host,''';') AS query from
mysql.user;

或者:

select * from mysql.user;

2,查看某一个用户的权限

show grants for 'user'@'ip';

3,分配权限(以selcet权限为例)

–无须密码

grant select on *.* to 'user'@'ip';

–指定密码(xxxx为密码)

grant select on *.* to 'user'@'ip'identified by 'xxxx';

4,回收权限

revoke select on *.* from 'user'@'ip'identified by 'xxxx';

–暴利删除某用户的所有权限

delete from mysql.user where User='user'

5,刷新权限,否则不生效

flushprivileges;

附,查看当前端口

show global variables like 'port';

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » mysql权限
分享到: 更多 (0)