1. 程式人生 > >MySQL忘記密碼了如何登陸?

MySQL忘記密碼了如何登陸?

MySQL忘記密碼/ MySQL修改密碼

MySQL忘記密碼了如何登陸?

方法1:

1,可以在配置文件裏加上 skip-grant-tables   --註意寫到[mysqld]參數組下,表示跳過授權 
2,重啟MySQL再登錄就不需要密碼,進去改密碼,改完後,直接flush privileges就可以使用新密碼來登錄了 
(例:update mysql.user set password=password("123") where user="root" and host="localhost"; )
3,改完後記得去掉配置文件例的skip-grant-tables,重新啟動 
4,再使用新的密碼登錄 

方法2:

再MySQL沒啟動的情況下
[root@mysql ~]# mysqld_safe --skip-grant-tables &  --用這命令啟動再可直接登陸就不用密碼了,進去後就可以修改密碼

如出現找不到命令的報錯  -bash: mysqld_safe:command not found
進入mysql目錄:cd /usr/local/mysql/  (我這是源碼包安裝的)
再運行: bin/mysqld_safe --skip-grant-tables &

修改密碼三種方法

mysqladmin -u root password ‘456‘ -p123 
--明文方式修改密碼,就需要原密碼(456是新密碼,原密碼是123)

mysqladmin -u root password  -p     --不想明文方式修改密碼 
Enter password:         --隱藏輸入原密碼 
New password:           --隱藏輸入新密碼 
Confirm new password:       --隱藏確認新密碼 

第二種:

進入數據庫內修改密碼 
1、update mysql.user set password=password("789") where user="root" and host="localhost";    --使用sql語句在數據庫內部直接修改用戶密碼表
2、flush privileges; --修改過密碼後都要記得刷新權限表 

第三種:

進入數據庫內修改密碼 
set password for ‘root‘@‘localhost‘=password(‘123‘); --使用此操作語句也可以修改密碼,修改後不需要刷新權限表 

MySQL忘記密碼了如何登陸?