1. Create a docker network card[root@i ~]# brctl addbr docker0 [root@i ~]# ip addr add 192.168.42.1/24 dev docker0 # The ip here is for internal use in docker, you can configure any one[root@i ~]# ip link set dev docker0 up [root@i ~]# ip addr show docker0 # View docker [root@i ~]# systemctl restart docker [root@i ~]# systemctl restart docker # Start the docker service 2. Add a subnet[root@i ~]# docker network create backend # In this way, we have created the backend subnet, and docker-compose can directly use this network # If the subnet is not common, use the following command to skip the security issue [root@i ~]# docker network create backend --subnet 172.24.24.0/24 [root@i ~]# docker network ls NETWORK ID NAME DRIVER SCOPE 6afff4d90f05 backend bridge local 57de7f32064e bridge bridge local 4b44a5340d6e host host local ac8e8ffe243f none null local Here you can see the backend 3. Delete the network card[root@i ~]# brctl show #Check the bridge status bridge name bridge id STP enabled interfaces br-5db3fa0c465f 8000.02424cfb3937 no veth038d483 veth2950f5c veth669dc5e veth715203f veth9f31643 vethd0f5330 docker0 8000.3a4803cd6298 no veth9d3badb vethd7530fd [root@i ~]# brctl delif <bridge name> <port name> #Uninstall the port on the bridge [root@i ~]# ifconfig # Check if there is a bridge network card name [root@i ~]# ifconfig <bridge name> down #Turn off this network card[root@i ~]# brctl delbr <bridge name> #Delete the bridge Supplement: The ultimate solution to the conflict between the bridge automatically created by Docker-Compose and the LAN 1. Problem DescriptionWhen using docker-compose to deploy applications, the default network mode of docker is bridge and the default network segment is 172.17.0.1/16. Unfortunately, the LAN of our own physical machine also uses the network segment 172.18.0.1/16. After executing docker-compose -f docker-compose.yml up -d to deploy the service, the automatically generated bridge will use 172.18.xx in turn, but a sad thing happened. The bridge generated by docker conflicts with the local area network. So, the long journey towards Baidu programming began... However, through Baidu and Google again and again, I found many blogs that were copied from each other, and finally tried and failed again and again, but ultimately failed to solve my problem. So, this article with a gold content of 99.9999999999999999999999999% was released. Docker version for this experiment [root@node100 docker-compose]# docker info | grep 'Server Version' Server Version: 19.03.12 2. SolutionStop the container created by docker-compose docker-compose -f docker-compose.yml down Manipulating Docker containers # Stop the Docker container sudo systemctl stop docker # Stop the docker0 bridge sudo ip link set dev docker0 down # Delete the docker0 bridge sudo brctl delbr docker0 # Reset iptables sudo iptables -t nat -F POSTROUTING PS # linux brctl command not found, install brctl yum install bridge-utils -y Modify daemon.json # Edit the daemon.json file vim /etc/docker/daemon.json # Add the following content, including setting the IP segment of the Docker container "default-address-pools": [ { "base" : "192.168.0.0/16", "size" : 24 } ] PS Note: If daemon.json contains other content, please remember to use commas to separate them. Restart the Docker container sudo systemctl daemon-reload sudo systemctl start docker Reinstall and start the docker-compose command docker-compose -f docker-compose.yml up -d 3. Expansion PlanClick here to get some solutions given by ISSUES masters Solution 1 Solution 2 Option 3 The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me. You may also be interested in:
|
<<: Turn off the AutoComplete function in the input box
>>: Comparison of CSS shadow effects: drop-Shadow and box-Shadow
Vue routing this.route.push jump page does not re...
Preface Here are the steps to install and configu...
I recently started learning database, and I feel ...
Conventional solution Use FileReader to read the ...
Table of contents 1. Demand 2. Database Design 3....
Table of contents 1. Basic Concepts of GTID 2. GT...
Native js realizes the carousel effect (seamless ...
For Windows User Using openGauss in Docker Pull t...
This article will discuss these 4 principles as t...
Table of contents Rendering API changes Render fu...
<br />With the increase of bandwidth, there ...
Preface How to write efficient SQL statements is ...
Often, after a web design is completed, the desig...
What is a table? Table is an Html table, a carrie...
1. Storage Engine In the last section, we mention...