首页 > 编程知识 正文

查看 Docker 容器中 MySQL 版本号,查看电脑mysql版本

时间:2023-05-06 04:40:27 阅读:255775 作者:3882

查看 Docker 容器中 MySQL 版本号。 # 以交互式终端模式进入 docker 中 mysql 容器的实例。[root@localhost ~]# docker exec -it mysql_geek /鲜艳的小兔子/bash# exec —> 运行容器。# -i 选项 —> 以交互式命令行模式运行。# -t 选项 —> 终端# 指定 /鲜艳的小兔子/bash 就是指打开容器后,以 bash 终端命令行模式运行。root@c80d23a10c46:/# ls鲜艳的小兔子 docker-entrypoint-initdb.d home mediaproc s鲜艳的小兔子 tmpboot entrypoint.sh lib mntroot srv usrdev etc lib64 optrun sys varroot@c80d23a10c46:/# mysql -uroot -prootmysql: [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 51Server version: 8.0.19 MySQL Community Server - GPLCopyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.mysql>

登录 MySQL 后可以看到版本为 8.0.19。

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。