Simple authentication configuration for HDFS users

table of Contents

Configure authorization to enable permission authentication

Configure users who are allowed to operate


There are two authentication methods for HDFS. The simple method is simpler and only authenticates the user name without a password.

Configure authorization to enable permission authentication

authorization arranged in core-site.xml file in

vi hadoop/etc/hadoop/core-site.xml

<property>
  <name>hadoop.security.authorization</name>
  <value>true</value>

Guess you like

Origin blog.csdn.net/qq_29569183/article/details/114940419