資料庫忘記密碼

2021-09-11 03:03:04 字數 530 閱讀 2934

停止mysql服務

>service mysqld stop
2.編寫mysql配置檔案,並啟動mysql

> vim /etc/my.cnf
最後一行新增:(忽略mysql許可權問題,直接登入)

skip-grant-tables
啟動資料庫

>service mysqld start
無密碼進入mysql,執行對賬號密碼的修改

>  mysql

> use mysql;(使用mysql表操作)

> update user set password=password("新密碼") where user="賬戶名";

> flush privileges; (重新整理許可權)

去掉 my.cnf中的

skip-grant-tables

Linux MySQL資料庫忘記密碼

1.首先停止mysql服務程序 service mysqld stop 2.然後編輯mysql的配置檔案my.cnf vi etc my.cnf 3.找到 mysqld 這個模組 在最後面新增一段 skip grant tables 忽略mysql許可權問題,直接登入 然後儲存 wq 退出 4.啟動...

mysql資料庫忘記密碼

方法一 1 在dos視窗下輸入net stop mysql5或net stop mysql 2 開乙個dos視窗,這個需要切換到mysql的bin目錄。一般在bin目錄裡面建立乙個批處理1.bat,內容是cmd.exe執行一下即可就切換到當前目錄,然後輸入 mysqld nt skip grant ...

mysql資料庫忘記密碼

mysql資料庫忘記root密碼如何處理 1.關閉mysql資料庫 service mysql stop 2.找到etc my.cnf 檔案 在mysqld下面增加 skip grant tables skip name resolve 3.啟動mysql資料庫 service mysql star...