docker+mysql創(chuàng)建用戶名密碼_docker里面的mysql 更換密碼

進(jìn)入mysql容器

操作vi etc/mysql/my.cnf

默認(rèn)是不安裝vi編輯器的,下面安裝vi

更新安裝包

apt-get update

安裝vim

執(zhí)行這條語(yǔ)句

apt-get install vim

到修改docker容器里面的mysql數(shù)據(jù)庫(kù)密碼了

啟動(dòng)mysql容器

docker exec -it mysql /bin/bash

編輯配置文件

我這里是沒(méi)有這個(gè)配置文件,直接編輯即可,有的忽略

vi /etc/mysql/conf.d/docker.cnf

加上這4段

[mysqld]

skip-host-cache

skip-name-resolve

skip-grant-tables 跳過(guò)權(quán)限認(rèn)證

保存退出

root@25cf6844e4d5:/# exit

exit

重啟mysql容器

我命名的mysql容器名是mysql01,按照自己的名字重啟

[root@rzk ~]# docker restart mysql01

mysql01

進(jìn)入mysql容器,連接mysql

docker exec -it mysql /bin/bash

[root@rzk ~]# docker exec -it mysql01 /bin/bash

root@25cf6844e4d5:/# mysql -u root -p

Enter password:

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 275

Server version: 5.7.31 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>

修改密碼

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> update user set authentication_string=password('密碼') where user='root';

Query OK, 0 rows affected, 1 warning (0.00 sec)

Rows matched: 2 Changed: 0 Warnings: 1

刪除權(quán)限認(rèn)證這行

skip-grant-tables 跳過(guò)權(quán)限認(rèn)證 這一段需要?jiǎng)h除,不然后續(xù)登錄還是會(huì)免密碼

[mysqld]

skip-host-cache

skip-name-resolve

skip-grant-tables 跳過(guò)權(quán)限認(rèn)證

刷新權(quán)限

mysql> flush privileges;

Query OK, 0 rows affected (0.07 sec)

測(cè)試連接數(shù)據(jù)庫(kù)

密碼就修改成功了

原始地址

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容