码迷,mamicode.com
首页 > 数据库 > 详细

mysql配置白名单

时间:2019-06-21 21:07:47      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:mysql   表示   识别   nec   问题   调整   flush   tail   net   

1. 测试是否允许远程连接

 

$ telnet 192.168.1.8 3306
host 192.168.1.4 is not allowed to connect to this mysql server

2. 允许特定客户端 ip 地址连接

 

 

$ mysql -u root -p
Enter password:

mysql> use mysql

mysql> GRANT ALL ON *.* to root@‘192.168.1.4‘ IDENTIFIED BY ‘your-root-password‘; 

mysql> FLUSH PRIVILEGES;

注意: your-root-password 填写你的服务器 mysql 的密码

如果不知道自己的公网ip,百度一下ip,就可以看到了!,有时还会错,根据报错信息调整即可,不过好像公网Ip会被还是什么的,可以配成识别ip网段的就不会有问题了,

GRANT ALL ON *.* to root@‘119.143.12..%‘ IDENTIFIED BY ‘password‘; %表示通配的意思

参考 https://blog.csdn.net/zxc_user/article/details/80628214

mysql配置白名单

标签:mysql   表示   识别   nec   问题   调整   flush   tail   net   

原文地址:https://www.cnblogs.com/weiyiyong/p/11066796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!