### 長話短說 改 host 先: ```sql update mysql.user set host='%' where user='root'; ``` 然後改認證方法: ```sql alter user 'root'@'%' identified with mysql_native_password by 'password'; ``` 完 !