User Tools

Site Tools


rancheruclv

This is an old revision of the document!


Rancher is a complete, open source platform for deploying and managing containers in production. It includes commercially-supported distributions of Kubernetes, Mesos, and Docker Swarm, making it easy to run containerized applications on any infrastructure.

Documentos iniciales en: http://docs.rancher.com/rancher/v1.2/en/quick-start-guide/

Instalar el sistema operativo limpio. Se recomienda un Ubuntu pero puede ser cualquier sistema que soporte docker segun la ayuda.

Instalar docker para debian: https://docs.docker.com/engine/installation/linux/debian/ Para jessie:

apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
cat >  /etc/apt/sources.list.d/docker.list << 'EoT'

deb https://apt.dockerproject.org/repo debian-jessie main

EoT

apt-get install apt-transport-https
apt-get update
apt-cache policy docker-engine
apt-get -y install docker-engine
service docker start

#Comprobando
docker run hello-world


Instalar docker para ubuntu: apt-get install docker.io

Start Rancher Server

$ sudo docker run -d --restart=unless-stopped -p 8080:8080 rancher/server
# Tail the logs to show Rancher
$ sudo docker logs -f <CONTAINER_ID>
rancheruclv.1479917603.txt.gz · Last modified: 2020/04/10 17:38 (external edit)