码迷,mamicode.com
首页 > 数据库 > 详细

Docker中运行mysql

时间:2020-02-13 20:50:35      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:mmu   community   code   root   -name   iat   word   moni   state   

一.下载镜像

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

标签:mmu   community   code   root   -name   iat   word   moni   state   

原文地址:https://www.cnblogs.com/HTLucky/p/12304895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!