Windows下的Eclipse连接不上虚拟机上的hdfs,一直显示Listing folder content的解决方案
Posted 拾月凄辰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows下的Eclipse连接不上虚拟机上的hdfs,一直显示Listing folder content的解决方案相关的知识,希望对你有一定的参考价值。
Eclipse连接不上虚拟机上的hdfs,一直显示Listing folder content,如下图所示:
要做到以下三点:
1. 本身就还没创建输入和输出目录,此时要在hdfs上建个文件夹 。
bin/hdfs dfs -mkdir -p /user/hadoop/input
bin/hdfs dfs -mkdir -p /user/hadoop/output
2. core-site.xml这个配置文件中要写虚拟机的ip地址,不能写localhost
3. 一定要关闭防火墙 (这是CentOS的命令,不同Linux系统防火墙命令不一样,请自行百度命令)
systemctl status firewalld #查看防火墙状态
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
以上是关于Windows下的Eclipse连接不上虚拟机上的hdfs,一直显示Listing folder content的解决方案的主要内容,如果未能解决你的问题,请参考以下文章