Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The solution to the problem of Docker installation Mysql and connection failure

2025-04-01 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces "the solution to the problem of Docker installation Mysql and connection failure". In the daily operation, I believe that many people have doubts about the solution to the problem of Docker installation Mysql and connection failure. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "Docker installation Mysql and connection failure". Next, please follow the editor to study!

1. Docker pull mysql / / pull the latest version of MySQL

2. Docker run-d-- name mysql01-p 3306 MYSQL_ROOT_PASSWORD=123456-- privileged mysql /-d background operation;-- name sets alias,-p 3306 (host port): 3306 (container port);-e sets environment variable; MYSQL_ROOT_PASSWORD=123456 sets root user password to 123456;-- privileged sets priority

Use the client to connect to the mysql, but cannot connect.

3. Docker exec-it 9c4bace22f99 / bin/bash / / 9c4bace22f99 docker installed mysql container ID4, mysql-u root-p123456 / / root is the root user; 123456 is the password

5. ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY' 123456password; / / update root user password

Connect again, connected successfully

At this point, the study on "the solution to the problem of Docker installation Mysql and connection failure" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report