Centos7忘記了mysql密碼解決辦法

2021-10-01 19:48:25 字數 538 閱讀 8747

vim /etc/my.cnf
然後在檔案底部新增內容,儲存退出:

skip-grant-tables
3.重啟mysql

service mysqld restart
4.登陸mysql(現在是免密登陸),修改密碼

mysql -uroot -p

#進去以後,依次輸入以下命令

use mysql;

update user set authentication_string = password(

'你的新密碼'

),password_last_changed=now(

) where user=

'root'

;#退出

exit

5.將上面在 /etc/my.cnf中新增的skip-grant-tables刪除了

6.再次重啟mysql服務:service mysqld restart

CentOS7忘記了mysql8的root密碼?

0,系統版本 centos linux release 7.9.2009 core mysql版本 ver 8.0.25 for linux on x86 64 mysql community server gpl 1,修改檔案 etc my.cnf,增加一行配置 skip grant tables...

centos 7忘記mysql的密碼

方法 一 找回安裝是的初始密碼 1 grep temporary password var log mysqld.log 方法二 使用作業系統賬號和密碼,進行修改密碼 1 mysql uroot p 2 輸入你的centos的密碼 3 update mysql.user set authentica...

Centos7下mysql忘記root密碼處理方法

1.使用命令 vi etc my.cnf 2.在 mysqld 下新增一段 skip grant tables 3.重啟mysql服務 service mysql restart 4.使用者無密碼登入 mysql uroot p 5.選擇mysql資料庫 use mysql 6.修改root密碼 u...