用户工具

站点工具


zh:notes:centos_mysql_remote

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录 前一修订版
后一修订版
前一修订版
zh:notes:centos_mysql_remote [2018/11/09 21:10]
pzczxs [修改MySQL库的授权]
zh:notes:centos_mysql_remote [2022/06/30 11:31] (当前版本)
pzczxs 讨论状态变化了
行 14: 行 14:
  
 ===== 设置防火墙 ===== ===== 设置防火墙 =====
 +  *第一步:升级iptables:
 +<code bash>
 +> systemctl stop firewalld
 +> yum install iptables-services
 +> systemctl enable iptables
 +> systemctl start iptables
 +</​code>​
 +  *第二步:修改防火墙设置:
 +<code bash>
 +> iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 8001 -j ACCEPT
 +</​code>​
 +  *第三步:保存上面的设置:
 +<code bash>
 +> service iptables save
 +</​code>​
 +  *第四步:重启防火墙:
 +<code bash>
 +> systemctl restart iptables
 +</​code>​
  
 +~~DISCUSSION:​closed~~
zh/notes/centos_mysql_remote.1541769048.txt.gz · 最后更改: 2018/11/09 21:10 由 pzczxs