超过mysql每小时最大连接数
我超出了 mysql 设置的最大连接数。我是在phpmyAdmin中设置的。我的问题是我无法再进入 phpmyadmin。
它被设置为每小时一定数量的连接。我是否必须等待一个小时才能再次使用它,或者有没有办法访问 phpmyAdmin 或重新启动设置?
I exceeded the set max connections for mysql. I set it in phpmyAdmin. My problem is that I cannot get in to phpmyadmin anymore.
It was set to some number of connections per hour. Do I have towait for an hour before I can use it again or is there a way to access phpmyAdmin or restart the settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这发生在我身上很多,我解决了这个问题,如下所示:
,它将起作用。
this happened to me a lot, I solved this issue like this:
and it will work.
我认为这是 mysqld 中的每次登录设置,在这种情况下,除非您可以使用不同的登录名,或者可以重新启动 mysqld,否则您只需等到时间到了。
您可以在 MySQL 设置帐户资源限制 手册页。
I presume this is a per-login setting in mysqld, in which case unless you can use a different login, or can restart mysqld you'll simply have to wait until the hour is up.
You can read more about this on the MySQL Setting Account Resource Limits manual page.
为该数据库创建一个新用户。授予该用户所有权限。然后删除该用户。这将重置该数据库的查询限制。
Create a new user for that database. Grant that user all privileges. Then delete that user. This will reset the query limit on that database.