• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How to locate apache folder on linux?

CrackaLackaZe

Senior member
I know that apache 1.3 is running on the server, but I can't find it anywhere including the usr/local directory. Does anyone know where it might be?
 
locate httpd

or

if you're running an RPM based distro

rpm -qa | grep httpd

On my box, this returns httpd-2.0.51-2.9
Take that output and use it as the argument to this

rpm -q --list httpd-2.0.51-2.9

That'll show you where everything is.
 
Back
Top