1. 程式人生 > >mysql8.0+修改使用者密碼

mysql8.0+修改使用者密碼

alter user 'root'@'%' identified by 'xxxx';
alter user 'root'@'localhost' identified by 'xxxx';


[email protected]後面是user表的Host欄位的內容,新安裝預設是localhost,我這增加了遠端訪問,將localhost手動改成了%
改完了之後需要執行
flush privileges;