Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

1. Download the accelerated version of msyql

docker pull hub.c.163.com/library/mysql:5.7

2. Name Change

docker tag hub.c.163.com/library/mysql:5.7 mysql:5.7

3. Start

 docker run -it --rm --name mysql -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 -d mysql

4. Set up mysql remote login

docker exec -it mysql bash 
mysql -uroot -p123456
ALTER user 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123456';

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Docker deploys mysql remote connection to solve 2003 problems
  • Implementation of docker-compose deployment project based on MySQL8
  • How to deploy MySQL and Redis services using Docker
  • Example of how to deploy MySQL 8.0 using Docker
  • Implementation of Docker deployment of MySQL cluster
  • Detailed explanation of how to use Docker to deploy Django+MySQL8 development environment
  • Implementation of Docker deployment of Django+Mysql+Redis+Gunicorn+Nginx
  • Detailed explanation of deploying MySQL using Docker (data persistence)
  • Docker deploys mysql to achieve remote connection sample code
  • How to deploy MySQL 5.7 & 8.0 master-slave cluster using Docker
  • Example of deploying MySQL on Docker

<<:  Detailed explanation of Java calling ffmpeg to convert video format to flv

>>:  Detailed explanation of the use of Refs in React's three major attributes

Recommend

How to modify the root user password in mysql 8.0.16 winx64 and Linux

Please handle basic operations such as connecting...

Explanation and example usage of 4 custom instructions in Vue

Four practical vue custom instructions 1. v-drag ...

Solution to the problem of web page flash animation not displaying

<br />The solution steps are as follows: Sta...

Implementation of Bootstrap web page layout grid

Table of contents 1. How the Bootstrap grid syste...

MySQL master-slave replication configuration process

Main library configuration 1. Configure mysql vim...

A brief analysis of controlled and uncontrolled components in React

Table of contents Uncontrolled components Control...

JS implements simple addition and subtraction of shopping cart effects

This article example shares the specific code of ...

Is your website suitable for IE8?

During the Olympic Games, IE 8 Beta 2 will be rele...

Practical way to build selenium grid distributed environment with docker

Recently, I needed to test the zoom video confere...

js development plug-in to achieve tab effect

This article example shares the specific code of ...

Zabbix configures DingTalk's alarm function with pictures

Implementation ideas: First of all, the alarm inf...

Ideas and codes for implementing waterfall flow layout in uniapp applet

1. Introduction Is it considered rehashing old st...

Beginners learn some HTML tags (3)

Related articles: Beginners learn some HTML tags ...