美文网首页
mysql报"Host ""***

mysql报"Host ""***

作者: 风吹路过的云 | 来源:发表于2019-01-23 10:55 被阅读5次
    java.sql.SQLException: null,  message server: "Host ""*****"" is blocked because of many connection errors; unblock with ""mysqladmin flush-hosts""" 
    

    原因:
    mysql中默认的max_connect_errors是10,因为连接失误,造成这个数值高于10,当在接受连接的时侯就被锁住了, 并阻止主机的进一步连接请求。

    解决:

    方法1 命令行或终端:mysqladmin  -u  root  -p  flush-hosts
    接着输入root账号密码即可
    
    方法2
    修改mysql配置文件,在[mysqld]下面添加 max_connect_errors=1000,然后重启mysql
    

    相关文章

      网友评论

          本文标题:mysql报"Host ""***

          本文链接:https://www.haomeiwen.com/subject/vekjjqtx.html