本地的程序连接本地的数据库,在打包放到服务器上的时候发现数据连接信息没改,于是改了IP,但是出现了“1130 - Host'xxx.xxx.xxx.xxx' is not allowed to connect to this MySQL server“这个错误,原因是该IP没有访问数据库的权限,在Navicat中测试连接也是不通的,百度了一下找到了方法。
首先远程连接进入服务器,在cms中输入mysql -u root -p,然后回车,输入密码后回车进入mysql命令行。
grant all privileges on *.* to root@"xxx.xxx.xxx.xxx" identified by "密码";
然后再输入
flush privileges;
最后附上连接:http://jingyan.baidu.com/article/b907e627b0e3b846e7891cc9.html