[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-10-19 Thread Haridas Kandath (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16657002#comment-16657002
 ] 

Haridas Kandath commented on HDDS-320:
--

Thanks [~elek]. That fixed it.

> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-10-19 Thread Elek, Marton (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16656911#comment-16656911
 ] 

Elek, Marton commented on HDDS-320:
---

The base image of smoketest runs as hadoop user with uid=1000. If you have 
different uid please make sure that the following directories and files are 
writable by anybody:

{code}
 
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/etc/hadoop
 
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/etc/hadoop/*
 
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/logs
{code}

(It may be fixed with adjusting the docker-compose, using a .env user_id 
parameter)

> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-10-19 Thread Haridas Kandath (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16656832#comment-16656832
 ] 

Haridas Kandath commented on HDDS-320:
--

Tried the above steps. Running the smoke tests gives  the following 

-
Executing test(s): [basic]

  Cluster type:  ozone
  Compose file:  
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/../compose/ozone/docker-compose.yaml
  Output dir:
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/result
  Command to rerun:  ./test.sh --keep --env ozone basic
-
Removing ozone_ozoneManager_1 ... done
Removing ozone_scm_1  ... done
Removing ozone_datanode_1 ... done
Removing network ozone_default
Creating network "ozone_default" with the default driver
Creating ozone_ozoneManager_1 ... done
Creating ozone_datanode_1 ... done
Creating ozone_scm_1  ... done
Waiting 30s for cluster start up...
ERROR: No container found for datanode_1
Removing ozone_scm_1  ... done
Removing ozone_datanode_1 ... done
Removing ozone_ozoneManager_1 ... done
Removing network ozone_default
-
Executing test(s): [ozonefs]

  Cluster type:  ozonefs
  Compose file:  
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/../compose/ozonefs/docker-compose.yaml
  Output dir:
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/result
  Command to rerun:  ./test.sh --keep --env ozonefs ozonefs
-
Stopping ozonefs_hadooplast_1 ... done
Removing ozonefs_ozoneManager_1 ... done
Removing ozonefs_scm_1  ... done
Removing ozonefs_datanode_1 ... done
Removing ozonefs_hadooplast_1   ... done
Removing network ozonefs_default
Creating network "ozonefs_default" with the default driver
Creating ozonefs_ozoneManager_1 ... done
Creating ozonefs_hadooplast_1   ... done
Creating ozonefs_datanode_1 ... done
Creating ozonefs_scm_1  ... done
Waiting 30s for cluster start up...
ERROR: No container found for datanode_1
Stopping ozonefs_hadooplast_1 ... done
Removing ozonefs_datanode_1 ... done
Removing ozonefs_scm_1  ... done
Removing ozonefs_hadooplast_1   ... done
Removing ozonefs_ozoneManager_1 ... done
Removing network ozonefs_default
-
Executing test(s): [s3]

  Cluster type:  ozones3
  Compose file:  
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/../compose/ozones3/docker-compose.yaml
  Output dir:
/home/haridas/projects/additional/hadoop/hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/result
  Command to rerun:  ./test.sh --keep --env ozones3 s3
-
Removing ozones3_scm_1  ... done
Removing ozones3_s3g_1  ... done
Removing ozones3_datanode_1 ... done
Removing ozones3_ozoneManager_1 ... done
Removing network ozones3_default
Creating network "ozones3_default" with the default driver
Creating ozones3_ozoneManager_1 ... done
Creating ozones3_s3g_1  ... done
Creating ozones3_datanode_1 ... done
Creating ozones3_scm_1  ... done
Waiting 30s for cluster start up...
ERROR: No container found for datanode_1
Removing ozones3_datanode_1 ... done
Removing ozones3_scm_1  ... done
Removing ozones3_s3g_1  ... done
Removing ozones3_ozoneManager_1 ... done
Removing network ozones3_default
Setting up environment!
[ ERROR ] Reading XML source 'smoketest/result/robot-*.xml' failed: No such 
file or directory


> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | 

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-10-13 Thread Anu Engineer (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16649039#comment-16649039
 ] 

Anu Engineer commented on HDDS-320:
---

Can you please make sure that you have the latest docker images and you have 
build the tree with -Phdds flag.
Here are commands to try out.

* docker image ls -q | xargs docker image rm -f
* docker ps -aq | xargs docker kill
* docker ps -aq | xargs docker rm -f

Then please make sure that you have build ozone using a command like this.
*mvn clean package -Pdist -Phdds  -DskipTests=true -Dmaven.javadoc.skip=true 
-DskipShade*

Once this is done, can you please go to the smoketest directory and try to run 
them?
* cd hadoop-ozone/dist/target/ozone-0.4.0-SNAPSHOT/smoketest/
* ./test.sh
This should launch the docker containers and run each of the smoke tests we 
have. If you have any errors please post them here and I will take a look. 
Thanks





> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-10-13 Thread Haridas Kandath (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16648945#comment-16648945
 ] 

Haridas Kandath commented on HDDS-320:
--

Facing the same issue on ubuntu 18.04

Docker version 17.12.1-ce, build 7390fc6

docker-compose version 1.22.0, build f46880fe

 

Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
ozoneManager_1 | Traceback (most recent call last):
ozoneManager_1 | File "/opt/envtoconf.py", line 104, in 
ozoneManager_1 | Simple(sys.argv[1:]).main()
ozoneManager_1 | File "/opt/envtoconf.py", line 93, in main
ozoneManager_1 | self.process_envs()
ozoneManager_1 | File "/opt/envtoconf.py", line 67, in process_envs
ozoneManager_1 | with open(self.destination_file_path(name, extension) + 
".raw", "w") as myfile:
ozoneManager_1 | IOError: [Errno 13] Permission denied: 
'/opt/hadoop/etc/hadoop/log4j.properties.raw'
datanode_1 | Traceback (most recent call last):
datanode_1 | File "/opt/envtoconf.py", line 104, in 
datanode_1 | Simple(sys.argv[1:]).main()
datanode_1 | File "/opt/envtoconf.py", line 93, in main
datanode_1 | self.process_envs()
datanode_1 | File "/opt/envtoconf.py", line 67, in process_envs
datanode_1 | with open(self.destination_file_path(name, extension) + ".raw", 
"w") as myfile:
datanode_1 | IOError: [Errno 13] Permission denied: 
'/opt/hadoop/etc/hadoop/log4j.properties.raw'
scm_1 | Traceback (most recent call last):
scm_1 | File "/opt/envtoconf.py", line 104, in 
scm_1 | Simple(sys.argv[1:]).main()
scm_1 | File "/opt/envtoconf.py", line 93, in main
scm_1 | self.process_envs()
scm_1 | File "/opt/envtoconf.py", line 67, in process_envs
scm_1 | with open(self.destination_file_path(name, extension) + ".raw", "w") as 
myfile:
scm_1 | IOError: [Errno 13] Permission denied: 
'/opt/hadoop/etc/hadoop/log4j.properties.raw'

> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1  

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-09-19 Thread Anu Engineer (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16620824#comment-16620824
 ] 

Anu Engineer commented on HDDS-320:
---

I am booting up these containers on my machine. I am testing with Docker 
-Version 18.06.1-ce-mac73. Can you please reopen this JIRA if it is still not 
working?


> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>   

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-09-10 Thread Junjie Chen (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16610033#comment-16610033
 ] 

Junjie Chen commented on HDDS-320:
--

I tried on another centos 7  machine. The issue still exists.

Can someone show your docker version and docker-compose version if you can 
successfully run docker-compose up -d? 

docker-compose version 1.22.0, build f46880fe   


  
Docker version 18.09.0-ce-beta1, build 78a6bdb  
  


> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> 

[jira] [Commented] (HDDS-320) Failed to start container with apache/hadoop-runner image.

2018-08-21 Thread Junjie Chen (JIRA)


[ 
https://issues.apache.org/jira/browse/HDDS-320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16587321#comment-16587321
 ] 

Junjie Chen commented on HDDS-320:
--

my os version is CentOS Linux release 7.4.1708 (Core).

> Failed to start container with apache/hadoop-runner image.
> --
>
> Key: HDDS-320
> URL: https://issues.apache.org/jira/browse/HDDS-320
> Project: Hadoop Distributed Data Store
>  Issue Type: Bug
>  Components: document
> Environment: centos 7.4
>Reporter: Junjie Chen
>Priority: Minor
>
> Following the doc in hadoop-ozone/doc/content/GettingStarted.md, the 
> docker-compose up -d step failed, the error list list below:
> [root@VM_16_5_centos ozone]# docker-compose logs
> Attaching to ozone_scm_1, ozone_datanode_1, ozone_ozoneManager_1
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> datanode_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> datanode_1  | Traceback (most recent call last):
> datanode_1  |   File "/opt/envtoconf.py", line 104, in 
> datanode_1  | Simple(sys.argv[1:]).main()
> datanode_1  |   File "/opt/envtoconf.py", line 93, in main
> datanode_1  | self.process_envs()
> datanode_1  |   File "/opt/envtoconf.py", line 67, in process_envs
> datanode_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw'
> ozoneManager_1  | Traceback (most recent call last):
> ozoneManager_1  |   File "/opt/envtoconf.py", line 104, in 
> ozoneManager_1  | Simple(sys.argv[1:]).main()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 93, in main
> ozoneManager_1  | self.process_envs()
> ozoneManager_1  |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> ozoneManager_1  | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> ozoneManager_1  | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as myfile:  
> scm_1   | IOError: [Errno 13] Permission denied: 
> '/opt/hadoop/etc/hadoop/log4j.properties.raw' 
> scm_1   | Traceback (most recent call last):
> scm_1   |   File "/opt/envtoconf.py", line 104, in
>  
> scm_1   | Simple(sys.argv[1:]).main()
> scm_1   |   File "/opt/envtoconf.py", line 93, in main
> scm_1   | self.process_envs()
> scm_1   |   File "/opt/envtoconf.py", line 67, in process_envs
>  
> scm_1   | with open(self.destination_file_path(name, extension) + 
> ".raw", "w") as