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

WeChat applet records user movement trajectory

Table of contents Add Configuration json configur...

How to use rem adaptation in Vue

1. Development environment vue 2. Computer system...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

Examples of correct use of interface and type methods in TypeScript

Table of contents Preface interface type Appendix...

Let's take a look at some powerful operators in JavaScript

Table of contents Preface 1. Null coalescing oper...

Web design tips on form input boxes

1. Dashed box when cancel button is pressed <br...

How to use CSS media query aspect-ratio less

CSS media query has a very convenient aspect rati...

DOCTYPE element detailed explanation complete version

1. Overview This article systematically explains ...

Example code of CSS responsive layout system

Responsive layout systems are already very common...

Detailed Analysis of Explain Execution Plan in MySQL

Preface How to write efficient SQL statements is ...

Start nginxssl configuration based on docker

Prerequisites A cloud server (centOS of Alibaba C...

Security configuration and detection of SSL after the website enables https

It is standard for websites to enable SSL nowaday...

Detailed explanation of the use of Element el-button button component

1. Background Buttons are very commonly used, and...

How to find and delete duplicate records in MySQL

Hello everyone, I am Tony, a teacher who only tal...