博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uwsgi service 设置
阅读量:6715 次
发布时间:2019-06-25

本文共 1541 字,大约阅读时间需要 5 分钟。

#! /bin/sh# chkconfig: 2345 55 25# Description: Startup script for uwsgi webserver on Debian. Place in /etc/init.d and# run 'update-rc.d -f uwsgi defaults', or use the appropriate command on your# distro. For CentOS/Redhat run: 'chkconfig --add uwsgi' ### BEGIN INIT INFO# Provides:          uwsgi# Required-Start:    $all# Required-Stop:     $all# Default-Start:     2 3 4 5# Default-Stop:      0 1 6# Short-Description: starts the uwsgi web server# Description:       starts uwsgi using start-stop-daemon### END INIT INFO # Author:   licess# website:  http://lnmp.org PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/binDESC="uwsgi daemon"NAME=yidaDAEMON=/usr/local/bin/uwsgiCONFIGFILE=/etc/$NAME.iniPIDFILE=/var/run/$NAME.pidSCRIPTNAME=/etc/init.d/$NAME set -e[ -x "$DAEMON" ] || exit 0 do_start() {    $DAEMON $CONFIGFILE || echo -n "uwsgi already running"} do_stop() {    $DAEMON --stop $PIDFILE || echo -n "uwsgi not running"    rm -f $PIDFILE    echo "$DAEMON STOPED."} do_reload() {    $DAEMON --reload $PIDFILE || echo -n "uwsgi can't reload"} do_status() {    ps aux|grep $DAEMON} case "$1" in status)    echo -en "Status $NAME: \n"    do_status ;; start)    echo -en "Starting $NAME: \n"    do_start ;; stop)    echo -en "Stopping $NAME: \n"    do_stop ;; reload|graceful)    echo -en "Reloading $NAME: \n"    do_reload ;; *)    echo "Usage: $SCRIPTNAME {start|stop|reload}" >&2    exit 3 ;;esac exit 0uwsgi9090
-- 添加服务chkconfig --add yida -- 设置开机启动chkconfig yida on

转载于:https://www.cnblogs.com/jeffsun/p/3696910.html

你可能感兴趣的文章
头文件algorithm中的常用函数
查看>>
一套解决方案,多个项目
查看>>
Qt3D Shader
查看>>
Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead的解决的方法
查看>>
dede文章插入分页符不起作用,编辑器中出现分页符,导致文章显示不全
查看>>
【POJ3377】Ferry Lanes 最短路
查看>>
sqlplus登录提示:ORA-12162:TNS:net service name is incorrectly specified错误
查看>>
Java Scanner 类
查看>>
zoj 1655 单源最短路 改为比例+最长路
查看>>
impulse
查看>>
Deep Learning 教程翻译
查看>>
贪心算法
查看>>
SDL示例一:实现七段数码管的显示
查看>>
Hive权限之审计
查看>>
Redis的安装与使用
查看>>
谈谈站桩
查看>>
容器、应用服务器和web服务器的区别
查看>>
分析统计<第三篇>
查看>>
javascript--- HTML DOM
查看>>
Exactly-once Spark Streaming from Apache Kafka
查看>>