CentOS的init.d芹菜脚本?

时间:2010-10-21 16:22:43

标签: centos celery

我正在编写一个使用芹菜的Django应用程序。到目前为止,我一直在Ubuntu上运行,但我正在尝试部署到CentOS。

Celery为基于Debian的发行版提供了一个很好的init.d脚本,但它不适用于基于RedHat的发行版,如CentOS,因为它使用了start-stop-daemon。有没有人使用相同的变量约定RedHat,所以我可以重用我的/ etc / default / celeryd文件?

2 个答案:

答案 0 :(得分:4)

在这里解决得更好:

Celery CentOS init script

你应该善于使用那个

答案 1 :(得分:3)

由于我没有得到答案,我试图自己动手:

#!/bin/sh
#
# chkconfig: 345 99 15
# description: celery init.d script

# Defines the following variables
# CELERYD_CHDIR
# DJANGO_SETTINGS_MODULE
# CELERYD
# CELERYD_USER
# CELERYD_GROUP
# CELERYD_LOG_FILE

CELERYD_PIDFILE=/var/run/celery.pid

if test -f /etc/default/celeryd; then
    . /etc/default/celeryd
fi


# Source function library.
. /etc/init.d/functions

# Celery options
CELERYD_OPTS="$CELERYD_OPTS -f $CELERYD_LOG_FILE -l $CELERYD_LOG_LEVEL"

if [ -n "$2" ]; then
    CELERYD_OPTS="$CELERYD_OPTS $2"
fi

start () {
        cd $CELERYD_CHDIR
        daemon --user $CELERYD_USER --pidfile $CELERYD_PIDFILE $CELERYD $CELERYD_OPTS &
}

stop () {
        if [[ -s $CELERYD_PIDFILE ]] ; then
            echo "Stopping Celery"
            killproc -p $CELERYD_PIDFILE python
            echo "done!"
            rm -f $CELERYD_PIDFILE
        else
            echo "Celery not running."
        fi    
}

check_status() {
    status -p $CELERYD_PIDFILE python
}


case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    restart)
        stop
        start
        ;;
    status)
        check_status
        ;;
    *)
        echo "Usage: $0 {start|stop|restart|status}"
        exit 1
        ;;
esac