Ok, another issue setting up my netbook for development: I have httpd installed and running fine, but it doesn't start automatically at boot. I can start it no problem with: service httpd start chkconfig --list httpd gives me: httpd 0ff 1ff 2ff 3ff 4ff 5n 6ff I'm assuming runlevel 5 is the one I should be starting it for, although 'runlevel' just gives me 'unknown''?? The startup script in /etc/rc5.d is S85httpd (85 is the default). This will be started before NetworkManager, etc., but I wouldn't have thought that would be a problem?? I can't find any error messages in any of the logs, but I'm not really sure where I should be looking. Can someone help me figure out why httpd doesn't start on boot? Thanks, Bernie
Linpus doesn't use the standard sysv startup, so chkconfig doesn't work. Use a more "bsd"ly way -- add it to /etc/rc.local
Ok, I could do that, but then how do I get it to shut down automatically when I shut down? Is it ok to just rely on it receiving SIGKILL or SIGTERM or whatever? I'm running mysqld as well, and don't want to risk any data corruption.