Created on 11-08-2016 05:02 PM - edited 09-16-2022 03:47 AM
Hello,
I am able to run the startup_sandbox.sh .
However, when it reaches line 71 of the code, I get the followng error:
[mhon@docker01 hortonworks_hadoop]$ docker exec -t sandbox nohup su - hue -c '/bin/bash /usr/lib/tutorials/tutorials_app/run/run.sh' >/dev/nul -bash: /dev/nul: Permission denied
I look forward to hearing your advice.
Thanks,
Marcia
Created 11-08-2016 05:20 PM
the problem seems to be incorrect spelling of "null"
/dev/nul: Permission denied It should be changed to /dev/null
.
So the correct command should be as following:
docker exec -t sandbox nohup su - hue -c '/bin/bash /usr/lib/tutorials/tutorials_app/run/run.sh' > /dev/null
.
Created 11-08-2016 05:20 PM
the problem seems to be incorrect spelling of "null"
/dev/nul: Permission denied It should be changed to /dev/null
.
So the correct command should be as following:
docker exec -t sandbox nohup su - hue -c '/bin/bash /usr/lib/tutorials/tutorials_app/run/run.sh' > /dev/null
.
Created 11-08-2016 05:23 PM
Thanks so much jss!!! Wow, you are fast!