翼度科技»论坛 云主机 服务器技术 查看内容

如何查看docker中mysql的版本问题

7

主题

7

帖子

21

积分

新手上路

Rank: 1

积分
21
如何查看docker中mysql的版本

如果是windos版本的mysql,用dos命令,省略第1步,直接进入第二步,一样的查版本。
首先进入docker中的mysql镜像
  1. docker exec -it mysql01 bash
  2. //mysql01改成自己的mysql名称或id
复制代码

进入mysql(登录)
  1. mysql -hlocalhost -uroot -p
复制代码

输入mysql密码

查看版本
  1. select version();
复制代码

可以看到是8.0.21版本的mysql

查看Docker容器中MySQL版本号
  1. # 以交互式终端模式进入 docker 中 mysql 容器的实例。
  2. [root@localhost ~]# docker exec -it mysql_geek /bin/bash

  3. # exec —> 运行容器。
  4. # -i 选项 —> 以交互式命令行模式运行。
  5. # -t 选项 —> 终端
  6. #                 指定 /bin/bash 就是指打开容器后,以 bash 终端命令行模式运行。

  7. root@c80d23a10c46:/# ls
  8. bin   docker-entrypoint-initdb.d  home         media        proc  sbin  tmp
  9. boot  entrypoint.sh                  lib         mnt        root  srv   usr
  10. dev   etc                                  lib64  opt        run   sys   var

  11. root@c80d23a10c46:/# mysql -uroot -proot
  12. mysql: [Warning] Using a password on the command line interface can be insecure.
  13. Welcome to the MySQL monitor.  Commands end with ; or \g.
  14. Your MySQL connection id is 51
  15. Server version: 8.0.19 MySQL Community Server - GPL

  16. Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

  17. Oracle is a registered trademark of Oracle Corporation and/or its
  18. affiliates. Other names may be trademarks of their respective
  19. owners.

  20. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

  21. mysql>
复制代码
总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

来源:https://www.jb51.net/server/319005tno.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
来自手机

举报 回复 使用道具