目前共有6篇帖子。
![]() |
真叫人头疼
|
![]() |
查了原因是内存不足,系统直接杀掉服务器进程。
巨大八爪鱼:apache是httpd进程因内存不足被linux内核强制终止,mysql是超过了最大连接数151拒绝连接。
[查看詳情]
|
![]() |
抱
![]() ![]() |
![]() |
https://www.jb51.net/article/253704.htm
我把mysql的最大连接数由默认的151改成2000了,不知道能不能解决问题。 Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 8 Server version: 10.5.22-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> show variables like "max_connections"; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 2000 | +-----------------+-------+ 1 row in set (0.001 sec) ![]() ![]() |