溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MySQL怎么修改用戶密碼和重置root密碼

發(fā)布時(shí)間:2021-08-06 11:52:28 來(lái)源:億速云 閱讀:231 作者:chen 欄目:MySQL數(shù)據(jù)庫(kù)

本篇內(nèi)容介紹了“MySQL怎么修改用戶密碼和重置root密碼”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

    為數(shù)據(jù)庫(kù)用戶修改密碼是DBA比較常見(jiàn)的工作之一。對(duì)于MySQL用戶賬戶的密碼修改,有幾種不同的方式,推薦的方式使用加密函數(shù)來(lái)修改密碼。本文主要描述了通過(guò)幾種不同的方式來(lái)修改用戶密碼以及mysql root賬戶密碼丟失(重置root密碼)的處理方法。

1、密碼修改的幾種方法

a、可以在創(chuàng)建用戶的時(shí)候指定密碼,以及直接使用grant創(chuàng)建用戶的時(shí)候指定密碼。
  對(duì)于已經(jīng)存在的用戶直接使用grant方式也可以修改密碼
如下:

--演示版本
root@localhost[(none)]> show variables like 'version%'; 
+-------------------------+------------------------------+ 
| Variable_name           | Value                        | 
+-------------------------+------------------------------+ 
| version                 | 5.5.37                       | 
| version_comment         | MySQL Community Server (GPL) | 
| version_compile_machine | x86_64                       | 
| version_compile_os      | Linux                        | 
+-------------------------+------------------------------+ 

--下面我們使用grant方式創(chuàng)建一個(gè)新帳戶fred,并設(shè)定密碼
root@localhost[(none)]> grant usage on *.* to 'fred'@'localhost' identified by 'fred';
Query OK, 0 rows affected (0.00 sec)

--查看剛剛創(chuàng)建的賬戶
root@localhost[(none)]> select host,user,password from mysql.user where user='fred';
+-----------+------+-------------------------------------------+
| host      | user | password                                  |
+-----------+------+-------------------------------------------+
| localhost | fred | *6C69D17939B2C1D04E17A96F9B29B284832979B7 |
+-----------+------+-------------------------------------------+

--下面可以成功登陸mysql
SZDB:~ # mysql -ufred -pfred

fred@localhost[(none)]>

b、使用set password方式來(lái)修改賬戶密碼
--下面我們使用set password方式來(lái)設(shè)定密碼
root@localhost[(none)]> set password for 'fred'@'localhost'=password('passwd');
Query OK, 0 rows affected (0.00 sec)

