phpmyadmin Mysql 错误

发布于 2024-07-17 09:31:27 字数 524 浏览 14 评论 0原文

我有 Debian 服务器。

我的 phpmyadmin 和 mysql 通过命令行早些时候运行良好。 但突然我在访问 phpmyadmin 时收到此错误。

http://myserver/phpmyadmin

2003 - 服务器没有响应

,当我尝试通过命令行访问时

mysql -u userid -p
Enter password:
ERROR 1045 (28000): Access denied for user 'userid'@'localhost' (using password: YES)

,当我通过此访问时,

mysql -h ipaddress -u userid -p

需要很长时间才能连接。

I have debian server.

My phpmyadmin & mysql through command line was earlier working well.
But suddenly i am getting this error while accessing phpmyadmin.

http://myserver/phpmyadmin

2003 - The server is not responding

And when i try to access through command line

mysql -u userid -p
Enter password:
ERROR 1045 (28000): Access denied for user 'userid'@'localhost' (using password: YES)

And when i access through this

mysql -h ipaddress -u userid -p

it takes very long time to connect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

阪姬 2024-07-24 09:31:27

您可以检查 my.ini 中的“bind-address”与 config.inc.php(phpMyAdmin 的)中的 $cfg['Servers'][$i]['host'] 值是否匹配。 如果没有,请将它们或两者都更改为“localhost”以仅本地主机访问或服务器的真实IP地址以从其他主机访问。

You can check or the 'bind-address' in my.ini and the $cfg['Servers'][$i]['host'] value in config.inc.php (of phpMyAdmin) match. If not, change them or both to 'localhost' for only localhost access or the real ip address of the server for access from other hosts.

羞稚 2024-07-24 09:31:27

mysql 日志有没有说明这个错误?

Does the mysql log say anything about this error?

我是男神闪亮亮 2024-07-24 09:31:27

检查 config.inc.php 中的 mysql 用户名和密码是否与您在 mysql 配置文件中设置的内容匹配。 如果您无法使其正常工作,您可能需要询问您的网络托管服务商。

Check if the mysql username and password in config.inc.php match what you've set in your mysql configuration file. If you can't get it working you may want to ask your web host.

金橙橙 2024-07-24 09:31:27

用户通常收到此错误的原因之一是因为他们的防火墙配置不正确,并且不允许传出连接到 3306 等端口(这种情况在我身上发生过不止一次)。 请检查您是否属于这种情况。

One of the reasons users generally get this error is because their firewall is not properly configured and does not allow an outgoing connection to ports like 3306 (This has happened to me more than once). Please check if that is the case with you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文