service httpd does not support chkconfig

pache 作为linux启动就运行服务程序

cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd
但是在执行:
chkconfig --add httpd

        chkconfig httpd on

的时候出现错误:service httpd does not support chkconfig
解决办法:
打开 vi /etc/rc.d/init.d/httpd 添加(#!/bin/sh下面)

#chkconfig: 2345 10 90
#description: Activates/Deactivates Apache Web Server

加上上面这两行就可以,#必须有

其中:2345是设为要启动的运行级别,10是启动优先级,90是杀死进程的优先级,谁优先谁先挂的意思。

本文转自http://blog.sina.com.cn/s/blog_5d15305b0101ceft.html

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。