三步解决
设置安全组:
图片.png设置防火墙:
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
设置root用户连接host:
终端登录mysql,然后:
use mysql;
select user,host from user where user='root';
update user set host='%' where user='root';
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
终端登录mysql,然后:
use mysql;
select user,host from user where user='root';
update user set host='%' where user='root';
本文标题:本地连不上远程阿里云MySQL数据库,密码对就是连不上
本文链接:https://www.haomeiwen.com/subject/asoifjtx.html
网友评论