美文网首页足迹
修改连接数

修改连接数

作者: qyfl | 来源:发表于2019-03-16 22:19 被阅读0次

    修改连接数

    临时修改

    • 进入Mysql数据库查看 max_connection_errors: show variables like '%max_connection_errors%';
    • 修改 max_connection_errors 的数量为1000: set global max_connect_errors = 1000;
    • 查看是否修改成功:show variables like '%max_connection_errors%';

    永久修改

    vi /etc/my.cnf
    max_connections=1000
    
    1. 使用mysqladmin flush-hosts 命令清理一下hosts文件(不知道mysqladmin在哪个目录下可以使用命令查找:whereis mysqladmin)
    /usr/bin/mysqladmin flush-hosts -h192.168.1.1 -P3308 -uroot -prootpwd
    # 或者
    # 进入mysql命令行
    flush hosts;
    

    相关文章

      网友评论

        本文标题:修改连接数

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