AI智能
改变未来

navicat远程连接腾讯云主机中MySQL


一、授权给用户远程访问的权利

use mysql
update user set host=’%’ where user=‘root’;
flush privileges;

二、对外开发端口

切换到root用户 打开iptables的配置文件:vi /etc/sysconfig/iptables,插入

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

全部修改完之后重启iptables: service iptables restart

三、使用SSH方式连接到服务器

使用Navicat连接腾讯云的MySQL数据库:

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » navicat远程连接腾讯云主机中MySQL