Member since
04-22-2020
1
Post
0
Kudos Received
0
Solutions
04-22-2020
12:28 AM
For me there were a couple of issues. I already had some of the ports in use, e.g. 9000, 8080, etc. So the 'sandbox-proxy' did not start. After freeing up those ports, the line which started the sandbox-hdp, failed with - docker: Error response from daemon: Conflict. The container name "/sandbox-hdp" is already in use by container. This is because we have named the container. We can free that up with the following line - docker rm sanbox-hdp After this, both sandbox-hdp and sandbox-proxy started ok. If you are super keen you could add something like this to the shell script, just before the docker run line exists=`docker ps -a | grep $name` if [ "$exists" != "" ] then echo -n "Removing old $name" docker rm $name fi
... View more