Docker starts MySQL configuration implementation process

Docker starts MySQL configuration implementation process

Preface

You can check how to start MySQL and some interpretations of MySQL on the official website. Attach the official website address

Start another mysql container instance and run the mysql command mysql is the world's most popular open source database. Because of its proven performance, reliability, and ease of use, MySQL has become the leading database choice for web-based applications, ranging from personal projects and websites, through e-commerce and information services, all the way to high-profile web properties including Facebook, Twitter, YouTube, Yahoo! and many more.

Actual combat process

By checking the official website for specific white papers, you can find out that you can use this command to execute

insert image description here

This is the most basic way to start MySQL. However, since MySQL needs to be accessed via a port before it can be opened, this simple command only opens a container and a database container, but there is no entry access. You can add the parameters below the official website.

Let's start by explaining its main commands and details one by one

When using run -d to run in the background, if the MySQL container is not downloaded, it will automatically download the latest version. You can also docker search mysql
Get the image docker pull mysql
When running a container, you need to mount its files. You can mount multiple files with the following command:

-v /home/gaokaoli/usr/mydata/mysql/log:/var/log/mysql mounts the container's log folder to the corresponding location on the host -v /home/gaokaoli/usr/mydata/mysql/data:/var/lib/mysql mounts the container's data folder to the corresponding location on the host -v /home/gaokaoli/usr/mydata/mysql/conf:/etc/mysql/conf.d mounts the container's custom configuration folder to the corresponding location on the host

Other main parameters in the command are as follows:

-d Run in the background
-p port mount
-v volume mount can mount multiple
-e environment configuration setting password
--name container name

Finally, the mounted image command is

docker run -d -p 3306:3306 -v /home/gaokaoli/mysql/conf:/etc/mysql/conf.d -v /home/gaokaoli/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=12345678 --name mysql001 mysql

insert image description here

Check whether the startup is successful

insert image description here

The specific IP used to open the database through the Navicat software is the local IP address of the virtual machine instead of the address in the container

insert image description here

Conducting the test

insert image description here

The above is the details of the implementation process of Docker starting MySQL configuration. For more information about Docker starting MySQL configuration implementation, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to automatically execute SQL statements when MySQL in Docker starts
  • Execute initialization sql when docker mysql starts
  • Solution to MySQL initialization and startup failure in Docker
  • How to quickly start MySQL testing using Docker on Mac
  • How to initialize the Mysql database when the Docker container starts
  • Docker starts the mysql service implementation steps

<<:  Use a table to adjust the format of the form controls to make them look better

>>:  Detailed explanation of the 4 ways to import CSS files: inline, inline, external, and imported

Recommend

The latest Linux installation process of tomcat8

Download https://tomcat.apache.org/download-80.cg...

MySQL8 Installer version graphic tutorial

Installation The required documents are provided ...

SQL GROUP BY detailed explanation and simple example

The GROUP BY statement is used in conjunction wit...

MySQL method steps to determine whether it is a subset

Table of contents 1. Problem 2. Solution Option 1...

Layui implements sample code for multi-condition query

I recently made a file system and found that ther...

Detailed explanation of Object.create instance usage in js

1. Create a new object using the Object.create() ...

Practice of Vue global custom instruction Modal drag

Table of contents background Implementation ideas...

Flex layout allows subitems to maintain their own height

When using Flex layout, you will find that when a...

JS uses the reduce() method to process tree structure data

Table of contents definition grammar Examples 1. ...

Solve the problem of docker images disappearing

1. Mirror images disappear in 50 and 93 [root@h50...

CSS3 realizes the animation effect of lotus blooming

Let’s look at the effect first: This effect looks...

MySQL Series 11 Logging

Tutorial Series MySQL series: Basic concepts of M...

JavaScript function call, apply and bind method case study

Summarize 1. Similarities Both can change the int...