Return to Snippet

Revision: 4022
at October 18, 2007 11:05 by drewr


Initial Code
#!/bin/sh

HTTPD=/usr/local/apache2/bin/httpd
CONF=/bmi/httpd-php/conf/httpd.conf
                         
exec 2>&1
echo starting...
ulimit -v 100000
exec $HTTPD -f $CONF -D NO_DETACH

Initial URL


Initial Description


Initial Title
Preventing Apache memory leaks with ulimit

Initial Tags
unix, apache

Initial Language
Bash