当前位置: 技术问答>linux和unix
CentOS服务器 怎么打开3306端口?
来源: 互联网 发布时间:2016-10-10
本文导语: 如题,我的服务器是CentOS系统,我想远程连接Mysql数据库。发现3306端口不允许连接。我该怎么才能打开这个端口呢? iptables 这个命令无法执行,提示:bash: iptables: command not found 求帮忙 | iptables默...
如题,我的服务器是CentOS系统,我想远程连接Mysql数据库。发现3306端口不允许连接。我该怎么才能打开这个端口呢?
iptables 这个命令无法执行,提示:bash: iptables: command not found
求帮忙
iptables 这个命令无法执行,提示:bash: iptables: command not found
求帮忙
|
iptables默认是安装的
你肯定是su到root 而不是su -到root的 所以直接执行iptables会找不到
加上路径执行/sbin/iptables
或者su -到root执行iptables
|
vi /etc/sysconfig/iptables
-A RH-Firewall-1-INPUT -m state -state NEW -m tcp -p tcp -dport 3306 -j ACCEPT
-A RH-Firewall-1-INPUT -m state -state NEW -m tcp -p tcp -dport 3306 -j ACCEPT
|
都说了command not found了。
# yum install iptables