MySQL8.0修改密碼的正確姿勢分享
前言
mysql 更新完密碼,總是拒絕連接、登錄失敗?MySQL8.0 不能通過直接修改 mysql.user 表來更改密碼。正確更改密碼的方式備注: 清空root密碼
MySQL8.0 不能通過直接修改 mysql.user 表來更改密碼。
因為authentication_string字段下只能是MySQL加密后的43位字符串密碼,其他的導(dǎo)致錯誤。錯誤不報出,但是無法再登錄mysql,總是會提示 無法認證。
參考:MySQL8.0
mysql> USE mysql; Database changed mysql> UPDATE user SET authentication_string="123456" WHERE user="root"; Query OK, 1 row affected (0.39 sec) Rows matched: 1 ?Changed: 1 ?Warnings: 0 mysql> FLUSH privileges; ?# 刷新保存 Query OK, 0 rows affected (0.13 sec)
mysql 5.7.9 之后取消了password 函數(shù),authentication_string=password("123456") 會報錯
C:\WINDOWS\system32>mysql -u root -p
Enter password: ******
ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES)
1234567891011121314
如果 你已經(jīng)這樣更改密碼,并且導(dǎo)致了無法進入mysql。本人表示同情之時,還為了你提供了詳細的解決方案。請查看本文備注:清空root 密碼
正確更改密碼的方式
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY "your_password"; mysql> USE mysql; Database changed mysql> ALTER USER 'root'@'localhost' IDENTIFIEED WITH mysql_native_password BY "markjun"; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IDENTIFIEED WITH mysql_native_password BY "markjun"' at line 1 mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY "markjun"; Query OK, 0 rows affected (0.18 sec) mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY "123456"; Query OK, 0 rows affected (0.08 sec) mysql> SELECT user, authentication_string FROM user; +------------------+------------------------------------------------------------------------+ | user | authentication_string | +------------------+------------------------------------------------------------------------+ | mysql.infoschema | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | mysql.session | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | mysql.sys | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 | +------------------+------------------------------------------------------------------------+ 4 rows in set (0.00 sec) mysql> FLUSH privileges; Query OK, 0 rows affected (0.38 sec) mysql> quit; Bye F:\MySQL\mysql-8.0.13-winx64\bin>mysql -u root -p Enter password: ******* ... mysql>
- 備注: 清空root密碼
停止 MySQL 任務(wù) net stop MySQL
mysqld 命令 mysqld --console --skip-grant-tables --shared-memory
無密碼進入mysql mysql -u root
清空root 密碼 UPDATE user SET authentication_string="" WHERE user=“root”;
另一個終端無密碼進入
F:\MySQL\mysql-8.0.13-winx64\bin>mysql -u root -p Enter password: ******* ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) F:\MySQL\mysql-8.0.13-winx64\bin>mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 ... Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> USE mysql; Database changed mysql> SELECT user, authentication_string FROM user; +------------------+------------------------------------------------------------------------+ | user | authentication_string | +------------------+------------------------------------------------------------------------+ | mysql.infoschema | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | mysql.session | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | mysql.sys | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | root | 123456 | +------------------+------------------------------------------------------------------------+ 4 rows in set (0.34 sec) mysql> UPDATE user SET authentication_string="" WHERE user="root"; Query OK, 1 row affected (0.20 sec) Rows matched: 1 Changed: 1 Warnings: 0 mysql> SELECT user, authentication_string FROM user; +------------------+------------------------------------------------------------------------+ | user | authentication_string | +------------------+------------------------------------------------------------------------+ | mysql.infoschema | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | mysql.session | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | mysql.sys | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | | root | | +------------------+------------------------------------------------------------------------+ 4 rows in set (0.00 sec) mysql> FLUSH privileges; Query OK, 0 rows affected (0.10 sec) mysql> quit; Bye
停止 mysqld 任務(wù),Ctrl+C 結(jié)束任務(wù),或者直接關(guān)閉 運行 mysqld 的 cmd 終端。
需要先停止運行上述 mysqld 任務(wù),否則報錯
F:\MySQL\mysql-8.0.13-winx64\bin>net start mysql
MySQL 服務(wù)正在啟動 .
MySQL 服務(wù)無法啟動。服務(wù)沒有報告任何錯誤。
請鍵入 NET HELPMSG 3534 以獲得更多的幫助。
先停止上述 mysqld 任務(wù)
F:\MySQL\mysql-8.0.13-winx64\bin>net start mysql
MySQL 服務(wù)正在啟動 ...
MySQL 服務(wù)已經(jīng)啟動成功。
現(xiàn)在 mysql root 已經(jīng)沒有了密碼
F:\MySQL\mysql-8.0.13-winx64\bin>mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g....
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
總結(jié)
到此這篇關(guān)于MySQL8.0修改密碼的正確姿勢的文章就介紹到這了,更多相關(guān)MySQL8.0修改密碼姿勢內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Mysql服務(wù)添加 iptables防火墻策略的方案
這篇文章主要介紹了給Mysql服務(wù)添加 iptables防火墻策略的方案,本文給大家分享兩種解決方案,需要的朋友可以參考下2021-04-04
M1芯片安裝mysql8.0數(shù)據(jù)庫的實現(xiàn)步驟(圖文)
這篇文章主要介紹了M1芯片安裝mysql8.0數(shù)據(jù)庫的實現(xiàn)實現(xiàn)步驟,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-02-02
MySQL?驅(qū)動中虛引用?GC?耗時優(yōu)化與源碼分析
這篇文章主要為大家介紹了MySQL?驅(qū)動中虛引用?GC?耗時優(yōu)化與源碼分析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-05-05
MySQL降權(quán)運行之MySQL以Guests帳戶啟動設(shè)置方法
我們在windows服務(wù)器中使用mysql數(shù)據(jù)的時候,mysql默認都是以system權(quán)限運行,如果出現(xiàn)了安全問題,黑客就可以通過mysql提權(quán)新建用戶什么的,所以mysql低權(quán)限運行非常必要2014-07-07

