对于使用navicat premium工具链接MySQL的一些写错误发,百度上面有很多都是让你在my.ini/my.cnf/my.cnf.d下面删除IP地址,我找了很久都没有找到
出现上述情况
1、首先 设置远程访问权限 在mysql语句中执行语句
grant all privileges on *.* to 'root'@'%' identified by 'youpassword' with grant option;
flush privileges; //刷新MySQL的系统权限相关表
// % 允许访问的IP地址,表示所有的IP都可以根据root用户进行访问
//youpassword 这边填写你的数据库密码
2、重启MySQL
service mysql restart //重启MySQL命令
至此这边可以试一下能不能链接成功,如果还不行,往下看
3、centos7默认是firewall作为防火墙,这里改为iptables
(1)、关闭firewall:
systemctl stop firewalld.service //停止firewall
systemctl disable firewalld.service //禁止firewall开机启动
firewall-cmd --state //查看默认防火墙状态(关闭后显示notrunning,开启后显示running)
(2)、配置iptables防火墙
service iptables status //先检查是否安装了iptables
yum install -y iptables //安装iptables
yum update iptables //升级iptables
yum install iptables-services //安装iptables-services
(3)、编辑iptables防火墙文件
# sampleconfiguration for iptables service
# you can edit thismanually or use system-config-firewall
# please do not askus to add additional ports/services to this default configuration
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT[0:0]
:OUTPUT ACCEPT[0:0]
-A INPUT -m state--state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p icmp -jACCEPT
-A INPUT -i lo -jACCEPT
-A INPUT -p tcp -mstate --state NEW -m tcp --dport 22 -j ACCEPT //下面三行是自己加上去的,我也不是很懂什么意思
-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -jACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 8080-j ACCEPT
-A INPUT -j REJECT--reject-with icmp-host-prohibite
-A FORWARD -jREJECT --reject-with icmp-host-prohibited
COMMIT
:wq! #保存退出
vi编辑器自行百度
(4)、重启防火墙
systemctl restart iptables.service //最后重启防火墙使配置生效
systemctl enable iptables.service //设置防火墙开机启动
到这边我是可以链接了