连接mysql提示 ‘xxx.xxx.com‘ is not allowed to connect to this MySQL serverConnection closed by
原因是mysql拒绝了连接:需要在mysql中对xxx.xxx.com主机名的访问进行授权查看下有没有该主机名/IPSELECTUser,HostFROMmysql.user;没有的话,执行授权,xxx.xxx.com可以替换成IP地址。CREATEUSER'root'@'xxx.xxx.com'IDENTIFIEDBY'密码';GRANTALLPRIVILEGESON*.*TO'root'@'x