Docker中运行mysql

Posted 随梦远航,不惧风浪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker中运行mysql相关的知识,希望对你有一定的参考价值。

一.下载镜像

docker pull mysql:5.7

二.使用镜像创建容器

docker run --name HTMysql -p 8088:3306 -e MYSQL_ROOT_PASSWORD=root -d mysql:5.7
#--name 设置容器的名称
#-p        设置端口映射
#-e        设置环境变量
#-d        后台执行

三.查看容器

[root@oracle /]# docker ps 
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                               NAMES
ea97399ff943        mysql:5.7           "docker-entrypoint..."   37 minutes ago      Up 15 minutes       33060/tcp, 0.0.0.0:8088->3306/tcp   HTMysql

四.进入容器

docker exec -it HTMysql /bin/bash

五.连接mysql

[root@oracle ~]# mysql -h 192.168.254.133 -P 8088 -u root -proot
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 6
Server version: 5.7.29 MySQL Community Server (GPL)
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type help; or h for help. Type c to clear the current input statement.
mysql> 

 

以上是关于Docker中运行mysql的主要内容,如果未能解决你的问题,请参考以下文章

如何将 mysql 工作台连接到在 docker 中运行 mysql?

将 docker 容器中运行的 JavaScript 连接到另一个 docker 容器上运行的 MySQL 数据库

与测试方法分开在 docker 应用程序中运行 docker 映像

linux中怎么查看mysql数据库版本

使用 Docker 运行 MySQL 容器

docker上运行mysql服务