我尝试用命令在终端中运行WordCount。
hadoop jar ~/Study/Hadoop/Jars/WordCount.jar \
WordCount /input/input_wordcount/ /output 但是它失败了,出现了以下错误:

如何解决这个问题?
发布于 2017-09-19 14:27:55
你在vmware上跑!关闭在菲尔特的防火墙!试试service iptables stop或chkconfig iptables off
在hdfs-site.xml中添加此配置
<property>
<name>dfs.permissions</name>
<value>false</value>
</property>
<property>
<name>dfs.permissions.enabled</name>
<value>false</value>
</property>https://stackoverflow.com/questions/46113931
复制相似问题