报错内容

Couldn’t preview the file. NetworkError: Failed to execute ‘send’ on ‘XMLHttpRequest’: Failed to load ‘http://slave1:9864/webhdfs/v1/HelloHadoop.txt?op=OPEN&namenoderpcaddress=master:9820&offset=0&_=1609724219001’.
记一次HDFS Web报错Couldn‘t preview the file. NetworkError: Failed to execute ‘send‘ on ‘XMLHttpRequest‘_经验分享

Hadoop 集群背景

 

报错原因

hdfs-site.xml 文件中的 dfs.webhdfs.enabled 没有配置或者配置为 false

解决方案

1、编辑文件 hdfs-site.xml

[root@master ~]# vim /usr/bigdata/hadoop-3.3.0/etc/hadoop/hdfs-site.xml

2、增加或修改的配置信息为:

<property>
    <name>dfs.webhdfs.enabled</name>
    <value>true</value>
</property>

3、并把文件 hdfs-site.xml 分发给各个节点(或修改各个节点的 hdfs-site.xml 文件)
4、配置浏览器所在系统的 hosts 文件
(1)windows:
修改文件 C:\Windows\System32\drivers\etc\hosts
增加内容(Hadoop集群中各节点及主机名的映射)
记一次HDFS Web报错Couldn‘t preview the file. NetworkError: Failed to execute ‘send‘ on ‘XMLHttpRequest‘_hadoop_02
(2)Centos系统

[root@localhost ~]# vi /etc/hosts

增加内容(Hadoop集群中各节点及主机名的映射)
记一次HDFS Web报错Couldn‘t preview the file. NetworkError: Failed to execute ‘send‘ on ‘XMLHttpRequest‘_centos_03
5、重启 Hadoop 集群

至此,报错解决!