怎么给mysql加访问ip限制

怎么给mysql加访问ip限制,第1张

授权用户root使用密码jb51从指定ip为218.12.50.60的主机连接到mysql服务器:

GRANT ALL PRIVILEGES ON *.* TO 'root'@'218.12.50.60' IDENTIFIED BY 'jb51' WITH GRANT OPTION

flush privileges

使用以下授权语句,将授权指定的192.168.1.1 和192.168.1.2 的机器,使用用户名为root,密码为test123的用户访问grant all privileges on *.* to 'root'@'192.168.1.1' identified by 'test123'grant all privileges on *.* to 'root'@'192.168.1.2' identified by 'test123'


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5910496.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-08
下一篇 2023-03-08

发表评论

登录后才能评论

评论列表(0条)

保存