zoukankan      html  css  js  c++  java
  • docker下MySQL镜像的使用方法

    预习:

    使用到的docker命令:

    docker images   显示本地有的镜像

    docker pull +镜像名称   从docker hub上面拉取镜像

    docker run
       --name  定义容器的名称

       -d  让docker容器在后台运行到

       -a 查看已经创建的容器

       -s  查看启动的容器

    docker start docker_name   启动名称为docker_name的容器

    docker stop docker_name   关闭名称为docker_name的容器

    docker rm docker_name     删除名称为docker_name的容器

    docker rmi docker_name   删除名称为docker_name的镜像

    docker rename old_name new_name 给容器重命名

    操作:

    [root@localhost ~]# docker pull mysql   拉取镜像

    [root@localhost ~]# docker images|grep mysql   查看镜像
    docker.io/mysql     latest              6a834f03bd02        2 weeks ago         484 MB
    [root@localhost ~]# docker run -e MYSQL_ROOT_PASSWORD=123456 --name mysql -it mysql      启动一个容器

    [root@localhost ~]# docker ps -s      查看正在运行的容器
    CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                 NAMES               SIZE
    dc1c39266b16        mysql               "docker-entrypoint..."   3 days ago          Up 2 hours          3306/tcp, 33060/tcp   mysql               119 B (virtual 484 MB)
    连接MySQL数据库

    [root@localhost ~]# docker exec -it dc1c39266b16 bash
    root@dc1c39266b16:/# mysql -uroot -p         
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 9
    Server version: 8.0.12 MySQL Community Server - GPL
    Copyright (c) 2000, 2018, 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>
    已经连接上数据库了。

  • 相关阅读:
    wait 和 notify 方法
    synchronized关键字
    多线程之thread、runnable的区别
    CodeForces 213 E
    hdu 3038 并查集
    zoj 3349 dp + 线段树优化
    hdu 4419 线段树 扫描线 离散化 矩形面积
    hdu 4262(线段树)
    hfut 1287
    hdu 4747 (线段树)
  • 原文地址:https://www.cnblogs.com/winter1519/p/9696808.html
Copyright © 2011-2022 走看看