Ievads
Prasības
Instalējiet Docker
Instalējiet Rancher
Secinājums
Ievads
Rancher ir atvērtā pirmkoda platforma konteineru darbināšanai un privāta konteineru pakalpojuma izveidei. Rancher pamatā ir Docker, tāpēc varat to palaist īpašā kastē, KVM mašīnā vai pat LXC konteinerā. Rancher nodrošina milzīgu lietojumprogrammu bibliotēku, kas tiek instalēta dažu klikšķu laikā, kā arī atbalsta Docker attēlus no Dockerhub.
Prasības
Instalējiet Docker
Kā minēts, Docker ir jāpalaiž Rancher, tāpēc mēs to vispirms instalēsim.
Vispirms noņemiet visus vecos Docker failus, ja nepieciešams.
sudo apt-get remove docker docker-engine docker.io
Piezīme . Varat saņemt ziņojumu, ka nav instalēti Docker faili. To var droši ignorēt.
Atjauniniet pakotņu sarakstus.
sudo apt-get update
Ļaujiet apt
izmantot repozitoriju virs HTTPS
.
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
Pievienojiet oficiālo GPG atslēgu.
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Pārbaudiet, vai jums ir atslēga, meklējot pēdējos 8 atslēgas pirksta nospieduma ciparus.
sudo apt-key fingerprint 0EBFCD88
Izvade atgādinās šādu tekstu.
pub 4096R/0EBFCD88 2017-02-22
Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid Docker Release (CE deb) <[email protected]>
sub 4096R/F273FCD8 2017-02-22
Pievienojiet stable
repo.
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
Atkārtoti atjauniniet pakotņu sarakstus.
sudo apt-get update
Pārbaudiet pieejamās Docker CE versijas.
apt-cache madison docker-ce
Jūs redzēsit izvadi, kas līdzīga šim blokam.
docker-ce | 17.09.1~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.09.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.06.2~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.06.1~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.06.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.03.2~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.03.1~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
docker-ce | 17.03.0~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
Lai instalētu jaunāko Docker CE versiju, pievienojiet version-string
, (otrā kolonna) no jaunākās stabilās versijas pēc =
tālāk norādītās komandas.
sudo apt-get install docker-ce=17.09.1~ce-0~ubuntu
Piezīme . Varat instalēt jaunāko Docker CE versiju, nepievienojot versiju sudo apt-get install docker-ce
komandas beigām , taču ražošanas vidē es ieteicu instalēt konkrētu versiju, nevis jaunāko versiju.
Pārbaudiet, vai Docker ir pareizi instalēts.
sudo docker run hello-world
Šī komanda palaiž testa attēlu testa konteinerā, lai izdrukātu ziņojumu, un pēc tam iziet. Ziņojums būs līdzīgs tālāk norādītajam.
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://cloud.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/engine/userguide/
Instalējiet Rancher
Tagad mēs esam gatavi instalēt Rancher.
sudo docker run -d --restart=unless-stopped -p 8080:8080 rancher/server:stable
Uzgaidiet dažas minūtes, lai atļautu Rancher UI sāknēšanu. Pēc tam atveriet savu iecienītāko pārlūkprogrammu un atveriet 8080
servera portu .
http://192.0.2.0:8080
Noteikti nomainiet to 192.0.2.0
ar faktisko servera IP adresi.
Rancher pēc noklusējuma nekonfigurē piekļuves kontroli, tāpēc ir svarīgi to iestatīt nekavējoties, pretējā gadījumā UI un API var piekļūt ikviens, kam ir jūsu IP.
Virziet kursoru virs ADMIN
cilnes un noklikšķiniet uz Access Control
.
Izpildiet Rancher lietotāja saskarnē sniegtos norādījumus, lai iestatītu vēlamo piekļuves kontroles veidu.
Secinājums
Tagad viss ir instalēts, un jūs varat sākt konfigurēt Rancher. Lai iegūtu padziļinātu informāciju par Rancher konfigurēšanu un lietošanu, apmeklējiet viņu oficiālo dokumentāciju .