注意:刪除掉data資料夾後裡面新建的資料庫表也會清零
c:\windows\system32>mysql -u root -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 8
server version: 8.0.15 mysql community server - gpl
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
owners.
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
mysql> use mysql;
database changed
alter user 'root'@'localhost'identified by '123456';適用於8.0以上版本
mysql> alter user 'root'@'localhost'identified by '123456';
query ok, 0 rows affected (0.09 sec)
mysql> flush privileges;
query ok, 0 rows affected (0.43 sec)
附:
sc query mysql 檢查是否安裝服務
sc delete mysql 刪除已安裝服務
解決方案:
alter user 'root'@'%' identified by 'password' password expire never; //password 為自己的密碼
alter user 'root'@'%' identified with mysql_native_password by 'why';//why是自己新修改的密碼。
flush privileges;再次重新整理一下許可權配置。
再次查詢
select user,host,plugin from user;
再次重置下密碼:
啟動mysql Mysql無法啟動的常規檢查方法
注 mysql掛的原因很大程度是重啟伺服器所致,沒事請不要重啟伺服器,如修改過配置檔案等,過載服務即可無需重啟。確實需要重啟請使用面板中的安全重啟,切勿使用reboot命令。進入ssh 輸入df h 檢查是否磁碟空間不足導致mysql服務無法正常啟動 進入ssh輸入free 檢查是否記憶體不足導致m...
MySQL MySQL監視器無法啟動的可能情況
mysql監視器無法啟動,指的是cmd輸入mysql u username ppassword但不能登入並顯示welcome.的資訊提示,新手可能不知道問題出在 本文列舉幾種新手可能疏忽的點 使用者名稱或密碼錄入錯誤 這沒啥好說的,使用者名稱或密碼打錯了唄 要是真記不住了就破解一下重新改密碼。沒有設...
Mysql mysql服務不能啟動
1.服務指定的路徑不存在 在如下登錄檔路徑下,找到mysql服務的登錄檔,修改路徑 1 hkey local machine system controlset001 services mysql服務,這裡名字不統一 2 hkey local machine system controlset002...