服务端口无法访问问题

版权声明:本文为博主原创文章,未经博主允许不得转载。博客地址:http://www.fanlegefan.com/ https://blog.csdn.net/woloqun/article/details/84564326

通常我们在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的配置删掉

猜你喜欢

转载自blog.csdn.net/woloqun/article/details/84564326