Mysql数据库默认只开启本地登陆即“127.0.0.1”
若需要开通另一IP地址登陆权限则需要先本地连接服务器端
1.grant all privileges on *.* to root@"xxx.xxx.xxx.xxx" identified by "密码";(其中xxx.xxx.xxx.xxx代表开通远程登陆的客户机IP,密码为登陆密码)
2.flush privileges;