Docker connects to the host Mysql operation

Docker connects to the host Mysql operation

Today, the company project needs to configure docker. After successfully installing it on Windows, I found that I could not connect to the local mysql.

I keep reporting permission issues or wrong addresses.

Finally found

1: The address is according to the following ipv4

2: To open the localhost permission on the host Mysql, the command is as follows

mysql -u root -pvmwaremysql>use mysql;

mysql>update user set host = '%' where user = 'root';

mysql>select host, user from user;

Okay, that’s it.

Additional knowledge: The Docker database container cannot be accessed locally, but can be accessed remotely

Preface

In the past, when I used idea to connect to the docker database on the Alibaba Cloud server, I used the server IP and port number. Later, I felt that the open port number of the security group was not safe, and wanted to use localhost, but found that I could not connect.

I thought I could only use the server IP and not localhost, but then I suddenly discovered that each Docker container has its own IP.

1. Enter the container

docker exec -it 8f00a625f3fb bash

2. Check IP

cat /etc/hosts

You can see that my IP is 172.18.0.2

3. Modify the link address

It worked after that.

The above docker connection host Mysql operation is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker container time zone adjustment operation
  • Solve the problem that docker run or docker restart will automatically exit when starting the image
  • Use nexus as a private library to proxy docker to upload and download images
  • Docker uses the nsenter tool to enter the container
  • Docker executes a command in a container outside the container
  • Solve the error during connect exception in Docker

<<:  Detailed explanation of mysql user variables and set statement examples

>>:  DOCTYPE type detailed introduction

Recommend

This article will help you understand the life cycle in Vue

Table of contents 1. beforeCreate & created 2...

Linux uses join -a1 to merge two files

To merge the following two files, merge them toge...

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

Using iframe techniques to obtain visitor QQ implementation ideas and sample code

Today at work, a friend I added temporarily asked ...

Detailed steps for installing Tomcat, MySQL and Redis with Docker

Table of contents Install Tomcat with Docker Use ...

Vue implements graphic verification code login

This article example shares the specific code of ...

Differences between MySQL MyISAM and InnoDB

the difference: 1. InnoDB supports transactions, ...

MySQL query optimization using custom variables

Table of contents Optimizing sorting queries Avoi...

VMware Workstation download and installation detailed tutorial

Virtual machines are very convenient testing soft...

6 Practical Tips for TypeScript Development

Table of contents 1. Determine the entity type be...

Example code for implementing hexagonal borders with CSS3

The outermost boxF rotates 120 degrees, the secon...

Echarts Basic Introduction: General Configuration of Bar Chart and Line Chart

1Basic steps of echarts Four Steps 1 Find the DOM...

Use pure CSS to achieve switch effect

First is the idea We use the <input type="...

How to dynamically add a volume to a running Docker container

Someone asked me before whether it is possible to...

Chinese and English font name comparison table (including Founder and Arphic)

In CSS files, we often see some font names become...