root@localhost[(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

--再次登陸時(shí),之前的密碼已經(jīng)失效,無(wú)法登陸
SZDB:~ # mysql -ufred -pfred
ERROR 1045 (28000): Access denied for user 'fred'@'localhost' (using password: YES)

--下面使用新密碼登陸成功
SZDB:~ # mysql -ufred -ppasswd

fred@localhost[(none)]>

--檢索數(shù)據(jù)庫(kù)是否存在linuxidc用戶,如下密碼為null
root@localhost[(none)]> select host,user,password from mysql.user where user='linuxidc';
+-----------+------+----------+
| host      | user | password |
+-----------+------+----------+
| localhost | linuxidc |      |
+-----------+------+----------+

c、加密方式更新系統(tǒng)表user的password列
--我們嘗試直接更新密碼列(不使用加密函數(shù)方式)
root@localhost[(none)]> update mysql.user set password='linuxidc' where user='linuxidc';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

--由于直接使用明文,因此系統(tǒng)表user列password顯示為明文
root@localhost[(none)]> select host,user,password from mysql.user where user='linuxidc';
+-----------+------+----------+
| host      | user | password |
+-----------+------+----------+
| localhost | linuxidc | jack |
+-----------+------+----------+

root@localhost[(none)]> flush privileges;
Query OK, 0 rows affected (0.02 sec)

--此時(shí)無(wú)法登陸
SZDB:~ # mysql -ulinuxidc -pjack -h localhost     
ERROR 1045 (28000): Access denied for user 'linuxidc'@'localhost' (using password: YES)

--下面我們通過(guò)set方式來(lái)修改linuxidc的密碼,提示找不到linuxidc用戶
root@localhost[(none)]> set password for 'linuxidc'@'localhost'=password('linuxidc');
ERROR 1133 (42000): Can't find any matching row in the user table

--我們切換到mysql數(shù)據(jù)庫(kù)下嘗試,
root@localhost[(none)]> use mysql 

root@localhost[mysql]> set password for 'linuxidc'@'localhost'=password('passwd');  --在mysql數(shù)據(jù)庫(kù)下依舊無(wú)法更新用戶linuxidc的密碼
ERROR 1133 (42000): Can't find any matching row in the user table

--下面我們嘗試用password函數(shù)方式來(lái)更新password列
root@localhost[mysql]> update user set password=password('passwd') where user='linuxidc'; --此方式更新成功
Query OK, 1 row affected (0.04 sec)
Rows matched: 1  Changed: 1  Warnings: 0

root@localhost[mysql]> select host,user,password from user where user='linuxidc';    --可以看到密碼已經(jīng)變成了密文
+-----------+------+-------------------------------------------+
| host      | user | password                                  |
+-----------+------+-------------------------------------------+
| localhost |linuxidc|*59C70DA2F3E3A5BDF46B68F5C8B8F25762BCCEF0|
+-----------+------+-------------------------------------------+

root@localhost[mysql]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

--此時(shí)登陸成功
robin@SZDB:~> mysql -ulinuxidc -ppasswd         

linuxidc@localhost[(none)]>

2、重置root帳戶密碼

--假定此時(shí)我們的root帳戶忘記或遺失了密碼,如下面的演示,我們給出的是xxx,不能登陸到mysql(真實(shí)的密碼為mysql)
SZDB:~ # mysql -uroot -pmysql

root@localhost[(none)]>

SZDB:~ # mysql -uroot -pxxx      #忘記密碼,此時(shí)無(wú)法正常登錄 
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

--首先停止mysql服務(wù)器
SZDB:~ # service mysql stop
Shutting down MySQL..                              done

--使用--skip-grant-tables選項(xiàng)跳過(guò)授權(quán)表驗(yàn)證,
SZDB:~ # mysqld --help --verbose    #獲取mysqld幫助信息

--skip-grant-tables Start without grant tables. This gives all users FULL ACCESS to all tables.

--使用--skip-grant-tables啟動(dòng)mysql服務(wù)器
SZDB:~ # mysqld --skip-grant-tables --user=mysql &
[1] 10209
SZDB:~ # ps -ef | grep mysql
mysql    10209 14240  4 13:52 pts/0    00:00:00 mysqld --skip-grant-tables --user=mysql
root    10229 14240  0 13:53 pts/0    00:00:00 grep mysql
SZDB:~ # mysql 

root@localhost[(none)]> select user,host,password from mysql.user where user='root';
+-------+-----------+-------------------------------------------+
| user  | host      | password                                  |
+-------+-----------+-------------------------------------------+
| root  | %        | *E74858DB86EBA20BC33D0AECAE8A8108C56B17FA  |
| root  | 127.0.0.1 | *E74858DB86EBA20BC33D0AECAE8A8108C56B17FA |
+-------+-----------+-------------------------------------------+

--更新mysql賬戶密碼為NULL或設(shè)定為新密碼,注設(shè)定為空密碼時(shí)可以直接設(shè)置,無(wú)須使用加密函數(shù),2者等同
root@localhost[(none)]> update mysql.user set password='' where user='root';
Query OK, 2 rows affected (0.00 sec)
Rows matched: 2  Changed: 2  Warnings: 0

root@localhost[(none)]> select user,host,password from mysql.user where user='root';
+------+-----------+----------+
| user | host      | password |
+------+-----------+----------+
| root | %         |          |
| root | 127.0.0.1 |          |
+------+-----------+----------+

root@localhost[(none)]> exit
Bye

#再次停止mysql數(shù)據(jù)庫(kù)服務(wù)器
SZDB:~ # service mysql stop
Shutting down MySQL.                                                  done
[1]+  Done                    mysqld --skip-grant-tables --user=mysql
SZDB:~ # service mysql start
Starting MySQL..                                                      done
SZDB:~ # mysql            #重啟后再次登陸,不再需要任何密碼

root@localhost[(none)]> 

3、小結(jié)

a、可以使用set password for 'user_name'@'host_name' password=password('new_pwd')方式來(lái)修改密碼

b、可以使用update系統(tǒng)表方式,update user set password=password('passwd') where user='user_name'

注:對(duì)于user表password類,如果不用password函數(shù)的話,導(dǎo)致更新后無(wú)法登陸。但如果將賬戶更新為空密碼,可以使用加密函數(shù),也可以不使用,2者等同。

c、也可以在用戶創(chuàng)建后直接使用grant方式來(lái)更新用戶密碼。

d、對(duì)應(yīng)root密碼丟失或需要重置root密碼的情形,需要使用系統(tǒng)選項(xiàng)--skip-grant-tables啟動(dòng)服務(wù)器后進(jìn)行重置。

“MySQL怎么修改用戶密碼和重置root密碼”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI