Portainer manages multiple Docker container environments1. Environmental Preparation# aliyun 2 cores 8G 139.196.95.123 Install docker and Portainer # aliyun 1 core 2G 47.100.34.199 install docker # qingcloud 1 core 2G 139.198.167.214 Install Docker 2. Manage Docker2.1 Install and run portanerInstall portaner on aliyun 2 core 8G server # Install portainer docker pull portainer/portainer # Start portainer docker run -d -p 8080:9000 --restart=always -v /var/run/docker.sock:/var/run/docker.sock --name prtainer portainer/portainer systemctl daemon-reload 139.198.167.214:2375 2.2 Modify the configuration fileModify /usr/lib/systemd/system/docker.service on all three machines # Modify the configuration file vim /usr/lib/systemd/system/docker.service # Add configuration file content ExecStart= xxxx -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock xxx represents the original parameters, append -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock content # Save the startup file and restart the service systemctl daemon-reload systemctl restart docker # Check whether it is effective ss -unlpt | grep 2375 2.3 Add Node# Name docker-prod01 docker-prod02 # IP address 47.100.34.199:2375 139.198.167.214:2375 2.4 Effect diagramThe effect diagram of the added docker node is as follows. 3. Pitfall Records3.1connection refusedFailureGet http://47.100.34.199:2375/_ping: dial tcp 47.100.34.199:2375: connect: connection refused
This is the end of this article about managing multiple Docker containers with Portainer. For more information about Portainer Docker containers, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: About IE8 compatibility: Explanation of the X-UA-Compatible attribute
>>: Semanticization of HTML tags (including H5)
Table of contents 1. Introduction 2. The first me...
Table of contents 1. Hash table principle 2. The ...
Three ways to use CSS in HTML: 1. Inline style: s...
Mysql stored procedure 1. Create stored procedure...
CSS controls the printing style of web pages : Use...
Preface In this article, we will use Docker to bu...
It took me half an hour to write the code, and th...
In some scenarios, we need to modify our varchar ...
This article uses an example to illustrate the us...
1. Install MySQL database ① Download and unzip an...
I have been using CSS for a long time, but I have...
Docker runs multiple Springboot First: Port mappi...
Table of contents Preface text 1. Global Registra...
1. Edit the PAM configuration file sudo vim /etc/...
Preface Nodejs is a server-side language. During ...