连接远程服务器上的MySQL

一、首先检查服务器提供商的安全组协议

连接远程服务器上的MySQL

二、打开防火墙对应的端口

systemctl start firewalld
systemctl status firewalld
firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --zone=public --add-port=3306/udp --permanent

三、在服务器上进入mysql

mysql -uroot -p

四、在mysql命令行中输入

grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges;

五、在mysql图形界面软件中连接

连接远程服务器上的MySQL

上一篇:ORA-01031: insufficient privileges处理记录


下一篇:MySQL笔记-mysql权限授权及创建用户