1. 程式人生 > 資料庫 >Centos7 Docker離線部署Mysql5.7

Centos7 Docker離線部署Mysql5.7

1 環境資訊

檢視系統核心

[root@localhost /]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)

2 虛擬機器拉取映象

此處資源獲取在虛擬機器中進行,完成後上傳到伺服器安裝

2.1 拉取mysql5.7映象

[root@localhost /]# docker pull mysql:5.7

2.2 匯出映象

[root@localhost /]# docker save -o /opt/module/software/jingxiang/mysql57.tar mysql:5.7

3 伺服器載入映象

將提供的docker資料夾上傳到伺服器的 /opt/module/software/jingxiang 目錄下

3.1 匯入Mysql映象

[root@localhost /]# docker load -i /opt/module/software/jingxiang/mysql57.tar
99b5261d397c: Loading layer [==================================================>] 58.51 MB/58.51 MB
5a8a245abd1c: Loading layer [==================================================>] 338.4 kB/338.4 kB
51734435c93c: Loading layer [==================================================>] 10.44 MB/10.44 MB
6599033b2ab2: Loading layer [==================================================>] 4.472 MB/4.472 MB
414373ffccb4: Loading layer [==================================================>] 1.536 kB/1.536 kB
2a9aab74013a: Loading layer [==================================================>] 46.15 MB/46.15 MB
7055b7f82e4c: Loading layer [==================================================>]  34.3 kB/34.3 kB
398ef8a407f7: Loading layer [==================================================>] 3.584 kB/3.584 kB
fc12e028de3b: Loading layer [==================================================>] 321.7 MB/321.7 MB
934de0c0816e: Loading layer [==================================================>] 15.87 kB/15.87 kB
94a471180601: Loading layer [==================================================>] 1.536 kB/1.536 kB
Loaded image: mysql:5.7
[root@localhost docker]# docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
mysql               5.7                 1e4405fe1ea9        2 weeks ago         437 MB

3.2 建立容器

[root@localhost /]#  docker run -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7
1fcf644fb24c4731f70ca66edc96847452e898de7612de05b4dd188b3965883c
run                 執行一個docker容器
--name              後面這個是生成的容器的名字mysql
-p 3306:3306        表示這個容器中使用3306(第二個)對映到本機的埠號也為3306(第一個) 
-e MYSQL_ROOT_PASSWORD=123456  初始化root使用者的密碼
-d                   表示使用守護程序執行,即服務掛在後臺
[root@localhost docker]# docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                               NAMES
1fcf644fb24c        mysql:5.7           "docker-entrypoint..."   25 seconds ago      Up 23 seconds       0.0.0.0:3306->3306/tcp, 33060/tcp   mysql

3.3 允許外部訪問

# 進入容器
[root@localhost docker]# docker exec -it mysql /bin/bash
root@1fcf644fb24c:/# 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 2
Server version: 5.7.28 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, 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> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "123456";
mysql> flush privileges;

mysql> exit;
Bye
root@1fcf644fb24c:/# exit;
exit

3.4 啟動服務

[root@localhost docker]# docker start mysql 

3.5 停止服務

[root@localhost docker]# docker stop mysql 

3.6 服務資訊

服務     mysql
版本     5.7
使用者名稱    root
密碼     123456