更改root密碼和恢復mysql教程 root用戶
我不小心刪除了mysql的root帳號。我該怎麼辦?"和"我失去了我的根密碼?這種問題經碰到,那麼你碰這類問題時是備份數據,重新安裝mysql和恢復所有數據庫教程文件?還是怎麼辦,我們現在為你找到一個更好的辦法。
1、停止mysql ,
2、服務器權限
c:www.111cn.netbinmysqld-nt.exe --skip-grant-tables
where c:www.111cn.net 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.111cn.netbinmysql.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密碼就被你找回來了哈。