Docker container accesses the host's MySQL operation

Docker container accesses the host's MySQL operation

background:

There is a flask project that provides an interface, which is built and run using a docker container. MySQL runs on the host machine, and you need to allow flask to connect to the host machine's mysql in the container.

Using the ifconfig command, you can see that there is a docker0 and eth0. In the docker container, you can connect to the host's MySQL through the IP address of eth0 plus the port number (3306); in addition, nginx can access the container through the IP address of docker0 plus the port number specified when building the container.

Supplement: The mysql container of docker runs normally, but the host machine cannot connect to the database. Here is the solution

Docker runs mysql container normally, but host Navicat cannot connect

I executed docker ps on docker and the display was as follows:

This means that my mysql is normal, but I can't connect to my database using sqlyog and Navicat. Later I found the problem. Although I succeeded in creating a mysql container (docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root -d mysql:5.6.35), there was a prompt that I neglected:

It is prompted here that the network is unavailable, so the host cannot connect to the database

Solution: Now enter this command vim /usr/lib/sysctl.d/00-system.conf (if vim doesn't work, just enter vi):

This will appear immediately:

Add this sentence at the end: net.ipv4.ip_forward=1 (the added command is as follows: press the i key first, then you can operate) and then save and exit (after writing the command net.ipv4.ip_forward=1, press the esc key, then Ctrl+: and finally enter wq! to save and exit), then restart the network service: systemctl restart network First stop the mysql container just now docker stop docker, then delete the container docker rm mysql as follows:

Now you can recreate the mysql container and see the effect:

Is there no warning about the network being unavailable? I connected using sqlyog, and it was the same when I connected using Navicat:

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:
  • Docker container custom hosts network access operation
  • Docker port mapping and external inaccessibility issues
  • How to enable remote access in Docker
  • Solution to the problem that Docker container cannot access Jupyter
  • 404 error occurs when accessing the homepage of tomcat started in Docker mode
  • Docker image access to local elasticsearch port operation
  • Solution to docker suddenly not being accessible from the external network

<<:  Some lesser-known sorting methods in MySQL

>>:  js array entries() Get iteration method

Recommend

How to use VUE to call Ali Iconfont library online

Preface Many years ago, I was a newbie on the ser...

36 principles of MySQL database development (summary)

Preface These principles are summarized from actu...

Nginx reverse proxy to go-fastdfs case explanation

background go-fastdfs is a distributed file syste...

W3C Tutorial (7): W3C XSL Activities

A style sheet describes how a document should be ...

Detailed tutorial on installing mysql 5.7.26 on centOS7.4

MariaDB is installed by default in CentOS, which ...

UCenter Home site adds statistics code

UCenter Home is an SNS website building system rel...

A brief discussion on JS regular RegExp object

Table of contents 1. RegExp object 2. Grammar 2.1...

JavaScript parseInt() and Number() difference case study

Learning objectives: The two functions parseInt()...

8 JS reduce usage examples and reduce operation methods

reduce method is an array iteration method. Unlik...

Use Docker to create a distributed lnmp image

Table of contents 1. Docker distributed lnmp imag...

Differentiate between null value and empty character ('') in MySQL

In daily development, database addition, deletion...

A detailed account of the process of climbing a pit of Docker deployment service

First time writing. Allow me to introduce myself....