2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > mysql登陆错误(hy000)_mysql远程无法登陆出现ERROR (HY000)...解决方法_MySQL

mysql登陆错误(hy000)_mysql远程无法登陆出现ERROR (HY000)...解决方法_MySQL

时间:2022-03-15 06:47:43

相关推荐

mysql登陆错误(hy000)_mysql远程无法登陆出现ERROR  (HY000)...解决方法_MySQL

Q: 当在另一台机器上登录MySQL时出现如下错误:

ERROR (HY000): Can't connect to MySQL server on 'x.x.x.x' (111)

A: 原因是MySQL考虑到安全因素,默认配置只让从本地登录

打开 /etc/mysql/f 文件,找到 bind-address = 127.0.0.1 修改为 bind-address = 0.0.0.0

重启mysql : sudo /etc/init.d/mysql restart

可参考:

> I've already check my /etc/f file for a "binding"

> line. Its not

> there. I also found an item online that indicated

> adding:

>

Look for the option "skip-networking". This disables TCP/IP so the

server only accepts local connections via the Unix socket. This sounds

like your situation.

Note that a "could not connect" error means just that. If the problem

was related to user privileges you would get an "access denied" error.

Q: 还一种情况出现类似下面的错误:

ERROR 1045 (28000): Access denied for user 'test'@'x.x.x.x' (using password: NO)

A: 原因是没有给登录用户名设置远程主机登录的权限。

在本地用 root 登录: mysql -u root -p

修改 MySQL 数据库中 user 表中 对应用户名的 Host 字段,将 localhost 改为 %

use mysql;

update user set Host = '%' where User = 'username';

发布php中文网,转载请注明出处,感谢您的尊重!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。