码迷,mamicode.com
首页 > 其他好文 > 详细

Django启停操作脚本

时间:2018-01-16 18:14:03      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:pat   python   /etc   mon   $2   gre   cloud   star   rest   

#!/bin/sh

#Author:Aaron

. /etc/init.d/functions

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/node/bin

base_dir=$(dirname $0)

start() {

    echo "Start cloud......"

    ps -ef | grep manage.py | grep 9999

    status=`echo $?`

    if [ $status -eq 0 ];then

        echo "hcloud is running........"

    else

        daemon python $base_dir/manage.py runserver 0.0.0.0:9999 &>> /tmp/hcloud.log 2>&1 &

        sleep 3

        ps -ef | grep manage.py | grep 9999 

        start_status=`echo $?`

        if [ $start_status -eq 0 ];then

            echo "hcloud start sucess......."

        else

            echo "hcloud start fail......."

        fi

    fi

}


stop() {

    echo "Stop hcloud......"

    ps aux | grep -E 'manage.py' | grep 9999 |grep -v grep | awk '{print $2}' | xargs kill -9 &> /dev/null

    ret=$?

    if [ $ret -eq 0 ]; then

        echo_success

        echo

    else

        echo_failure

        echo

    fi

}


restart(){

    stop

    start

}


case "$1" in    

  start)                

        start           

        ;;              

  stop)                         

        stop                    

        ;;                      


  restart)      

        restart         

        ;;              

            

  *)                    

        echo $"Usage: $0 {start|stop|restart}"

        exit 2          

esac


Django启停操作脚本

标签:pat   python   /etc   mon   $2   gre   cloud   star   rest   

原文地址:http://blog.51cto.com/aaronsa/2061618

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!