docker安裝mysql8.0.20並遠端連線

九月长安發表於2024-04-19

前言

今天docker安裝mysql8.0.20捯飭了半天,主要是掛載問題和連線問題,索性記錄一下。網上很多千篇一律,還有很多就是過時了,那還是我自己上場吧。大家看的時候,請睜大眼睛,按步驟來。

Docker安裝MySQL8.0.20

此處預設你已經搭建好了docker環境

第一步 拉映象

docker pull mysql:8.0.20

第二步 啟動

docker run -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:8.0.20

第三步 複製

將容器內mysql的資料配置複製到本機,後面那個路徑就是你想要對映的檔案地址
docker cp mysql:/etc/mysql /root/mysql8.0.20

建議授權一下資料夾 防止許可權問題異常, 進入到root目錄
chmod 777 mysql8.0.20

第四步 刪除舊容器

docker stop mysql && docker rm mysql

第五步 重新按以下命令啟動, 建議自己儲存下來

如果不熟悉,建議不要改動。對映埠以及容器名稱可自行更改
docker run \ -p 3306:3306 \ --name mysql8 \ --privileged=true \ --restart unless-stopped \ -v /root/mysql8.0.20/mysql:/etc/mysql \ -v /root/mysql8.0.20/logs:/logs \ -v /root/mysql8.0.20/data:/var/lib/mysql \ -v /root/mysql8.0.20/mysql/mysql-files:/var/lib/mysql-files \ -v /etc/localtime:/etc/localtime \ -e MYSQL_ROOT_PASSWORD=123456 \ -d mysql:8.0.20
如果缺少 -v /root/mysql8.0.20/mysql/mysql-files:/var/lib/mysql-files 這個會報異常
到這裡基本完成一半。

登入並遠端連線

進入容器並登入,你會發現登入不了

進入mysql8容器
docker exec -it mysql8 /bin/bash

登入
mysql -uroot -p ,輸入密碼 發現登入不了. 輸入 exit 先退出容器

修改配置檔案

進入 /root/mysql8.0.20 檔案, 編輯 my.cnf, 在[mysqld]增加一行 skip_grant_tables 此時mysql是無密碼狀態

重啟容器

docker restart mysql8

再次進入容器

參考上述登入,再次輸入 mysql -uroot -p 連按兩次回車可登入成功 顯示如下:

root@15006e4d70b3:/# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.20 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

檢視錶

mysql> show tables;
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| component |
| db |
| default_roles |
| engine_cost |
| func |
| general_log |
| global_grants |
| gtid_executed |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| innodb_index_stats |
| innodb_table_stats |
| password_history |
| plugin |
| procs_priv |
| proxies_priv |
| role_edges |
| server_cost |
| servers |
| slave_master_info |
| slave_relay_log_info |
| slave_worker_info |
| slow_log |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
33 rows in set (0.00 sec)

檢視使用者表

mysql> select host,user,plugin from user;
+-----------+------------------+-----------------------+
| host | user | plugin |
+-----------+------------------+-----------------------+
| localhost | mysql.infoschema | caching_sha2_password |
| localhost | mysql.session | caching_sha2_password |
| localhost | mysql.sys | caching_sha2_password |
| localhost | root | caching_sha2_password |
+-----------+------------------+-----------------------+
4 rows in set (0.01 sec)

因為 caching_sha2_password ,所以使用密碼登入是不行的,需要修改

修改plugin

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
Query OK, 0 rows affected (0.01 sec)

這個時候 root還是不能遠端登入,會報錯,提示找不到ip。此處的密碼,最好設定複雜一點,確保一次性透過.

修改遠端連線

mysql> update user set host='%' where user='root';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0

確認是否更改

mysql> select host,user,plugin from user;
+-----------+------------------+-----------------------+
| host | user | plugin |
+-----------+------------------+-----------------------+
| % | root | mysql_native_password |
| localhost | mysql.infoschema | caching_sha2_password |
| localhost | mysql.session | caching_sha2_password |
| localhost | mysql.sys | caching_sha2_password |
+-----------+------------------+-----------------------+

可以看到已經更改成功了,別高興太早,這時候還是連不上,需要重新整理以下許可權!

重新整理許可權

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

這樣就搞定了

使用navicat連線一下試試

連線成功!

善後

還記得之前增加的那個 skip_grant_tables 嗎,要把它註釋掉。然後重啟就算完結了。

如果還是連不上,確保你的伺服器埠是正常放行的,可以去雲伺服器安全組檢視一下。

相關文章