debian: switch to uwsgi (#41204)

This commit is contained in:
Frédéric Péters 2020-03-31 20:39:40 +02:00
parent 44afd83770
commit aa22e751d7
5 changed files with 46 additions and 46 deletions

3
debian/control vendored
View File

@ -28,7 +28,8 @@ Depends: ${misc:Depends},
python-psycopg2, python-psycopg2,
python-django-mellon, python-django-mellon,
python-xstatic-select2, python-xstatic-select2,
gunicorn, uwsgi,
uwsgi-plugin-python,
graphicsmagick graphicsmagick
Recommends: nginx Recommends: nginx
Suggests: postgresql Suggests: postgresql

26
debian/uwsgi.ini vendored Normal file
View File

@ -0,0 +1,26 @@
[uwsgi]
auto-procname = true
procname-prefix-spaced = welco
plugin = python
module = welco.wsgi:application
http-socket = /run/welco/welco.sock
chmod-socket = 666
vacuum = true
master = true
processes = 5
harakiri = 120
enable-threads = true
buffer-size = 32768
py-tracebacker = /run/welco/py-tracebacker.sock.
stats = /run/welco/stats.sock
ignore-sigpipe = true
if-file = /etc/welco/uwsgi-local.ini
include = /etc/welco/uwsgi-local.ini
endif =

47
debian/welco.init vendored
View File

@ -16,14 +16,12 @@
PATH=/sbin:/usr/sbin:/bin:/usr/bin PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="Multichannel request processing" DESC="Multichannel request processing"
NAME=welco NAME=welco
DAEMON=/usr/bin/gunicorn DAEMON=/usr/bin/uwsgi
RUN_DIR=/run/$NAME RUN_DIR=/run/$NAME
PIDFILE=$RUN_DIR/$NAME.pid PIDFILE=$RUN_DIR/$NAME.pid
LOG_DIR=/var/log/$NAME LOG_DIR=/var/log/$NAME
SCRIPTNAME=/etc/init.d/$NAME SCRIPTNAME=/etc/init.d/$NAME
BIND=unix:$RUN_DIR/$NAME.sock BIND=unix:$RUN_DIR/$NAME.sock
WORKERS=5
TIMEOUT=30
WELCO_SETTINGS_FILE=/usr/lib/$NAME/debian_config.py WELCO_SETTINGS_FILE=/usr/lib/$NAME/debian_config.py
MANAGE_SCRIPT="/usr/bin/$NAME-manage" MANAGE_SCRIPT="/usr/bin/$NAME-manage"
@ -37,17 +35,10 @@ GROUP=$NAME
# Read configuration variable file if it is present # Read configuration variable file if it is present
[ -r /etc/default/$NAME ] && . /etc/default/$NAME [ -r /etc/default/$NAME ] && . /etc/default/$NAME
DAEMON_ARGS=${DAEMON_ARGS:-"--pid $PIDFILE \ DAEMON_ARGS=${DAEMON_ARGS:-"--pidfile=$PIDFILE
--user $USER --group $GROUP \ --uid $USER --gid $GROUP
--daemon \ --ini /etc/$NAME/uwsgi.ini
--access-logfile $LOG_DIR/gunicorn-access.log \ --daemonize /var/log/uwsgi.$NAME.log"}
--log-file $LOG_DIR/gunicorn-error.log \
--bind=$BIND \
--workers=$WORKERS \
--worker-class=sync \
--timeout=$TIMEOUT \
--name $NAME \
$NAME.wsgi:application"}
# Load the VERBOSE setting and other rcS variables # Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh . /lib/init/vars.sh
@ -73,9 +64,7 @@ do_start()
# 0 if daemon has been started # 0 if daemon has been started
# 1 if daemon was already running # 1 if daemon was already running
# 2 if daemon could not be started # 2 if daemon could not be started
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \ start-stop-daemon --start --quiet --user $USER --exec $DAEMON -- \
|| return 1
start-stop-daemon --start --quiet --exec $DAEMON -- \
$DAEMON_ARGS \ $DAEMON_ARGS \
|| return 2 || return 2
} }
@ -90,32 +79,16 @@ do_stop()
# 1 if daemon was already stopped # 1 if daemon was already stopped
# 2 if daemon could not be stopped # 2 if daemon could not be stopped
# other if a failure occurred # other if a failure occurred
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE $DAEMON --stop $PIDFILE
RETVAL="$?"
[ "$RETVAL" = 2 ] && return 2
# Wait for children to finish too if this is a daemon that forks
# and if the daemon is only ever run from this initscript.
# If the above conditions are not satisfied then add some other code
# that waits for the process to drop all resources that could be
# needed by services started subsequently. A last resort is to
# sleep for some time.
start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
[ "$?" = 2 ] && return 2
# Many daemons don't delete their pidfiles when they exit.
rm -f $PIDFILE rm -f $PIDFILE
return "$RETVAL" return 0 # hopefully
} }
# #
# Function that sends a SIGHUP to the daemon/service # Function that sends a SIGHUP to the daemon/service
# #
do_reload() { do_reload() {
# $DAEMON --reload $PIDFILE
# If the daemon can reload its configuration without
# restarting (for example, when it is sent a SIGHUP),
# then implement that here.
#
start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name `basename $DAEMON`
return 0 return 0
} }
@ -151,7 +124,7 @@ case "$1" in
esac esac
;; ;;
status) status)
status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? status_of_proc -p $PIDFILE "$DAEMON" "$NAME" && exit 0 || exit $?
;; ;;
reload|force-reload) reload|force-reload)
# #

View File

@ -1,4 +1,5 @@
debian/welco-manage /usr/bin debian/welco-manage /usr/bin
debian/settings.py /etc/welco debian/settings.py /etc/welco
debian/uwsgi.ini /etc/welco
debian/debian_config.py /usr/lib/welco debian/debian_config.py /usr/lib/welco
debian/welco.service /lib/systemd/system debian/welco.service /lib/systemd/system

15
debian/welco.service vendored
View File

@ -1,26 +1,25 @@
[Unit] [Unit]
Description=Welco Description=Welco
After=network.target postgresql.service After=network.target syslog.target postgresql.service
Wants=postgresql.service Wants=postgresql.service
[Service] [Service]
Environment=WELCO_SETTINGS_FILE=/usr/lib/%p/debian_config.py Environment=WELCO_SETTINGS_FILE=/usr/lib/%p/debian_config.py
Environment=LANG=C.UTF-8
User=%p User=%p
Group=%p Group=%p
ExecStartPre=/usr/bin/welco-manage migrate_schemas --noinput --verbosity 1 ExecStartPre=/usr/bin/welco-manage migrate_schemas --noinput --verbosity 1
ExecStartPre=/usr/bin/welco-manage collectstatic --noinput ExecStartPre=/usr/bin/welco-manage collectstatic --noinput
ExecStart=/usr/bin/gunicorn \ ExecStart=/usr/bin/uwsgi --ini /etc/%p/uwsgi.ini
--bind unix:/run/%p/%p.sock \
--worker-class=sync \
--workers 5 \
--timeout=30 \
--name %p \
%p.wsgi:application
ExecReload=/bin/kill -HUP $MAINPID ExecReload=/bin/kill -HUP $MAINPID
KillSignal=SIGQUIT
TimeoutStartSec=0 TimeoutStartSec=0
PrivateTmp=true PrivateTmp=true
Restart=on-failure Restart=on-failure
RuntimeDirectory=welco RuntimeDirectory=welco
Type=notify
StandardError=syslog
NotifyAccess=all
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target