免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1018 | 回复: 0
打印 上一主题 下一主题

当service脚本不能加入chkconfig时的处理 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-21 14:39 |只看该作者 |倒序浏览
我放在/etc/init.d目录下的apache服务脚本httpd在执行chkconfig --add httpd时出现错误:“service httpd does not support chkconfig”
网上搜了一会儿,原来是这样,每个服务脚本的开头的几行里都会有给chkconfig用的注释。表明一些chkconfig用的信息,具体格式可以man chkconfig一下。
比如我后来在httpd文件的开头加入了一下几行,就可以了(看头几个注释行就行了,后面的大家都知道,呵呵):
#!/bin/sh
#
# Startup script for the Apache Web Server
#
# chkconfig: 345 85 15 (这个比较有意思,345代表在设置在那个level中是on的,如果一个都不想on,那就写一个横线"-",比如:chkconfig: - 85 15。后面两个数字当然代表S和K的默认排序号啦)
# description: Apache is a World Wide Web server.  It is used to serve \
#              HTML files and CGI.
# processname: httpd
# pidfile: /var/run/httpd.pid
# config: /usr/local/apache2/conf/httpd.conf (我装东西比较喜欢都放在/usr/local下)

# Source function library.. /etc/rc.d/init.d/functions
if [ -f /etc/sysconfig/httpd ]; then       . /etc/sysconfig/httpdfi
INITLOG_ARGS=""
apachectl=/usr/local/apache2/bin/apachectlhttpd=${HTTPD-/usr/local/apache2/bin/httpd}
prog="httpd"
start(){    ps -ef | grep "$prog" | grep -v "grep" | grep -v "start" > /dev/null    if [ "$?" -eq "1" ]; then        echo -n $"Starting $prog: "        daemon $httpd $OPTIONS        ret=$?        echo        [ "$ret" -eq "0" ] && touch /var/lock/subsys/httpd        return 0    else        echo "httpd running"        return 0    fi}
stop(){    status httpd >/dev/null >&1    ret_status=$?    if [ $ret_status -eq 2 ]; then        rm -f /var/lock/subsys/httpd /var/run/httpd.pid        echo "httpd stopped"        return 0    elif [ $ret_status -eq 3 ]; then        echo "httpd stopped"        return 0    fi    echo -n $"Stopping $prog: "    killproc $httpd    ret=$?    echo    [ "$ret" -eq "0" ] && rm -f /var/lock/subsys/httpd /var/run/httpd.pid    return 0}
case "$1" in    start)       start       ;;    stop)       stop       ;;    status)       status httpd       ;;    restart)       stop       sleep 2       start       ;;    *)       echo $"Usage: $prog {start|stop|restart|status}"       exit 1esac

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/88421/showart_2056828.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP