Created 03-13-2018 06:51 AM
Hello All,
I am trying to get essential data from fsimage. Currently I am able to download the fsimage in my local machine using dfsadmin -fetchImage <LOCAL_DIR_PATH> command but I want to know what is the appropriate way I can download the fsimage on other machines or how can I request the user to give me required privileges to download fsimage.
Created 03-13-2018 09:27 AM
You can find more information about the "dfs.cluster.administrators" property which sets the ACL-for-admins. The administrators for the cluster specified as an ACL. This controls who can access the default servlets, etc. in the HDFS.
We can set this property with a comma separated value containing list of users or groups who can access and execute these administrative commands from any host.
Example:
<property> <name>dfs.cluster.administrators</name> <value>testuser1,testuser2,testuser3,testgroup1,testgroup2</value> </property>
.
NOTE: by default the property "dfs.cluster.administrators" value is set to "hdfs"
Created 03-13-2018 09:27 AM
You can find more information about the "dfs.cluster.administrators" property which sets the ACL-for-admins. The administrators for the cluster specified as an ACL. This controls who can access the default servlets, etc. in the HDFS.
We can set this property with a comma separated value containing list of users or groups who can access and execute these administrative commands from any host.
Example:
<property> <name>dfs.cluster.administrators</name> <value>testuser1,testuser2,testuser3,testgroup1,testgroup2</value> </property>
.
NOTE: by default the property "dfs.cluster.administrators" value is set to "hdfs"