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

Detailed installation and configuration tutorial of PostgreSQL 11 under CentOS7

1. Official website address The official website ...

Vue implements file upload and download

This article example shares the specific code of ...

Using vue3 to imitate the side message prompt effect of Apple system

Table of contents Animation Preview Other UI Libr...

The concrete implementation of JavaScript exclusive thinking

In the previous blog, Xiao Xiong updated the meth...

VUE+Express+MongoDB front-end and back-end separation to realize a note wall

I plan to realize a series of sticky note walls. ...

Solution to nginx-ingress-controller log persistence solution

Recently I saw an article on a public account tha...

11 Examples of Advanced Usage of Input Elements in Web Forms

1. Cancel the dotted box when the button is press...

js to implement web calculator

How to make a simple web calculator using HTML, C...

Vue implements anchor positioning function

This article example shares the specific code of ...

Example of how to set up a third-level domain name in nginx

Problem Description By configuring nginx, you can...

Explanation of the basic syntax of Mysql database stored procedures

drop procedure sp_name// Before this, I have told...