Member since
03-09-2021
1
Post
0
Kudos Received
0
Solutions
03-11-2021
09:00 PM
While running sandbox-hdp docker container on Ubuntu 20.04 LTS, I came across a problem and found a solution, which is pretty simple:
Download .zip file with .sh file for build docker container from here.
Unzip the file
Change line in docker-deploy-hdp<version>.sh from docker run --privileged --name $name -h $hostname --network=cda --network-alias=$hostname -d "$registry/$name:$version"
to
docker run --privileged -m=<at least 12g works for me> --name $name -h $hostname --network=cda --network-alias=$hostname -d "$registry/$name:$version"
Now, you can run a script, but probably you will need to re-run the second part after line #Deploy the proxy container. To make sure, run docker ps and check if sandbox-proxy container is running; if not, just run the second part of the script.
Like I said, for me that works, hope it will work for you.
... View more