解决阿里云服务器mariadb的远程连接

踩了两个小时左右的坑,终于连接上了远程的mariadb。


参考网址

记录一下:

  • 首先要修改用户表,设置远程mariadb的用户连接权限,以及可连接的ip,都能看懂就不解释了:
update user set host = '%' where user = 'root'; 
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION; 
update mysql.user set Grant_priv='Y' where Host='%';
FLUSH PRIVILEGES;
  • 接下来,需要去给阿里云安全组添加3306端口(mysql)
  • 安装iptables-services, 设置:
yum install iptables-services
systemctl enable iptables 
systemctl start iptables  
  • 开放端口
在/etc/sysconfig/iptables里添加:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

这样就能在远程使用工具访问啦!!!!

你可能感兴趣的:(解决阿里云服务器mariadb的远程连接)