sequel pro没法链接mysql服务器

1. 添加用户html

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'your_passwd' WITH GRANT OPTION;
FLUSH PRIVILEGES;

 2. iptables里删除DROP 3306端口的规则mysql

iptables -L -n --line-numbers
// 个人DROP 3306规则在第5行
iptables -D INPUT 5

 

参考资料:sql

报错:1130-host ... is not allowed to connect to this MySql server 开放mysql远程链接 不使用localhost

转载于:https://www.cnblogs.com/gattaca/p/6404896.htmlpost