
17 Jul
2007
17 Jul
'07
5:14 p.m.
You could also try setting MaxRequestsPerChild in httpd.conf to "0" this will prevent the process from being restarted after X requests. The only disadvantages are:
Setting MaxRequestsPerChild to a non-zero limit has two beneficial effects:
- it limits the amount of memory that process can consume by (accidental) memory leakage; - by giving processes a finite lifetime, it helps reduce the number of processes when the server load reduces.
So you might want to schedule an Apache service restart maybe once a week, once a day depending on how tidy OTRS is with memory usage. Steve