- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
i get this error when i try to create a directory on hdfs:
- Labels:
-
HDFS
Created on ‎08-22-2018 04:17 PM - edited ‎09-16-2022 06:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Permission denied: user=admin, access=WRITE, inode="/user/d":hdfs:hdfs:drwxr-xr-x
Created ‎08-22-2018 04:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is a permission issue. You need to give permissions on the folder to admin user or create directory as hdfs user
su hdfs hdfs dfs -mkdir /user/d
(or)
su hdfs hdfs dfs -chown admin:admin /user/d
.
If you are using a kerberized environment, you should do a kinit with hdfs keytab and then run the above commands
kinit -kt /etc/security/keytabs/hdfs.headless.keytab {user-principal}
.
Please "Accept" the answer if this helps.
Created ‎08-22-2018 04:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is a permission issue. You need to give permissions on the folder to admin user or create directory as hdfs user
su hdfs hdfs dfs -mkdir /user/d
(or)
su hdfs hdfs dfs -chown admin:admin /user/d
.
If you are using a kerberized environment, you should do a kinit with hdfs keytab and then run the above commands
kinit -kt /etc/security/keytabs/hdfs.headless.keytab {user-principal}
.
Please "Accept" the answer if this helps.
