编译和安装源代码后如何配置 Apache 初始化脚本?

编译和安装源代码后如何配置 Apache 初始化脚本?

我使用这个脚本安装了 Apachehttps://gist.github.com/Benedikt1992/e88c2114fee15422a4eb

系统是新安装的CentOS 6.7最小系统。

安装后,我可以在 /usr/local/apache2/ 中找到 apache,但无法使用 启动 apacheservice或启用启动时启动chkconfig。我缺少什么?

答案1

通常,当我在 centOS 上安装 apache 时,它​​会在/etc/httpd/conf/检查中安装,否则执行find / -name httpdfind / -name apache.另外,如果我想现在启动它,您可以使用sudo systemctl httpd start/stophttpd -k start或启动/停止它apachectl start

答案2

Apache 2.4 不使用初始化脚本。正如 Saul Ortega 所说,apachectl 脚本可用于启动服务器。它还可以用作标准 SysV 初始化脚本。更多信息可以在 apache 文档中找到http://httpd.apache.org/docs/2.4/en/invoking.html

相关内容