尝试运行PHPADMIN时出现以下错误
Error
MySQL said: Documentation
#1226 - User 'root' has exceeded the 'max_connections_per_hour'
resource (current value: 3)
mysqli_real_connect(): (HY000/1226):
User 'root' has exceeded the 'max_connections_per_hour' resource (current value: 3)
phpMyAdmin tried to connect to the MySQL server, and the server rejected
the connection. You should check the host, username and password in your
configuration and make sure that they correspond to the information given by the
administrator of the MySQL server.请帮帮忙。我意外地将我的一个数据库在一小时内的最大访问次数设置为3。
发布于 2017-05-22 05:31:18
请等待并在命令行上运行SQL
UPDATE mysql.user SET max_connections = 0 WHERE user='root';
FLUSH PRIVILEGES;https://stackoverflow.com/questions/44100518
复制相似问题