1. 添加用户

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

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

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

 

参考资料:

相关文章: