On Thu, Aug 28, 2008 at 08:58:36AM +0200, G??bri M??t?? wrote: > Dear List, > I'm in the process of setting up httpd with ssl. When I want to reload the > config with > pkill -HUP httpd the parent process wouldn't fork the new children, so i > have to kill it with level 9 and start httpd again.
Restart won;t work because of chroot. See http://www.openbsd.org/faq/faq10.html#httpdchroot for some more details. > > The other question is that what does kern.seminfo.semmni mean and what does > it do? After i few httpd restart i had to increase this value, otherwise SSL > won't work. > > Thank You! If you kill http with kill -9 it will never cleanup. Use apachectl stop and then apachectl start for proper restarting. After an apachectl stop you can check with ipcs -s if there are still semaphores allocated to www (it happens once in a while they are not cleaned up up by apache). If so, remove them with ipcrm -s. If yo do that , you won't have to increase semmni. -Otto

