CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2022-04-10
by diggzhang

Original Post

Original - Posted on 2022-04-10
by diggzhang



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Check file permissions of dfs directory:
``` find /path/to/dfs -group root ```
In general, the user permission group is `hdfs`. Since I started HDFS service with root user, some dfs block file with `root` permissions was generated.
I solved the problem after change to right permissions:
``` sudo chown -R hdfs:hdfs /path/to/dfs ```
Check file permissions of dfs directory:
``` find /path/to/dfs -group root ```
In general, the user permission group is `hdfs`. Since I started HDFS service with root user, some dfs block file with `root` permissions was generated.
I solved the problem after change to right permissions:
``` sudo chown -R hdfs:hdfs /path/to/dfs ```

        
Present in both answers; Present only in the new answer; Present only in the old answer;