mysql 重改密碼(個人學習日誌)

2021-08-22 05:57:19 字數 492 閱讀 5905

1.用系統管理員登陸系統。

2.停止mysql的服務。

3.進入命令視窗,然後進入mysql的安裝目錄,比如我的安裝目錄是c:/mysql,進入c:/mysql/bin

4.跳過許可權檢查啟動mysql,

c:/mysql/bin>mysqld-nt –skip-grant-tables

5.重新開啟乙個視窗,進入c:/mysql/bin目錄,設定root的新密碼

c:/mysql/bin>mysqladmin -u root flush-privileges password 「newpassword」

c:/mysql/bin>mysqladmin -u root -p shutdown

將newpassword替換為你要用的root的密碼,第二個命令會提示你輸入新密碼,重複第乙個命令輸入的密碼。

6.停止mysql server,用正常模式啟動mysql

7.你可以用新的密碼鏈結到mysql了。

MySQL個人學習

online transation processing 聯機事務處理 傳統的crud 活躍資料佔比較小,考慮將活躍資料cache到記憶體 io頻繁,且資料訪問量小 離散,對響應及互動要求高,iops要求高。併發量高,對網路裝置要求較高,伺服器處理能力較強 online analytical pro...

mysql強制改密碼

具體方法是 1.先在安裝目錄找到my.ini配置檔案,開啟配置檔案,找到 mysqld 一行,在下面新增skip grant tables後儲存該檔案,重新啟mysql動服務 2.然後在mysql的cmdline執行mysql u root mysql,mysql update user set p...

mysql登陸改密碼

我參考的是這個文章 大致總結一下 net stop mysql mysqld shared memory skip grant tables 游標閃爍 重新開命令列,update mysql.user set authentication string where user root 關閉所有命令列...