标签:cmd http 防火墙 enc mys ant 连接 cdb 设置
Centos7上,对MySQL5.7开启远程连接。
1.修改/etc/my.cnf
[mysqld]
validate_password=off
2.命令行进入mysql
use mysql;
GRANT ALL ON *.* TO username@‘%‘ IDENTIFIED BY ‘password‘ WITH GRANT OPTION;
flush privileges;//重要
3.与防火墙有关
firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --reload
4.在Navicat中连接就可以了。
(adsbygoogle = window.adsbygoogle || []).push({});
标签:cmd http 防火墙 enc mys ant 连接 cdb 设置
原文地址:https://www.cnblogs.com/theworld/p/11611930.html