搭建ss过程中在另一台服务器上开启ss manyuser始终连接不上,错误日志是无法连接远程数据库,所以google了如下解决办法,以后就不用再找了:

mysql -u root -p 输入数据库密码

mysql控制台运行:
grant all privileges on *.* to 'root'@'%' identified by '数据库密码' with grant option;

flush privileges; # 重载系统权限
exit;
允许3306端口
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT

iptables -L -n # 或者: service iptables status
此时生产环境是不安全的,远程管理之后应该关闭端口,删除之前添加的规则
iptables -D INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT

本文地址: http://xpleeandroid.github.io/2016/10/19/centos-allow-remote-mysql/