Daniel -- I usually use /etc/rc.d/init.d/httpd restart (for the init script) although there is probably a command that allows you to do this without remembering the directory. I think you are using the wrong syntax for find; I would try find / -name httpd -print 2>/dev/null with the last part to discard errors for directories you cannot read. The command 'which httpd' probably comes because /usr/sbin (the default location for the binary) is not on your search path. I hope this helps. -- Phil