Example of how to deploy MySQL 8.0 using Docker

Example of how to deploy MySQL 8.0 using Docker

1. Refer to the official website to install docker

2. Pull the MySQL image (pull the latest image by default) 8.0.11

docker pull mysql

3. Create persistent mysql data and mysql.cnf on the host

mkdir /usr/local/mysqlData/test/cnf
mkdir /usr/local/mysqlData/test/data
vi /usr/loal/mysqlData/test/cnf/mysql.cnf

To set up local file sharing:

Docker -> Preferences... -> File Sharing


4. Add operation permissions

chmod 777 /usr/local/mysqlData/test/data Note: Permission verification during mounting (operation permissions)

5. Run the image, set the initial password, map the local port to the docker port, and mount the local data disk ( start the msyql service )

docker run -itd -p 3307:3306 --name test_mysql -v /usr/local/mysqlData/test/conf:/etc/mysql
 -v /usr/local/mysqlData/test/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 mysql

Running results:


6. Enter the test_mysql container

Docker exec -it test_mysql bash

As shown in the figure:

7. Log in to mysql in the container


8. View user information

mysql> select user,host,authentication_string from mysql.user;

+------------------+----------+------------------------------------------------------------------------+

| user | host | authentication_string |

+------------------+----------+------------------------------------------------------------------------+

