Nombre de fichiers Apache excessif ?
Bonjour,
J'essaye d'optimiser mon serveur linux, et je me suis aperçu que j'avais énormément de fichier apache d'ouvert a l'état "LISTEN", donc en attente d'un éventuel client ?
Code:
1 2
| lsof -i -n -P | grep http | grep LISTEN | wc -l
886 |
Exemple de fichier ouverts:
Code:
1 2 3 4
| httpd 32510 nobody 3u IPv6 940 TCP *:80 (LISTEN)
httpd 32510 nobody 5u IPv6 949 TCP *:443 (LISTEN)
httpd 32511 nobody 3u IPv6 940 TCP *:80 (LISTEN)
httpd 32511 nobody 5u IPv6 949 TCP *:443 (LISTEN) |
Pour les ESTABLISHED :
Code:
1 2
| lsof -i -n -P | grep http | grep ESTABLISHED | wc -l
132 |
Le nombre de fichiers a l'état LISTEN n'est t'il pas excessif ?
Merci beaucoup pour votre aider