系统相关
首页 > 系统相关> > linux – 丢失的httpd.conf文件位于apache

linux – 丢失的httpd.conf文件位于apache

作者:互联网

如何找到httpd.conf文件的位置?

我正在从Amazon Web Services EC2(弹性计算云)运行Ubuntu Linux服务器,但我找不到我的Apache配置.

解决方法:

获取运行Apache的路径

$ps -ef | grep apache
apache   12846 14590  0 Oct20 ?        00:00:00 /usr/sbin/apache2

在路径中附加-V参数

$/usr/sbin/apache2 -V | grep SERVER_CONFIG_FILE
-D SERVER_CONFIG_FILE="/etc/apache2/apache2.conf"

参考:
http://commanigy.com/blog/2011/6/8/finding-apache-configuration-file-httpd-conf-location

标签:linux,amazon-ec2,ubuntu,apache,httpd-conf
来源: https://codeday.me/bug/20190916/1806812.html