| root | % | $A$005$7o{'|'AomAw(QvF#.p5wLtCnrG6yX6XQdDVQivGr96POVL.gKnhIAhUhl3. |

| mysql.infoschema | localhost | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE |

| mysql.session | localhost | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE |

| mysql.sys | localhost | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE |

| root | localhost | $A$005$0.-%i)H{uYi@zFo7uYF82fYw7DsA93vYLr4uZv6I1tSKao0sbzzcDap3 |

+------------------+----------+------------------------------------------------------------------------+

5 rows in set (0.00 sec)

9. Set permissions (assign permissions to root so that you can connect remotely)

mysql> grant all PRIVILEGES on *.* to root@'%' WITH GRANT OPTION;
Query OK, 0 rows affected (0.01 sec)

10. Since the Password algorithm has been modified in Mysql 5.6 and above, the password algorithm needs to be updated here to facilitate the use of Navicat connection

mysql> grant all PRIVILEGES on *.* to root@'%' WITH GRANT OPTION;
Query OK, 0 rows affected (0.01 sec)

mysql> ALTER user 'root'@'%' IDENTIFIED BY '123456' PASSWORD EXPIRE NEVER;
Query OK, 0 rows affected (0.11 sec)

mysql> ALTER user 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123456';
Query OK, 0 rows affected (0.11 sec)

mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.01 sec)

11. Use navicat to connect to mysql, as shown in the figure:



12. Create a database, table, and add data




View the contents of the mounted local data disk:


13. Test whether the data still exists after the container is removed

docker rm -f test_msyql 


The container has been removed. Redeploy test_mysql, refer to step 5, enter the new container, and access the database:

xushijiandeiMac:data xushijian$ docker run -itd -p 3307:3306 --name test_mysql -v /usr/local/mysqlData/test/conf:/etc/mysql -v /usr/local/mysqlData/test/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 mysql
65b7a60050aaef5765ed055acfd071c7c76f60e85dc25d0e73e0d56eae14aed1
xushijiandeiMac:data xushijian$ docker exec -it test_mysql bash
root@65b7a60050aa:/#mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.11 MySQL Community Server - GPL

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
| test |
+--------------------+
5 rows in set (0.01 sec)

mysql> use test;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select * from user_user;
+---------+-----------+-------------+--------+
| user_id | user_name | phone | note |
+---------+-----------+-------------+--------+
| 1 | Not straight | 13980000000 | Test |
+---------+-----------+-------------+--------+
1 row in set (0.06 sec)

It is found that the data can still be used without additional configuration, thus achieving data persistence.

Deploy MySQL in Docker on Alibaba Cloud (deployed via orchestration template)

<1. Configuration is similar to step 3 (only the directory changes)

master:
 image: 'mysql:latest'
 environment:
  -MYSQL_ROOT_PASSWORD=123456
 ports:
  - '3307:3306/tcp'
 volumes:
  - '/usr/local/mysqlData/master/conf:/etc/mysql:rw'
  - '/usr/local/mysqlData/master/data:/var/lib/mysql:rw'
 labels:
  aliyun.scale: '1'

<2. As shown below, the deployment has been completed

[root@c13a6d832fd0a49398c62002361d75c60-node1 ~]# clear
[root@c13a6d832fd0a49398c62002361d75c60-node1 ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES


8597b7539a3a mysql:latest "docker-entrypoint..." 3 minutes ago Up 3 minutes 0.0.0.0:3307->3306/tcp mysql_master_1


<3. Enter the container and set permissions. The subsequent process refers to the local machine

[root@c13a6d832fd0a49398c62002361d75c60-node1 /]# docker exec -it mysql_master_1 bash
root@2fc0bbf48941-mysql-master-1:/# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.11 MySQL Community Server - GPL

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

<4. Open port 3307 so that it can be accessed from the external network

Cloud Server ECS -> Security Group -> Select the region -> Configure rules -> Add security group


Add a security group, as shown in the figure:


5. External network access, as shown below


Connected successfully.

Master-slave environment construction:

Main library:

[root@c13a6d832fd0a49398c62002361d75c60-node1 ~]# docker exec -it mysql_master_1 bash
root@2fc0bbf48941-mysql-master-1:/# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.11 MySQL Community Server - GPL

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+
4 rows in set (0.30 sec)

mysql> create database test;
Query OK, 1 row affected (0.12 sec)

mysql> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
| test |
+--------------------+
5 rows in set (0.00 sec)

From the library:

[root@c13a6d832fd0a49398c62002361d75c60-node1 ~]# docker exec -it mysql-slave_slave_1 bash
root@c8661e16e3fd-mysql-slave-slave-1:/# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 8.0.11 MySQL Community Server - GPL

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+
4 rows in set (0.40 sec)

mysql> show slave status\G
*************************** 1. row ***************************
        Slave_IO_State: Waiting for master to send event Master-slave configuration successful!
         Master_Host: 47.94.225.124
         Master_User: rep
         Master_Port: 3307
        Connect_Retry: 60
       Master_Log_File: binlog.000003
     Read_Master_Log_Pos: 155
        Relay_Log_File: c8661e16e3fd-mysql-slave-slave-1-relay-bin.000004
        Relay_Log_Pos: 363
    Relay_Master_Log_File: binlog.000003
       Slave_IO_Running: Yes
      Slave_SQL_Running: Yes
       Replicate_Do_DB: 
     Replicate_Ignore_DB: 
      Replicate_Do_Table: 
    Replicate_Ignore_Table: 
   Replicate_Wild_Do_Table: 
 Replicate_Wild_Ignore_Table: 
          Last_Errno: 0
          Last_Error: 
         Skip_Counter: 0
     Exec_Master_Log_Pos: 155
       Relay_Log_Space: 762
       Until_Condition: None
        Until_Log_File: 
        Until_Log_Pos: 0
      Master_SSL_Allowed: No
      Master_SSL_CA_File: 
      Master_SSL_CA_Path: 
       Master_SSL_Cert: 
      Master_SSL_Cipher: 
        Master_SSL_Key: 
    Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
        Last_IO_Errno: 0
        Last_IO_Error: 
        Last_SQL_Errno: 0
        Last_SQL_Error: 
 Replicate_Ignore_Server_Ids: 
       Master_Server_Id: 1
         Master_UUID: a482f5fe-80fb-11e8-9fb1-0242ac12020c
       Master_Info_File: mysql.slave_master_info
          SQL_Delay: 0
     SQL_Remaining_Delay: NULL
   Slave_SQL_Running_State: Slave has read all relay logs; waiting for more updates
      Master_Retry_Count: 86400
         Master_Bind: 
   Last_IO_Error_Timestamp: 
   Last_SQL_Error_Timestamp: 
        Master_SSL_Crl: 
      Master_SSL_Crlpath: 
      Retrieved_Gtid_Set: 
      Executed_Gtid_Set: 
        Auto_Position: 0
     Replicate_Rewrite_DB: 
         Channel_Name: 
      Master_TLS_Version: 
    Master_public_key_path: 
    Get_master_public_key: 0
1 row in set (0.00 sec)

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+
4 rows in set (1.01 sec)

mysql> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
| test |
+--------------------+
5 rows in set (0.00 sec)

Analysis of the master-slave library principle:


The i/o thread requests the binlog of the master library and writes the obtained binlog to the relay log file; the master library generates a log dump thread to transfer the binlog to the i/o thread of the slave library;

The SQL thread reads the logs in the relay log file and parses them into specific operations to achieve consistency in the operations of the master and slave, and ultimately consistent data.

That is: slave IO thread request -> relay log -> get binlog -> slave SQL thread, parse

refer to:

https://docs.docker.com/ Docker official website documentation

https://blog.csdn.net/gf0515/article/details/80466213 Mac Navicat connects to Docker MySql8.0

Docker mysql master-slave replication

https://blog.csdn.net/qq_28804275/article/details/80891951 Master-slave environment construction

docker mysql Dockerfile mysql open source image Dockerfile and configuration

https://www.cnblogs.com/Aiapple/p/5792939.html Master-slave replication principle and high availability analysis

http://www.cnblogs.com/Aiapple/p/5793786.html Actual combat

This is the end of this article about the example of how to deploy MySQL 8.0 with Docker. For more information about deploying MySQL 8.0 with Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of docker-compose deployment project based on MySQL8
  • Detailed explanation of how to use Docker to deploy Django+MySQL8 development environment
  • How to install MySQL 8.0 in Docker
  • Upgrade Docker version of MySQL 5.7 to MySQL 8.0.13, data migration
  • How to install MySQL8 in Docker
  • Docker deployment MySQL8 cluster (one master and two slaves) implementation steps

<<:  The concept of MTR in MySQL

>>:  How to use vuex in Vue project

Recommend

Solution to the error reported by Mysql systemctl start mysqld

Error message: Job for mysqld.service failed beca...

Detailed explanation of .bash_profile file in Linux system

Table of contents 1. Environment variable $PATH: ...

Summary of CSS sibling element floating analysis

float:left/right/none; 1. Same level floating (1)...

Analysis of the methods of visual structure layout design for children's websites

1. Warm and gentle Related address: http://www.web...

HTML tags: sub tag and sup tag

Today I will introduce two HTML tags that I don’t...

How to deploy zabbix_agent in docker

zabbix_agent deployment: Recommendation: zabbix_a...

Vant Uploader implements the component of uploading one or more pictures

This article shares the Vant Uploader component f...

SQL function to merge a field together

Recently, I need to query all the fields in a rel...

Detailed explanation of Vue's monitoring method case

Monitoring method in Vue watch Notice Name: You s...

Implementation of react loop data (list)

First, let's simulate the data coming from th...

MySQL Server 8.0.3 Installation and Configuration Methods Graphic Tutorial

This document records the installation and config...

SQL implementation of LeetCode (183. Customers who have never placed an order)

[LeetCode] 183.Customers Who Never Order Suppose ...