美文网首页
mysql开通外部访问问题

mysql开通外部访问问题

作者: 呦丶耍脾气 | 来源:发表于2018-05-29 17:39 被阅读24次

问题1:not allowed to connect to this MySQL server
修改mysql数据库中的user表数据,找到你想修改的用户,修改host字段(默认localhost)为“*”


然后运行flush privileges;

问题2:Access denied for user 'thinkerdns'@'%' to database 'thinkerdns'
命令行输入:grant all privileges on thinkerdns.* to 'thinkerdns'@'%' identified by '密码' with grant option;

然后运行flush privileges;

查看下权限

相关文章

网友评论

      本文标题:mysql开通外部访问问题

      本文链接:https://www.haomeiwen.com/subject/vzpajftx.html