Member since
02-22-2016
8
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 8538 | 05-04-2020 05:34 AM |
10-21-2020
03:05 AM
Hello! The maven artifacts list for 7.1.3 is available at : https://docs.cloudera.com/cdp-private-cloud/latest/release-guide/topics/cdppvc-runtime-maven-7.1.3.html Is the same list for 7.1.4 available? Is it the same list? I am unable to find this list for CDP 7.1.4. Thanks.
... View more
Labels:
- Labels:
-
Cloudera on premises
05-04-2020
05:34 AM
1 Kudo
Hi, Mondi! The msg you are getting is telling that user devuser does not have permission to write to the root (/) HDFS folder. This is normal, and just like a Linux FS. If you create a folder in HDFS and make your local unix account the owner, you can use that folder as you. If you want to create objects in hdfs /, you need to become the superuser, hdfs. Example: # create your folder
$ sudo -u hdfs hdfs dfs -mkdir /user/devuser
# make devuser the owner:
$ sudo -u hdfs hdfs -chown devuser /user/devuser You first elevate to hdfs, then run the hdfs dfs command. This wil create your personal directory in /user and make you the owner. Now, when you run hdfs commands as devuser, you will have permission to modify objects in that folder. CAREFUL: elevating to hdfs is like becoming root in linux. You can do a lot of damage if you make a mistake.
... View more