linux下怎样打开apache配置文件

2024-12-27 17:49:38
推荐回答(2个)
回答1:

find / -name httpd
find / -name apachectl
find / -name httpd.conf
可以通过阅读httpd.conf找到ServerRoot关键字 ,ServerRoot之后的引号里的内容就是系统安装目录了。比如REDHAT LINUX过RPM方式安装的APACHE的默认目录为:/etc/httpd,则你就可以其httpd.conf里有这条指令:ServerRoot "/etc/httpd"。

回答2:

vim /etc/httpd/conf/httpd.conf