從Docker登陸MySQL的終端mysql
docker exec -it wordpress-mysql /bin/bash
登陸數據庫sql
mysql -u root -p
使用MYSQL數據庫docker
use mysql
查詢MYSQL的root用戶狀況數據庫
select host, user, plugin from user;
修改root用戶插件驗證方式bash
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'xxxxxxxxxx';
刷新權限wordpress
FLUSH PRIVILEGES;