background: I have done a project before, which requires accessing the Redis service provided by the host in the container (this is a common application scenario). The conventional solution is: ① Host network ( ②
No fancy operations, just use the common ② bridge mode: Step 1: Customize the bridge and apply it docker network create --gateway 172.16.1.1 --subnet 172.16.1.0/24 app_bridge docker run --network=app_bridge --name ...... # The following is taken from the docker-compose.yml file...... networks: default: name: app_bridge external: true Why not use the default docker0 bridge? As mentioned at the beginning of this article: docker0 is the default bridge, and newly created containers will join this bridge by default, so we need to create a bridge app_bridge dedicated to this program Step 2: Create an alias corresponding to the host in the container To access the host machine's localhost:6379 service in bridge mode within the container, you must use the --add-host option provided by Docker (the corresponding configuration in docker-compose.yml is extra_host). The --add-host option of docker run adds a line to the container's /etc/hosts file, making it easier for us to access other networks using that name. docker run -it --add-host dockerhost:172.16.1.1 ubuntu cat /etc/hosts 172.17.0.22 09d03f76bf2c fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters 127.0.0.1 localhost ::1 localhost ip6-localhost ip6-loopback 172.16.1.1 dockerhost Then you can use dockerhost:6379 in the program configuration file to access the host Redis service. ------------------------------------------ Friends who are slightly familiar with the docker network model should be able to understand and complete the above operations----------------------------------------------------- A situation: I used the above operations on the company's CentOS7 machine, and the container could not connect to the host machine (containers could still access each other normally). Simplify the problem test: create a new container, and try to ping the docker0 gateway in the container. Oh my god, all four company machines cannot ping the docker0 gateway, but the external network can still access it normally. Then the problem becomes: Using the default docker0 bridge, the docker0 gateway cannot be pinged from within the container, and the host machine cannot be accessed. Oh my, it's most likely a configuration problem with the company's machines. . ~ After asking the company's operation and maintenance colleagues, I found that: Chain INPUT (policy DROP) The default policy of the above INPUT chain is discard: the INPUT chain rule for accessing the host from the container does not match any of the listed ones and will be discarded, so we will get stuck when pinging the docker0 gateway from the container and receive no results.
The original intention of this strategy is server security (damn, it results in the container losing its basic ability to access the host machine!!!). Operation and maintenance solution: ① Use ② Add the bridge network segment to be used to the INPUT chain
OK, That's All. If you encounter the problem that you cannot ping the bridge gateway in the default bridge container in the company network and cannot access the host machine, you can refer to this article for troubleshooting. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: How to use js to determine whether a file is utf-8 encoded
>>: Detailed analysis of MySQL instance crash cases
Pseudo-elements and pseudo-classes Speaking of th...
Table of contents Overview Single file components...
This article uses examples to explain the basic k...
MySQL 8.0.3 is about to be released. Let’s take a...
Table of contents Preface What is metadata Refere...
Table of contents describe accomplish The project...
1. Install mutt sudo apt-get install mutt 2. Inst...
1. Execute the select statement first to generate...
Table of contents one. environment two. Precautio...
Installation Environment 1. gcc installation To i...
Ubuntu 18.04, other versions of Ubuntu question: ...
Without further ado, here are the renderings. The...
background In the group, some students will ask r...
This article shares the specific code of js+canva...
Brief description <br />In IE6 and 7, in a ...