mysql5 7忘記密碼及授權問題

2022-08-03 02:33:09 字數 655 閱讀 7867

vi /etc/my.cnf

找到skip-grant-tables

放到[mysqld]下面

重啟mysql

service mysqld restart

用root賬號登入mysql

mysql -u root

使用mysql中的mysql資料庫

use mysql;

修改密碼(5.7版):

update user set authentication_string = password("new password") where user="root" ;

修改密碼(5.7以下版):

update user set authentication_string = password("new password") where user="root" ;

重新整理資料庫 flush privileges;

退出: quit;

開啟mysql5.7的配置檔案my.cnf,把剛增加這行:skip-grant-tables 刪除掉 儲存並退出(:wq)

重啟mysql service mysqld restart

mysql 5 7 忘記密碼

作業系統為centos7 64 1 修改 etc my.cnf,在 mysqld 小節下新增一行 skip grant tables 1 這一行配置讓 mysqld 啟動時不對密碼進行驗證 2 重啟 mysqld 服務 systemctl restart mysqld 3 使用 root 使用者登入...

mysql 5 7 登入,密碼修改及忘記密碼

找到初始化密碼 mysql 5.7之前的版本安裝後密碼預設為空的,但5.7開始在初始化的時候會給隨機生成 乙個密碼。這個密碼在根目錄下的data檔案加下的ryw0e1dnunts1aw.err檔案中,該 密碼只能使用一次,使用初始化密碼登入 在命令列中使用net start mysql啟動mysql...

MySQL5 7忘記root密碼

ubuntu下是 etc mysql mysql.conf.d mysqld.cnf window下是mysql目錄下的 my.ini skip grant tables啟動 mysql 服務後,直接使用 root 登陸,不用密碼 alter user root localhost identifi...