MySQL登录时出现 Access denied for user 'root'@'xxx.xxx.xxx.xxx' (using password: YES) 的原因及解决办法

74 篇文章 0 订阅
35 篇文章 1 订阅
MySQL登录时出现 Access denied for user 'root'@'xxx.xxx.xxx.xxx' (using password: YES) 的原因及解决办法。

# mysql -u root -h 192.168.194.142 -p
Enter password: 
ERROR 1045 (28000): Access denied for user 'root'@'192.168.194.142' (using password: YES)

【解决办法】
1. 先用localhost登录
# mysql -u root -p
Enter password: 
2. 执行授权命令
mysql> grant all privileges on *.* to root@'%' identified by '123';
Query OK, 0 rows affected (0.07 sec)
3. 退出再试
mysql> quit
Bye
再试登录:
# mysql -u root -h 192.168.194.142 -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.33 MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
成功啦!


下面详细说说如何给用户授权。
 
mysql> grant 权限1,权限2, ... 权限n on 数据库名称.表名称 to 用户名@用户地址 identified by '连接口令';

权限1,权限2,... 权限n 代表 select、insert、update、delete、create、drop、index、alter、grant、references、reload、shutdown、process、file 等14个权限。
当权限1,权限2,... 权限n 被 all privileges 或者 all 代替时,表示赋予用户全部权限。
当 数据库名称.表名称 被 *.* 代替时,表示赋予用户操作服务器上所有数据库所有表的权限。
用户地址可以是localhost,也可以是IP地址、机器名和域名。也可以用 '%' 表示从任何地址连接。
'连接口令' 不能为空,否则创建失败。

举几个例子:
mysql> grant select,insert,update,delete,create,drop on vtdc.employee to joe@10.163.225.87 identified by ‘123′;
给来自10.163.225.87的用户joe分配可对数据库vtdc的employee表进行select,insert,update,delete,create,drop等操作的权限,并设定口令为123。

mysql> grant all privileges on vtdc.* to joe@10.163.225.87 identified by ‘123′;
给来自10.163.225.87的用户joe分配可对数据库vtdc所有表进行所有操作的权限,并设定口令为123。

mysql> grant all privileges on *.* to joe@10.163.225.87 identified by ‘123′;
给来自10.163.225.87的用户joe分配可对所有数据库的所有表进行所有操作的权限,并设定口令为123。

mysql> grant all privileges on *.* to joe@localhost identified by ‘123′;
给本机用户joe分配可对所有数据库的所有表进行所有操作的权限,并设定口令为123。
  • 17
    点赞
  • 41
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
这个错误提示说明在连接MySQL数据库访问被拒绝了,错误代码是1045。有几种可能的原因导致这个问题。 一种可能是你输入的用户名或密码不正确。请确保你输入的用户名是'root',并且密码是正确的。你可以尝试重新输入用户名和密码来解决这个问题。 另一种可能是你的IP地址没有被授权访问数据库。在MySQL的用户表中,每个用户都有一个host字段,用于指定允许连接的IP地址。如果你的IP地址不在允许的范围内,你将无法连接。你可以通过在MySQL中执行一条SQL语句来修改用户的host字段,将其设置为允许的IP地址或通配符(%),以便允许从任何IP地址连接。 还有可能是你的MySQL服务器配置了防火墙或者其他安全设置,禁止了外部访问。你可以检查一下MySQL服务器的配置文件,看是否有相关的设置。如果有,你可以尝试调整这些设置以允许外部访问。 最后,如果你使用的是Docker容器部署的MySQL,还需要确保你在创建容器已经正确地挂载了配置文件,并且在配置文件中设置了正确的用户名和密码。 综上所述,要解决这个问题,你可以尝试以下几个步骤: 1. 确认用户名和密码的正确性。 2. 检查用户的host字段并确保允许你的IP地址连接。 3. 检查MySQL服务器的防火墙和安全设置,确保允许外部访问。 4. 检查Docker容器的配置文件,确保正确地挂载了配置文件并设置了正确的用户名和密码。 希望这些步骤能帮助你解决问题。如果问题仍然存在,请提供更多详细信息以便我们提供更准确的解决方案。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [连腾讯云上的docker上的mysql报错ERROR 1045 (28000): Access denied for userroot’@’localhost’ ...](https://download.csdn.net/download/weixin_38732519/14074606)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [1045 - Access denied for userroot‘@‘xxx‘(using password:YES)](https://blog.csdn.net/zhangwj15352457376/article/details/129142414)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [MySQL5.7登录报错:1045 - Access denied for userroot‘@‘192.168.xx.xx‘(using password: YES)](https://blog.csdn.net/weixin_42891009/article/details/127672730)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值