出现这个问题是数据库拒绝远程连接导致的。
进入 mysql 数据库中
mysql -u root -p
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;
OK!!!