MySQL如何杀掉无用连接?

MySQL如何杀掉无用连接?,第1张

错误“Too many connections”。平常碰到这个问题,我基本上是修改/etc/my.cnf的max_connections参数,然后重启数据库。但

是生产服务器上数据库又不能随便重启。

没办法,只好想办法手动去释放一些没用的连接。

登陆到MySQL的提示符下,数据show processlist这个命令,可以得到所以连接到这个服务器上的MySQL连接:

mysql>show processlist

+---------+------+---------------------+---------+---------+------+-------+-------------------+

| Id | User | Host| db | Command | Time | State | Info |

+---------+------+---------------------+---------+---------+------+-------+-------------------+

| 1180421 | ur | 202.103.96.68:49754 | test1 | Sleep |1 | | NULL |

| 1180427 | ur | 202.103.96.68:55079 | test2 | Sleep |1 | | NULL |

| 1180429 | ur | 202.103.96.68:55187 | testdba | Sleep |0 | | NULL |

| 1180431 | ur | 202.103.96.68:55704 | testdba | Sleep |0 | | NULL |

| 1180437 | ur | 202.103.96.68:32825 | test1 | Sleep |1 | | NULL |

| 1180469 | ur | 202.103.96.68:58073 | testdba | Sleep |0 | | NULL |

| 1180472 | ur | 83.136.93.131:47613 | test2 | Sleep |8 | | NULL |

| 1180475 | root | localhost | NULL| Query |0 | NULL | show PROCESSLIST |

+---------+------+---------------------+---------+---------+------+-------+-------------------+

8 rows in set (0.00 sec)

mysql>

然后,你可以看到像上面这样的MySQL数据连接列表,而且每一个都会有一个进程ID号(在上表的第一列)。我们只要输入这样的命令:

mysql>kill 1180421

Query OK, 0 rows affected (0.00 sec)

mysql>

其中1180421为你在进程列表里找到并且要杀掉的进程号。

产生这种问题的原因是:

连接数超过了 MySQL 设置的值,与 max_connections 和 wait_timeout 都有关系。wait_timeout 的值越大,连接的空闲等待就越长,这样就会造成当前连接数越大。

解决方法:

修改MySQL配置文件/etc/my.cnf,设置成max_connections=1000,wait_timeout=5。如果没有此项设置可以自行添加,修改后重启MySQL服务即可。要不经常性报此错误,则要对服务器作整体性能优化

注:

为了防止发生too many connections时候无法登录的问题,mysql manual有如下的说明:

mysqld actually allows max_connections+1 clients to connect. The extra connection is reserved for use by accounts that have the SUPER privilege. By granting the SUPER privilege to administrators and not to normal users (who should not need it), an administrator can connect to the server and use SHOW PROCESSLIST to diagnose problems even if the maximum number of unprivileged clients are connected.

因此, 必须只赋予root用户的SUPER权限,同时所有数据库连接的帐户不能赋予SUPER权限。前面说到的报错后无法登录就是由于我们的应用程序直接配置的root用户

总结,解决问题的最终方法:

1.修改配置文件/etc/my.cnf,调整连接参数

2.检查程序代码,对于没有关闭的链接及时进行关闭

这个语句可以这样写,达到你的要求,不过你的数据库这样设计似乎不太合理

利用subsring 和 POSITION 函数完成;

update t set descs=(substring(substring(descs,POSITION('>' in descs)+1),1,

POSITION('<' in substring(descs,POSITION('>' in descs)+2))))

不过使用desc 作为字段名称似乎在mysql中不允许我用的是5.5版本,我把它改成descs了

插入数据如

insert into t values (2,'<a href="www.baidu.com">百度</a>')

执行以上sql语句后descs更新为 百度,去除了超链接标记

对了,希望采纳加分哦,呵呵

1.首先在windows服务中将mysql服务删掉,使用命令 sc delete mysql\x0d\x0a2.在控制面板中卸载掉mysql。\x0d\x0a3.清理mysql安装目录的ini文件。\x0d\x0a4.清理注册表:\x0d\x0aHKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\MySQL 目录删除\x0d\x0aHKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\MySQL 目录删除\x0d\x0aHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MySQL 目录删除(我卸载的时候没有找到,略过后仍达到完全卸载的目的。)\x0d\x0a5.有一些mysql的数据文件也必须删除干净,比如说:C:\Documents and Settings\All Users\Application Data\MySQL\x0d\x0a6.重启电脑。重新安装即可。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/56363.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-02-26
下一篇2023-02-26

发表评论

登录后才能评论

评论列表(0条)

    保存