MySQL資料庫密碼篇

2021-07-24 13:40:05 字數 1365 閱讀 5070

mysql資料庫忘記密碼了怎麼辦?重灌mysql?no,那樣有點小複雜(如果你想拿我寫的mysql重灌篇練練手還是可以的,學習就得多折騰,哈哈……),最重要的是那樣你之前的資料就都沒有了哦。今天我為大家帶來乙個簡便的方法來重設密碼。以下是我在mysql5.1版本下的測試,按照這個步驟走一遍就ok啦。

1.開啟資料庫安轉目錄下的配置檔案(*.ini檔案) 在

[mysqld]

skip-grant-tables          #

跳過許可權驗證

2.重啟mysql服務

3.直接mysql登入(前提是已經配置了path路徑,否則要進入bin目錄才行)

例如:c:\windows\system32>mysql

回車後顯示如下:

welcome to themysql monitor.  commands end with ; or\g.

your mysqlconnection id is 1

serverversion: 5.5.43 mysql community server (gpl)

oracle is aregistered 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>

4.修改密碼

mysql> usemysql ;           #

開啟mysql

資料庫databasechanged

mysql>update user set password = password ( 『new-password』 ) where user = 『root』 ;           #

修改使用者資料表

query ok, 0rows affected (0.00 sec)

rows matched:2 changed: 0 warnings: 0

mysql> flush privileges ;         #

重新整理許可權

query ok, 0rows affected (0.01 sec)

mysql> quit         #

退出bye

5.將配置檔案改回

#不要忘了哦

6.重啟

mysql服務

到此,密碼設定完畢!!!寫的還算湊合,希望對小夥伴們有幫助哦。

linux篇 修改mysql資料庫密碼

總是忘記,每次都要查文件,背背背 方法1 用set password命令 首先登入mysql。格式 mysql set password for 使用者名稱 localhost password 新密碼 例子 mysql set password for root localhost passwor...

資料庫 MySQL 篇

1,建立乙個特殊的帳號,mysql後台程式將在該帳號下執行 root linux root groupadd mysql root linux root useradd g mysql s bin false mysql 2,解壓 root linux pub tar xvfz mysql 4.0....

mysql資料庫忘記密碼 MySQL資料庫忘記密碼

最近在管理乙個伺服器,是windows server 2012版本的,本來想連線一下資料庫,發現被設定了密碼,而之前的管理人員已經跑路了,沒有辦法只有修改密碼了。以下是修改過程,記錄一下。1.首先檢視mysql資料庫服務是否啟動,這個直接在伺服器管理器的 服務 裡面就可以查到。如果啟動,先關閉該服務...