hadoop-3数据节点处于活动状态并正在运行,但是报告/url没有显示活动的数据节点

1cosmwyk  于 2021-06-02  发布在  Hadoop
关注(0)|答案(1)|浏览(345)

我有一个名称节点(主节点)和三个数据节点(从节点),我在名称节点本身配置了一个数据节点,它工作正常并显示在报表中。所有的守护进程都是单独运行的,但是hadoop dfsadmin-report中没有列出3个数据节点(从属节点)。
当jps启动时,一切看起来都很好
名称节点

[hadoop@master ~]$ jps
4338 Jps
2114 NameNode
2420 SecondaryNameNode
2696 NodeManager
2584 ResourceManager
2220 DataNode

从属节点[hadoop@slave1 ~]$jps 2114节点管理员2229 jps 2015数据节点
从属节点

[hadoop@slave2 ~]$ jps
2114 NodeManager
2229 Jps
2015 DataNode

从属节点[hadoop@slave3 ~]$日元

2114 NodeManager
2229 Jps
2015 DataNode 

[hadoop@master ~]$**hadoop dfsadmin -report**
DEPRECATED: Use of this script to execute hdfs command is deprecated.
Instead use the hdfs command for it.

16/07/14 21:27:46 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
Configured Capacity: 7092494336 (6.61 GB)
Present Capacity: 1852854272 (1.73 GB)
DFS Remaining: 1852821504 (1.73 GB)
DFS Used: 32768 (32 KB)
DFS Used%: 0.00%
Under replicated blocks: 0
Blocks with corrupt replicas: 0
Missing blocks: 0
Missing blocks (with replication factor 1): 0
Live datanodes (1):

Name: 192.168.1.160:50010 (nn1)*(### comment - this is data node configured in the name node itself)*
Hostname: nn1
Decommission Status : Normal
Configured Capacity: 7092494336 (6.61 GB)
DFS Used: 32768 (32 KB)
Non DFS Used: 5239640064 (4.88 GB)
DFS Remaining: 1852821504 (1.73 GB)
DFS Used%: 0.00%
DFS Remaining%: 26.12%
Configured Cache Capacity: 0 (0 B)
Cache Used: 0 (0 B)
Cache Remaining: 0 (0 B)
Cache Used%: 100.00%
Cache Remaining%: 0.00%
Xceivers: 1
Last contact: Thu Jul 14 21:27:46 IST 2016
beq87vna

beq87vna1#

此问题已解决-此问题只是因为数据节点/从属节点无法与主节点通信。这是因为主节点中的防火墙系统不接受来自数据节点的传入连接。有两种方法可以应对这种情况
您必须允许通过主节点中的salve节点(ip)进行传入通信
禁用防火墙。
我使用过第二个选项:在主节点中键入以下命令以禁用防火墙。

service iptables save
service iptables stop
chkconfig iptables off

相关问题