1. 程式人生 > >mysql 設定root密碼

mysql 設定root密碼

新安裝的MySQ安裝的時候並沒有提示設定密碼,通過免密碼的方式登入,如果你想設定密碼:

  1、在MySQL5.7之前輸入update user set authentication_string=password("XXXXXX") where user='root' and host='localhost';

  2、MySQL5.7之後mysql資料庫下已經沒有password這個欄位了,需要改成authentication_string,update user set authentication_string=password("XXXXXX") where user='root' and host='localhost';