1.

How To Find Httpd.conf File If You Don’t Know Installation Location?

Answer»

In Linux, you can use find COMMAND.

LET’s assume, you know it must be in /apps file SYSTEM then you can use the following command.

find /apps -NAME httpd.conf

But if you are not sure on which file system then you can do find on / file system but keep it in mind it may take a long time based on the OVERALL file system size.

find / -name httpd.conf

In Linux, you can use find command.

Let’s assume, you know it must be in /apps file system then you can use the following command.

find /apps -name httpd.conf

But if you are not sure on which file system then you can do find on / file system but keep it in mind it may take a long time based on the overall file system size.

find / -name httpd.conf



Discussion

No Comment Found