美文网首页
CentOS 开放 3306 端口

CentOS 开放 3306 端口

作者: likly | 来源:发表于2018-03-29 10:54 被阅读0次
    • 开启端口
    iptables -A INPUT -p tcp -m tcp --dport 3306 -m state --state NEW,ESTABLISHED -j ACCEPT
    
    • 保存配置
    service iptables save
    
    • 重启生效
    service iptables restart
    
    • 查看规则链
    iptables -L -n
    

    相关文章

      网友评论

          本文标题:CentOS 开放 3306 端口

          本文链接:https://www.haomeiwen.com/subject/gfcmcftx.html