问题:
远程链接数据库失败:
Host 'root' is not allowed to connect to this mysql server
解决方法:
1.登录数据;
2.use mysql;
3.update user set host = '%' where user = 'root';
这里会报个错(Duplicate entry '%-root' for key 'PRIMARY'),不管它;
4.FLUSH PRIVILEGES;
刷新权限;
搞定╭(╯^╰)╮
问题:
远程链接数据库失败:
Host 'root' is not allowed to connect to this mysql server
解决方法:
1.登录数据;
2.use mysql;
3.update user set host = '%' where user = 'root';
这里会报个错(Duplicate entry '%-root' for key 'PRIMARY'),不管它;
4.FLUSH PRIVILEGES;
刷新权限;
搞定╭(╯^╰)╮