LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Where is the Apache Include Dir?? op RedHat9?? (https://www.linuxquestions.org/questions/linux-software-2/where-is-the-apache-include-dir-op-redhat9-133903/)

wiggel 01-12-2004 02:41 AM

Where is the Apache Include Dir?? op RedHat9??
 
I have a very short question.

Where do i find the Apache include dir on RedHat 9

Thanx,

Bart

Hertattack 01-12-2004 11:24 AM

If by the include dir you mean the config dir, it is probably somewhere in /etc (/etc/httpd or /etc/apache) if it is not there you can probably find it by examening the startup script for apache.

The startup script should be somewhere in /etc/init.d or /etc/rc.d by examining the directives used to start apache you should be able to find the config dir.

If this does not work you kan check your entire filesystem using either locate or find.

locate <filename>
locate apache.conf
locate *.conf

find / -type f -name "*.conf" (this uses regex to find something, sometimes grep is easier)
find / -type f | grep "apache.conf"
find / -type f | grep ".conf"

Be carefull with find if you are using a production system, it generates A LOT of disk activity...

Good luck,
Marcel


All times are GMT -5. The time now is 10:06 AM.