用docker创建mysql容器

  一个container 是基于一个镜像文件来启动的,下载好镜像,然后创建好container,启动,然后进入container

[root@VM-0-4-centos ~]# docker pull mysql:8     //下载mysql8版本
8: Pulling from library/mysql
Digest: sha256:92d27b8222bbcf53bc42c70ca7cd1010d6c0527efc61f14980ce77c50932bef4
Status: Downloaded newer image for mysql:8
docker.io/library/mysql:8
[root@VM-0-4-centos ~]# docker image ls      //显示系统中已经有的镜像文件
REPOSITORY   TAG       IMAGE ID       CREATED      SIZE
mysql        8         d1dc36cf8d9e   2 days ago   519MB
mysql        latest    d1dc36cf8d9e   2 days ago   519MB
[root@VM-0-4-centos ~]# docker create -p 3307:3306 --name mydiarydatabase -e MYSQL_ROOT_PASSWORD=root mysql:8
//3307是宿主机的端口3306是container的 container名称为mydiarydatabase root账号的密码为root  用mysql:8这个镜像创建container

43a89af48886895f821f106aaae4426dab55d8528092a66b63ce00d90d4f62c2
[root@VM-0-4-centos ~]# docker container ls -a      //显示全量的container
CONTAINER ID   IMAGE          COMMAND                  CREATED             STATUS             PORTS                                                  NAMES
43a89af48886   mysql:8        "docker-entrypoint.s…"   13 seconds ago      Created                                                                   mydiarydatabase
99a9ce1105e8   mysql:latest   "docker-entrypoint.s…"   About an hour ago   Up About an hour   0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp   mysqld1
e7353b445a53   mysql:latest   "docker-entrypoint.s…"   About an hour ago   Created                                                                   mysqld2
[root@VM-0-4-centos ~]# docker start mydiarydatabase      //启动container
mydiarydatabase
[root@VM-0-4-centos ~]# docker exec -it mydiarydatabase bash        //进入container
root@43a89af48886:/# mysql -uroot -p 
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.28 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值