本帖最后由 jiangeng59 于 2016-1-4 18:12 编辑
本人已经在openstack上搭建好了Hadoop集群,配置的hosts文件如下
192.168.1.21 instance01
192.168.1.22 instance02
192.168.1.23 instance03
192.168.1.24 instance04
192.168.1.27 instance05
192.168.1.28 instance06
以上的ip都是内网ip,之前使用floatingip无法启动hadoop
现在的问题是:hadoop的一个服务端口(比如hdfs的管理界面192.168.1.21:50070),内网可以正常访问,外网ping可以通却无法通过telnet访问到,但是22号端口却可以访问,是需要设置什么?(防火墙已关闭)
[root@instance01 ~]# netstat -tlun
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 192.168.1.21:8019 0.0.0.0:* LISTEN
tcp 0 0 192.168.1.21:50070 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN
tcp 0 0 192.168.1.21:9000 0.0.0.0:* LISTEN
tcp 0 0 :::22 :::* LISTEN
|