Windows10系統下Mysql8.0.13忘記root密碼的操作方法
1、首先停止mysql服務
管理員身份開啟CMD下命令關閉或者windows服務頁面關閉
C:\Users\xxx>net stop mysql
管理員身份開啟CMD頁面,輸入以下命令無密碼啟動mysql
C:\Users\xxx>mysqld --console --skip-grant-tables --shared-memory
看到如下頁面再開啟新的CMD頁面
在新的CMD頁面輸入如下
mysql> flush privileges; -- 修改權限 Query OK, 0 rows affected (0.16 sec) mysql> ALTER USER "root"@"localhost" IDENTIFIED BY "123456"; -- 修改密碼 Query OK, 0 rows affected (0.08 sec)
完成如上操作即完成修改密碼,退出可以共用新的密碼登陸瞭
附參考:mysql錯誤:The MySQL server is running with the –skip-grant-tables option so it cannot execute this statement解決方法
下面繼續給大傢講解的是mysql錯誤:The MySQL server is running with the –skip-grant-tables option so it cannot execute this statement解決方法,感興趣的同學參考下。
錯誤描述:
mysql> grant all on cactidb.* to dbuser@'localhost' identified by '123'; ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
解決方法:
先刷新一下權限表。
mysql> flush privileges; Query OK, 0 rows affected (0.01 sec) mysql> grant all on cactidb.* to dbuser@'localhost' identified by '123'; Query OK, 0 rows affected (0.00 sec)
借鑒如下
https://www.jb51.net/article/203587.htm
到此這篇關於Windows10系統下Mysql8.0.13忘記root密碼的操作方法的文章就介紹到這瞭,更多相關Windows10 Mysql8.0.13忘記root密碼內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- MySQL在grant時報錯ERROR 1064 (42000)的原因及解決方法
- 如何實現mysql的遠程連接
- Navicat連接MySQL8.0的正確方法(親測有效)
- MySQL SQL預處理(Prepared)的語法實例與註意事項
- MySQL8.0修改密碼的正確姿勢分享