Limpieza manual:
Puedes MATAR el ID de proceso.
mysql> show full processlist;
+---------+------------+-------------------+------+---------+-------+-------+-----------------------+
| Id | User | Host | db | Command | Time | State | Info |
+---------+------------+-------------------+------+---------+-------+-------+-----------------------+
| 1193777 | TestUser12 | 192.168.1.11:3775 | www | Sleep | 25946 | | NULL |
+---------+------------+-------------------+------+---------+-------+-------+-----------------------+
mysql> kill 1193777;
Pero:
- la aplicación php podría reportar errores (o el servidor web, verifique los registros de errores)
- no arregles lo que no está roto - si no te faltan conexiones, simplemente déjalas en paz.
Servicio de limpieza automática;)
O configura su servidor mysql estableciendo un tiempo de espera más corto en wait_timeout
y interactive_timeout
mysql> show variables like "%timeout%";
+--------------------------+-------+
| Variable_name | Value |
+--------------------------+-------+
| connect_timeout | 5 |
| delayed_insert_timeout | 300 |
| innodb_lock_wait_timeout | 50 |
| interactive_timeout | 28800 |
| net_read_timeout | 30 |
| net_write_timeout | 60 |
| slave_net_timeout | 3600 |
| table_lock_wait_timeout | 50 |
| wait_timeout | 28800 |
+--------------------------+-------+
9 rows in set (0.00 sec)
Establecer con:
set global wait_timeout=3;
set global interactive_timeout=3;
(y también configurado en su archivo de configuración, para cuando su servidor se reinicie)
Pero está tratando los síntomas en lugar de la causa subyacente:¿por qué están abiertas las conexiones? Si el script PHP terminó, ¿no deberían cerrarse? Asegúrese de que su servidor web no esté utilizando la agrupación de conexiones...