美文网首页
hadoop hdfs 9870 解决web页面中操作没有权限问

hadoop hdfs 9870 解决web页面中操作没有权限问

作者: 无来无去_A | 来源:发表于2020-07-27 08:55 被阅读0次
image.png

hadoop默认情况下开启了权限检查,且默认使用dir.who作为http访问的静态用户,因此可通过关闭权限检查或者配置http访问的静态用户为 linuxusername ,二选一即可.

**在core-site.xml中修改http访问的静态用户为 linuxusername **

<property>
        <name>hadoop.http.staticuser.user</name>
        <value>linuxusername </value>
 </property>

在hdfs-site.xml中关闭权限检查

<property>
        <name>dfs.permissions.enabled</name>
        <value>false</value>
</property>

相关文章

网友评论

      本文标题:hadoop hdfs 9870 解决web页面中操作没有权限问

      本文链接:https://www.haomeiwen.com/subject/tfvalktx.html