由于服务器没有对外开放mysql的默认端口3306导致
CnetOs7开启方式
firewall-cmd --permanent --zone=public --add-port=3306/tcp firewall-cmd --reload
2.未设置远程用户访问权限导致
在服务器上连接mysql
use mysql;select host,user from user;
image
grant all privileges on *.* to 'root'@'%' identified by 'root用户的密码'; flush privileges;
3设置安全组
image image image这样就OK了
网友评论