系列文章目录
提示:所有文章的目录
1.了解SQL的执行过程
前言
这篇文章主要是在Docker下搭建一个MySQL环节,为了后续的数据库学习做准备。
概述:MySQL官方BinLog文档
提示:以下是本篇文章正文内容
一、安装MySQL的步骤
步骤一:查询mysql在docker下的版本
docker search mysql
步骤二:拉取官方镜像
不带版本号,默认拉取最新的
docker pull mysql
步骤三:查看是否拉取成功了
docker images
步骤四:安装mysql
docker run -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7
参数含义:
–name:容器名,此处命名为mysql
-e:配置信息,此处配置mysql的root用户的登陆密码
-p:端口映射,此处映射 主机3306端口 到 容器的3306端口
-d:后台运行容器,保证在退出终端后容器继续运行
-v: 做目录映射,-v /usr/local/docker/mysql/conf:/etc/mysql \
步骤五:连接mysql
docker exec -it mysql bash
root@2b2ee975926a:/# mysql -uroot -p123456
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 16
Server version: 8.0.19 MySQL Community Server - GPL
Copyright (c) 2000, 2020, 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> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
步骤六:查看binlog 日志
- 了解什么是binlog?