Access denied for user 'root'@'192.168.17.1' (using password: YES) Access denied for user 'root'@'192.168.17.1' (using password: YES)
时间: 2023-09-11 12:06:39 浏览: 193
Access denied for user root@localhost (using passwor)
5星 · 资源好评率100%
Access denied for user 'root'@'192.168.17.1' (using password: YES) 是一个MySQL的错误信息,意味着root用户在IP地址为192.168.17.1的主机上使用了错误的密码尝试登录MySQL。解决这个问题的方法有几种:
1. 首先,确认输入的密码是否正确。可能是因为密码输入错误导致登录失败。重新输入正确的密码尝试登录。
2. 确认是否给这个IP地址授权了访问MySQL的权限。在Linux系统中,登录MySQL后使用以下命令为IP地址为192.168.17.1的主机授权:
```
GRANT ALL PRIVILEGES on *.* to 'root'@'192.168.17.1' identified by 'abcd1234';
```
这里的'abcd1234'是root账号的密码,请根据实际情况修改为正确的密码再执行此命令。授权之后需要刷新权限:
```
flush privileges;
```
请尝试以上方法来解决这个问题。如果问题仍然存在,请提供更多的信息以便我们进一步帮助您解决。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Access denied for user 'root'@'192.168.119.12' (using password: YES)](https://blog.csdn.net/jim_LoveQ/article/details/93627743)[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_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文