Detailed explanation of using Docker to build externally accessible MySQL

Detailed explanation of using Docker to build externally accessible MySQL

Install MySQL 8.0

docker run -p 63306:3306 -e MYSQL_ROOT_PASSWORD=zhaooleemysql --name zhaooleemysqldb -d mysql:8.0
  • p 53306:3306 maps port 3306 of the docker container to port 63306 of the host machine
  • -e MYSQL_ROOT_PASSWORD=zhaooleemysql The root user login password is zhaooleemysql
  • --name zhaooleemysqldb The name of the new container is zhaooleemysqldb
  • mysql:8.0 The mysql database version used is 8.0

Entering the container

docker exec -it zhaooleemysqldb bash 

Login to database

mysql -uroot -p
zhaooleemysql

Create a new user (8.0 is more strict, it is troublesome to log in remotely with the root user, we choose to create a new user)

create user 'zhaoolee' identified with mysql_native_password by 'eelooahzpw';

zhaoolee new user name is zhaoolee. The mysql_native_password encryption method is mysql_native_password eelooahzpw new user's password is eelooahzpw

Add permissions for the new user zhaoolee

grant all privileges on *.* to 'zhaoolee';

Refresh permissions

flush privileges; 

Create a new database

create database v2fy charset=utf8;

The name of the new database is v2fy

Exit Database

exit

Exit Docker container

control + p + q

Try connecting with Navicat

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of building a Mysql container + Tomcat container connection environment through Docker
  • Example of how to build a Mysql cluster with docker
  • The whole process of Docker building MySQL and mounting data

<<:  Detailed explanation of daily_routine example code in Linux

>>:  MySQL5.7.21 decompressed version installation detailed tutorial diagram

Recommend

Install OpenSSL on Windows and use OpenSSL to generate public and private keys

1. OpenSSL official website Official download add...

The whole process of realizing website internationalization using Vite2 and Vue3

Table of contents Preface Install vue-i18n Config...

Detailed explanation of FTP environment configuration solution (vsftpd)

1. Install vsftpd component Installation command:...

Use javascript to create dynamic QQ registration page

Table of contents 1. Introduction 1. Basic layout...

Detailed explanation of eight methods to achieve CSS page bottom fixed

When we are writing a page, we often encounter a ...

Detailed explanation of browser negotiation cache process based on nginx

This article mainly introduces the detailed proce...

Key features of InnoDB - insert cache, write twice, adaptive hash index details

The key features of the InnoDB storage engine inc...

Use mysql to record the http GET request data returned from the url

Business scenario requirements and implementation...

Font Treasure House 50 exquisite free English font resources Part 2

Designers have their own font library, which allo...

MySQL InnoDB monitoring (system layer, database layer)

MySQL InnoDB monitoring (system layer, database l...

How to use domestic image warehouse for Docker

1. Problem description Due to some reasons, the d...

Building .NET Core 2.0 + Nginx + Supervisor environment under Centos7 system

1. Introduction to Linux .NET Core Microsoft has ...

MySQL data type selection principles

Table of contents Small but beautiful Keep it sim...