Apache:读取服务 httpd 上的信息时出错:没有此文件或目录

Apache:读取服务 httpd 上的信息时出错:没有此文件或目录

我在运行 Amazon Linux Distribute 的 Amazon EC2 上从源代码编译并安装了 Apache。安装后,我发出以下命令:

$ sudo chkconfig --add httpd

我收到错误:

error reading information on service httpd: No such file or directory

我该如何修复它?

答案1

使用locate命令找到您的Apache。同时检查重新启动Apache并检查它是否显示在进程列表中,还要检查httpd -S命令。

您可以尝试这个替代方案:

在您的脚本中添加以下几行:

#chkconfig: 345 80 20 
#description: example script

345 - 级别 80 - 启动优先级 20 - 停止优先级

这些是示例值,您可以更改它们。

使用命令添加脚本:chkconfig --add

相关内容