1. 程式人生 > >mysql8.0 修改資料庫root密碼

mysql8.0 修改資料庫root密碼

第一步:輸入 mysql -u root -p  然後回車

輸入密碼

第二步:輸入 use mysql;

第三步:輸入update user set authentication_string='' where user='root';將authentication_string置空

第四步:輸入select user,host from user;

第五步:輸入alter user 'root'@'%' identified by '新密碼';(注意:我的root host是%,如果user的host是localhost,就需要改成alter user 'root'@'localhost' identified by '新密