mysql - ubuntu开启3306端口失败,有什么办法可以解决?
大家讲道理
大家讲道理 2017-04-17 16:46:21
0
2
638

通过以下命令查询,3306端口,竟然返回空的,3306端口没有开启

netstat -an|grep 3306

然后就使用以下命令

iptables -I INPUT 4 -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT

来开启3306,但是显示以下错误

iptables: Index of insertion too big.

是什么原因呢?

还有什么方法可以开启3306的端口吗?
需要做远程链接

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(2)
小葫芦
iptables -I INPUT 4 -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT

表示在INPUT chain中第四行的位置插入这条rule

iptables: Index of insertion too big.

说明你的iptable里没有那么多行

iptables -S 看一下你一共多少行

man iptables 先捋一遍再操作,不然很容易一条指令直接断网

黄舟

你是要用mysql数据库么?根据你的描述是服务没起来,跟iptables没关系

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!