服务端口无法访问问题
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
通常我们在linux启动一个监听进程,在其他服务器链接此端口不通,第一反应想到的可能是防火墙没关
centos7
systemctl stop firewalld.service
centos6.x
service iptables stop
关闭防火墙后,这个端口还是没办法访问,这个时候你就需要看看进程绑定的地址了,
[qun@cluster-master hadoop]$ netstat -anpl|grep 8040
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 127.0.0.1:8040 0.0.0.0:* LISTEN 4158/java
如果发现端口绑定的地址为127.0.0.1:8040,那么在其他服务器是肯定没办法访问的;
解决办法有两种:
- 将进程绑定到0.0.0.0,这个通常是配置文件的方式
- 将/etc/hosts中所有127.0.0.1的配置删掉
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)