Mysql数据对用户远程授权操作

格式语句:
grant 权限1,权限2,...权限n on 数据库名称.表名称 to 用户名@用户地址 identified by '连接密码' [with grant option];

identified by 可以不写,如果写会更改密码为新密码。

注:如果带了 with grant option则被授予权限的人,可以把此权限再转授权(传递)给其他用户。

例子中用户为vinter,ip为192.168.1.111
//固定ip:
grant all privileges on *.* to 'vinter'@'192.168.1.111' identified by '123' with grant option;

insert into user (host,user,password) values('192.168.1.111','vinter',password('123'));

//不限制ip
grant all privileges on *.* to 'vinter'@'%' iden

Mysql数据对用户远程授权操作最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/28344.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>