這個錯誤看起來是root帳號使用了錯誤的密碼造成的。
PS.重設密碼參考:
mysql> use mysql;
mysql> update user set authentication_string=password('我的新密碼') where user='root';
mysql> flush privileges;
mysql> quit
參考文章:
https://www.stechies.com/error-1045-28000-access-denied-user-root-localhost/