当前位置:Gxlcms > mysql > mysql授权某数据库允许某用户远程连接

mysql授权某数据库允许某用户远程连接

时间:2021-07-01 10:21:17 帮助过:30人阅读

无详细内容 无 grant all privileges on *.* to 'userName'@'%' identified by 'password' WITH GRANT OPTION;FLUSH PRIVILEGES;/**on *.* 是 on 数据库.表 @% 是任意的 @ip 可以具体某个ip**/

<无详细内容> <无>
grant all privileges on *.* to 'userName'@'%' identified by 'password' WITH GRANT OPTION;
FLUSH   PRIVILEGES;
/**
on *.*  是  on 数据库.表   @% 是任意的 @ip 可以具体某个ip
**/

人气教程排行