欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL安装提示错误Host '127.0.0.1' is not allowed to connect to this MySQL server

程序员文章站 2022-06-17 19:00:05
MySQL连接数据库出现错误:Host '127.0.0.1' is not allowed to connect to this MySQL server...

MySQL连接数据库出现错误:Host '127.0.0.1' is not allowed to connect to this MySQL server

实际登录访问本机mysql,后来查找是因为:

MySQL数据库的配置文件my.ini中设置了参数: skip-name-resolve,从而导致使用“localhost”不能连接到数据库。

关闭此配置,#skip-name-resolve,

重新启动mysql

停止:net stop mysql
启动:net start mysql
此时就可以解决连接报错问题!
相关标签: MySQL