| | 9 | * 15:50 SC: Restored apache configuration on ippc01, c02, and c03 and gracefully restarted apache there. More reasonable number of active connections now. |
| | 10 | * 15:55 SC: Changed the configuration of ippdb00 to allow up to 1300 connections: 1300 = 10 apache clients * 128 connections + 20 extra-connections. I haven't restarted the mysql server though: |
| | 11 | {{{ |
| | 12 | mysql> show variables like "max_connections"; |
| | 13 | +-----------------+-------+ |
| | 14 | | Variable_name | Value | |
| | 15 | +-----------------+-------+ |
| | 16 | | max_connections | 1024 | |
| | 17 | +-----------------+-------+ |
| | 18 | 1 row in set (0.00 sec) |
| | 19 | |
| | 20 | mysql> set global max_connections = 1300; |
| | 21 | Query OK, 0 rows affected (0.02 sec) |
| | 22 | |
| | 23 | mysql> show variables like "max_connections"; |
| | 24 | +-----------------+-------+ |
| | 25 | | Variable_name | Value | |
| | 26 | +-----------------+-------+ |
| | 27 | | max_connections | 1300 | |
| | 28 | +-----------------+-------+ |
| | 29 | 1 row in set (0.00 sec) |
| | 30 | }}} |