热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Django启停操作脚本

#!binsh#Author:Aaron.etcinit.dfunctionsexportPATHusrlocalsbin:usrlocalbin:sbin:bin:usrsbin

#!/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



推荐阅读
author-avatar
有点难
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有