主持人' host_name'由于许多连接错误而被阻止。使用' mysqladmin flush-hosts'取消阻止

时间:2014-10-20 16:56:47

标签: php mysql codeigniter

我有网站,它建立在codeigniter上。

我在大约1.5周前制作了它。

在database.php中我有

$db['default']['hostname'] = 'somehosting.com';

直到今天一直很好。但大约两个小时前,出现了错误:

Unable to connect to your database server using the provided settings.

我写了mysqli连接脚本,发现错误,它是:

Warning: mysqli::mysqli(): (HY000/1129): Host 'somehosting' is blocked because of many connection errors;

然后我用Google搜索并找到解决方案。我改变了

$db['default']['hostname'] = 'somehosting.com';

使用:

$db['default']['hostname'] = 'localhost';

现在一切都恢复了。

但是什么意味着“许多连接错误”以及为什么会出现这些错误?

有人能解释我,那里发生了什么?

0 个答案:

没有答案