WAMP安裝好後,mysql密碼是爲空的,那麼要如何修改呢?其實很簡單,經過幾條指令就好了,下面我就一步步來操做。mysql
首先,經過WAMP打開mysql控制檯。sql
提示輸入密碼,由於如今是空,因此直接按回車。數據庫
而後輸入「use mysql」,意思是使用mysql這個數據庫,提示「Database changed」就行。vim
而後輸入要修改的密碼的sql語句「update user set password=PASSWORD('hooray') where user='root';」,注意,sql語句結尾的分號不能少,提示什麼什麼OK就好了。ui
最後輸入「flush privileges;」,不輸入這個的話,修改密碼的操做不會生效的。spa
而後輸入「quit」退出。3d
又一次下載安裝時,修改mysql密碼報錯 的解決方法rest
新安裝的MySQL5.7,登陸時提示密碼錯誤,安裝的時候並無更改密碼,後來經過免密碼登陸的方式更改密碼,輸入update mysql.user set password=password('root') where user='root'時提示ERROR 1054 (42S22): Unknown column 'password' in 'field list',原來是mysql數據庫下已經沒有password這個字段了,password字段改爲了blog
authentication_string
因此更改語句替換爲update mysql.user set authentication_string=password('root') where user='root' ;便可ip
個人系統版本以下:
完整的更改MySQL密碼的方式以下:
一、vim /etc/my.cnf 加入skip-grant-tables
二、重啓MySQL, /etc/init.d/mysqld restart
三、終端輸入 mysql 直接登陸MySQL數據庫,而後use mysql
四、update mysql.user set authentication_string=password('root') where user='root' ;
五、編輯my.cnf文件刪掉skip-grant-tables 這一行,而後重啓MySQL,/etc/init.d/mysqld restart,不然MySQL仍能免密碼登陸
六、mysql -u root -p
而後輸入密碼便可登陸MySQL數據庫