1> 查看一下/etc/init.d/下是否存在httpd这个服务

ls /etc/init.d/ | grep httpd 如果没有执行下一步

2>将自己安装目录下的apachect1复制到该目录下并改为httpd

cp /home/houqingdong/http-exe/bin/apachect1 /etc/init.d/httpd 注:红色为自己的安装目录

3>执行 chkconfig --add httpd 目的是想新增所制定的系统服务 但是会出现以下警告:

linux将apache设置为系统服务和开机自启

这里说的是httpd服务不支持chkconfig , 添加支持: vi /etc/init.d/httpd 在 #!/bin/sh 下添加这两句:

#chkconfig:345 85 15

#description:Start and stop the Apache HTTP Server 最终结果为:

linux将apache设置为系统服务和开机自启

4> 执行: chkconfig --add httpd

chkconfig httpd on 就可以添加成功了

5>查看一下是否添加成功:

chkconfig --list httpd

linux将apache设置为系统服务和开机自启

相关文章:

  • 2021-06-04
  • 2021-08-24
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
猜你喜欢
  • 2021-06-07
  • 2022-01-15
  • 2021-04-04
  • 2021-10-24
  • 2021-11-18
  • 2021-11-24
相关资源
相似解决方案