mysql5.5.24安裝後忘記root密碼 悲催
在官方文件裡找到解決方案
第一步:關閉mysql服務
第二步:新建txt
寫入如下內容
update mysql.user set password=password('新密碼') where user='root';
flush privileges;
儲存(如儲存在c:/mysql-init.txt)
第三步:在cmd下cd的mysql的安裝目錄的bin下
輸入命令mysqld --init-file=c:\\mysql-init.txt
(我沒看到任何提示資訊 在一分鐘後直接啟動服務輸入新密碼 重置成功)
啟動服務 新密碼輸入okay
重置root密碼
一.ubuntu忘記密碼解決方法 1.開機按shift 2.選擇高階選項,進入後選擇恢復模式 不要按回車 按e進入編輯模式 3.修改linux命令中的recovery nomodest 為 quiet splash rw init bin bash,按f10 4.命令列中輸入password,然後輸...
重置ROOT密碼
方法一 在my.ini的 mysqld 字段加入 skip grant tables 重啟mysql服務,這時的mysql不需要密碼即可登入資料庫 然後進入mysql mysql use mysql mysql 更新 user set password password 新密碼 where user...
mysql重置root密碼
在ubuntu 10.04上安裝了mysql,安裝時沒有要求輸入root密碼,安裝後訪問資料庫,用以下命令 mysql u root p,然後無論輸入什麼密碼都是錯誤的,只能設法重置root密碼。1.首先停止mysql服務 sudo service mysql stop 確認沒有mysql程序 ps...