写Map时出错:/wordcount$Map.class(Permission denied)

时间:2015-11-13 06:17:32

标签: hadoop dictionary

我试图在我的hadoop 2.7.1上运行wordcount示例,但是我在编译wordcount.java文件后得到了这个错误信息。 我已将.java文件放在桌面

enter image description here

2 个答案:

答案 0 :(得分:2)

向WordCount目录授予读写权限并尝试。

enter image description here

答案 1 :(得分:0)

You may get this problem in 2 cases :

1)Compiling the filename.java file as a non administrator(意味着您在处于sudo模式时正在编译文件,或者像hadoop中的其他用户一样编译hduser)。

  

要摆脱这种情况,请将用户模式更改为您的用户或当前用户

2)Permissions are not available for the compiler to write in to the place where the filename.java is available

  

在属性中启用权限,然后重试