The first nine chapters analyze with you all the fun rancher - Installation Guide

This series of articles:


Chapter One:Nine analysis with you all the fun rancher - Installation Guide

Chapter II: nine analyze with you all the fun rancher - Import Cluster articles

table of Contents

1 rancher Introduction

2 rancher image download

3 rancher start

4 rancher settings

    4.1 rancher administrator password

    4.2 rancher server URL settings

    4.3 rancher international settings


1 rancher Introduction

        rancher's official website can click on .

        Since there's official website, why depend on my tutorial. Because the rancher's official website access excruciatingly slow; endless, no reason 404; and from time to time to insult my experience.

        I do not know the reason for the above is sufficient. Tell me if do not believe you can challenge the right to practice your guts.

        rancher is a management k8s web console, which allows non-command operation and maintenance personnel do not beat, just by clicking the page you can easily operate k8s.


2 rancher image download

        Before downloading rancher mirroring, you must ensure that the docker is properly installed. Docker installation and setup, please refer to my other article " Docker relaxed one minute after blasting ." Mirror download the following statement, here choose v2.3.3 version of the rancher.

docker pull rancher/rancher:v2.3.3

clipboard1.png

3 rancher start

        Start rancher, and bind local port 80 and 443. Make sure that these two ports are not occupied.

docker run -d --restart=unless-stopped \
--name=rancher \
-p 80:80 -p 443:443 \
-v /usr/local/rancher:/usr/local/rancher \
rancher/rancher:v2.3.3

clipboard2.png

        Open your browser and enter the server where the rancher IP (I IP: 10.110.101.103), and then press Enter:

clipboard3.png

        If out of this screen, then start a successful rancher.

4 rancher settings

4.1 rancher administrator password

        Set administrator "admin" password in the browser page, as shown in the figure above.

4.2 rancher server URL settings

        After you set up an administrator password, the next step is to enter the URL of the page rancher server settings. Default.

clipboard4.png

4.3 rancher international settings

        rancher default display is in English, if you want to set up Chinese students can select "Simplified Chinese."

clipboard5.png

        Since then, rancher installation and setup is completed.

Guess you like

Origin blog.51cto.com/14625168/2455663