uwsgi加入系统服务

背景

网上找了一圈,没有把uswgi加入系统服务的脚本,我来补充一个吧。

实践基于系统CentOS6,但不限于此。

uWSGI是什么

uWSGI是一个Web服务器,它实现了WSGI协议、uwsgi、http等协议。Nginx中HttpUwsgiModule的作用是与uWSGI服务器进行交换。

安装

uWSGI 的安装很简单:
pip install uwsgi

服务脚本内容

vi /etc/rc.d/init.d/uwsgi

#!/bin/bash
# Comments to support chkconfig on Linux
# chkconfig: 35 85 15
# description: uwsgi is an HTTP(S) server, HTTP(S) reverse
#
# author     null
#
# chmod +x /etc/rc.d/init.d/uwsgi
# chkconfig --add uwsgi
# chkconfig --level 2345 uwsgi on
#
# Change History:
# date        author          note
# 2016/11/16  null  create, refer to nginx, and http://uwsgi-docs.readthedocs.io/en/latest/Management.html

set -e
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="uwsgi daemon"
NAME=uwsgi
DAEMON=/usr/bin/$NAME
SCRIPTNAME=/etc/init.d/$NAME
CONFFILE=/opt/nginx/conf/uwsgi.ini
PIDFILE=/var/run/uwsgi.pid
 
test -x $DAEMON || exit 0

d_start(){
    $DAEMON --ini $CONFFILE || echo -n " already running"
}

d_stop() {
    $DAEMON --stop $PIDFILE || echo -n " not running"
}

d_reload() {
    $DAEMON --reload $PIDFILE || echo -n " counld not reload"
}

d_freload() {
    $DAEMON --die-on-term $PIDFILE || echo -n " counld not force reload"
}

case "$1" in
start)
    echo -n "Starting $DESC:$NAME"
    d_start
    echo "."
;;
stop)
    echo -n "Stopping $DESC:$NAME"
    d_stop
    echo "."
;;
reload)
    echo -n "Reloading $DESC configuration..."
    d_reload
    echo "reloaded."
;;
force_reload)
    echo -n "The official provision of the parameters, tested and found not to support..."
    # d_freload
    # echo "force reloaded."
    echo "."
;;
restart)
    echo -n "Restarting $DESC: $NAME"
    d_stop
    sleep 2
    d_start
    echo "."
;;
*)
    echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force_reload}" >&2
    exit 3
;;
esac
 
exit 0

服务管理

chmod +x /etc/rc.d/init.d/uwsgi

chkconfig --add uwsgi

chkconfig --level 2345 uwsgi on

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

沉思的归零者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值