首页 > 学院 > 操作系统 > 正文

mysqld 的skip-name-resolve对mysql -h 127.0.0.1的影响

2024-06-28 16:03:10
字体:
来源:转载
供稿:网友

我们先新建一个库,并建立一个账户。

MySQL -e "create database a DEFAULT CHARSET utf8 COLLATE utf8_general_ci;"mysql -e "grant all PRivileges on a.* to 'test'@'%' identified by 'test'; flush privileges;

假设我们当前的skip-name-resolve没有配置,那么我们使用127.0.0.1 去登陆会报错的

[root@localhost ~]# mysql -h 127.0.0.1 -u test -ptestERROR 1045 (28000): access denied for user 'test'@'localhost' (using passWord: YES)

假设我们加上skip-name-resolve来?

这里写图片描述

重启mysqld后,我们会发现可以登陆了。

这里写图片描述


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表