...
- <environment>.json located under: /data/ASDC/environments
- docker_health.sh script located under: /data/scripts
- docker_run.sh script located under: /data/scripts
3 Manual system setup
The manual system setup consists of :
- Installing the Docker service
- Updating Ubuntu to the latest version available on the Rackspace repository
- Allocating volume for /data
- Setting the connection to the Docker hub repository
Installing the Docker service
- Start the Rackspace machine
A. Login to Rackspace console
B. Start the Rackspace VM
C. Login to the Rackspace server with the credentials given by Rackspace
2.
Check Ubuntu uname:
uname -r
The output needs to be grater then 3.13.0-91-generic
For example:root@vm1-asdc:/data# uname -r4.4.0-51-generic
3.
Install the Docker service:
A.
Login to the new machine as root and run:
apt-get update
apt-get install apt-transport-https ca-certificates (Press Y)
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | tee /etc/apt/sources.list.d/docker.list
apt-get update
apt-cache policy docker-engine
apt-get -y install linux-image-extra-$(uname -r) linux-image-extra-virtual
apt-get -y install docker-engine
service docker start
B.
Verify that Java is installed:
java –version
C.
If Java is not installed then run: