当前位置:网站首页>docker安装mysql5.7(仅供测试使用)
docker安装mysql5.7(仅供测试使用)
2022-08-11 05:36:00 【MssGuo】
前言
环境:Centos7.9 mysql5.7 Docker version 20.10.9
mysql数据库建议使用物理机安装,这里使用docker安装mysql仅供测试使用或其他不重要场景使用。
docker 安装mysql5.7
#创建mysql的文件存放目录
[[email protected] ~]# mkdir -p /usr/local/mysql/conf
[[email protected] ~]# mkdir -p /usr/local/mysql/logs
[[email protected] ~]# mkdir -p /usr/local/mysql/mysql
[[email protected] ~]# cd /usr/local/mysql/conf
[[email protected] conf]# vim my.cnf #创建mysql配置文件
[client]
default-character-set = utf8mb4
[mysql]
default-character-set = utf8mb4
[mysqld]
character-set-client-handshake = FALSE
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
init_connect='SET NAMES utf8mb4'
default-time_zone = '+8:00' #默认时区配置
sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION #设置数据库支持分组
lower_case_table_names=1
#启动mysql5.7容器,并使用-v参数持久化存储mysql的数据
[[email protected] ~]# docker run --restart always -p 3306:3306 --name mysql5.7 -v /usr/local/mysql/conf/:/etc/mysql/ -v /usr/local/mysql/logs:/var/log/mysql -v /usr/local/mysql/mysql:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7
#查看mysql5.7容器,已经启动了
[[email protected] mysql]# docker ps | grep mysql5.7
1019a1f67f2d mysql:5.7 "docker-entrypoint.s…" 30 minutes ago Up 30 minutes 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp mysql5.7
[[email protected] mysql]#
#进入容器查看mysql容器是否可用
[[email protected] ~]# docker exec -it mysql5.7 bash #进入容器
[email protected]:/# mysql -uroot -p123456 #登录mysql
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 2
Server version: 5.7.36 MySQL Community Server (GPL)
Copyright (c) 2000, 2021, 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; #执行命令,一切正常,说明MySQL可用
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.01 sec)
mysql>
备注:因为我们在启动mysql5.7容器的时候做了主机端口映射,所以外部应用程序直接链接主机ip:3306即可使用容器的mysql数据库。
边栏推荐
- 《Show, Attend and Tell: Neural Image Caption Generation with Visual Attention》论文阅读(详细)
- 八股文之并发编程
- 华为防火墙-3-应用过滤
- HCIP-Spanning Tree (802.1D, Standard Spanning Tree/802.1W: RSTP Rapid Spanning Tree/802.1S: MST Multiple Spanning Tree)
- 矩阵分析——矩阵分解
- 图的拉普拉斯矩阵
- 《Generative Adversarial Networks》
- 淘宝API常用接口与获取方式
- HCIP experiments (pap, chap, HDLC, MGRE, RIP)
- HCIP WPN实验
猜你喜欢
随机推荐
Daily sql: request for friend application pass rate
【预约观看】Ambire 智能钱包 AMA 活动第四期即将举行
矩阵分析——微分、积分、极限
HCIA实验
每日sql -查询至少有5名下属的经理和选举
Conference OA Project My Conference
强烈推荐一款好用的API接口
会议OA项目之我的会议
HCIA知识复习
拼多多API接口(附上我的可用API)
Attitude solution - gyroscope + Euler method
OA Project Pending Meeting & History Meeting & All Meetings
HCIP 重发布/路由策略实验
拼多多api接口应用示例
华为防火墙-7-dhcp
HCIP Republish/Routing Policy Experiment
概念名词解释
My approval of OA project (inquiry & meeting signature)
OA项目之我的会议(会议排座&送审)
How Xshell connects to a virtual machine