swijaya0101
05-26-2002, 11:37 PM
hello,
i type this command: find . -type f -name "apachectl"
but how come it does not return me anything ???
have been searching for this file on my server ... but still could not find it ...
anybody knows what happenned ???
thanks
clocker1996
05-27-2002, 12:00 AM
how about:
find / | grep apachectl
Shyne
05-27-2002, 01:38 AM
If you never find it, then get the binary from apache.org. Otherwise compile your own.
priyadi
05-27-2002, 05:10 AM
Some binary distributions of Apache don't ship with apachectl, but instead they use their own customized script.
clocker1996
05-27-2002, 07:40 AM
Originally posted by Shyne
If you never find it, then get the binary from apache.org. Otherwise compile your own.
binary of what? the actual file?
i hope you're not talking about the actual file 'apachectl'
are you doing this as root? If not - you should be
try "find / -name apachectl"
it *might* be in /sbin or /usr/sbin ... also a simple...
/etc/rc.d/init.d/httpd restart would probly work
-neil
mwatkins
05-29-2002, 01:41 AM
or in /usr/local/sbin (freeBSD - I did not note a mention of which *nix is being run)