程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 更改root密碼和恢復MySQL root用戶

更改root密碼和恢復MySQL root用戶

編輯:MySQL綜合教程

更改root密碼和恢復MySQL root用戶 我不小心刪除了MySQL的root帳號。我該怎麼辦?"和"我失去了我的根密碼?這種問題經碰到,那麼你碰這類問題時是備份數據,重新安裝MySQL和恢復所有數據庫文件?還是怎麼辦,我們現在為你找到一個更好的辦法。

更改root密碼和恢復mysql教程 root用戶
我不小心刪除了mysql的root帳號。我該怎麼辦?"和"我失去了我的根密碼?這種問題經碰到,那麼你碰這類問題時是備份數據,重新安裝mysql和恢復所有數據庫教程文件?還是怎麼辦,我們現在為你找到一個更好的辦法。

1、停止mysql ,
2、服務器權限
c:www.bKjia.c0mbinmysqld-nt.exe --skip-grant-tables
    where c:www.bKjia.c0m is mysql'instalation directory.
    如果是linux就如下執行命令
    /usr/local/mysql/bin/mysqld_safe --skip-grant-tables --user=root --skip-networking
3、連接到服務器使用exsisting帳戶(root或某些otherif root帳戶被刪除)。
     c:www.bKjia.c0mbinmysql.exe -u user
     or
     /usr/local/mysql/bin/mysql -u user
    
4、更改mysql 查詢密碼
 update mysql.user set password=password('newpwd') where user='root';
    or recreating user:
        create user root identified by password 'newpwd';
        grant all privileges on * . * to 'root'@ 'localhost' identified by 'newpwd' with grant option max_queries_per_hour 0 max_connections_per_hour 0 max_updates_per_hour 0 max_user_connections 0 ;

5、刷新權限
 flush privileges;

6、重新啟動服務器
ok mysql root密碼就被你找回來了哈。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved