Created
August 1, 2016 07:41
-
-
Save pi-aej/371db2eec60c250ebbe4a5072d36f5fd to your computer and use it in GitHub Desktop.
Start dotnet core app as background service in ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: kestrel | |
# Required-Start: $local_fs $network $named $time $syslog | |
# Required-Stop: $local_fs $network $named $time $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Description: Script to run asp.net 5 application in the background | |
### END INIT INFO | |
WWW_USER=<USERNAME> | |
DNXRUNTIME=<PATH_TO_RUNTIME> #/home/$WWW_USER/.k/runtimes/kre-mono.1.0.0-beta3/bin/k | |
APPROOT=<PATH_TO_APPLICATION> #/home/$WWW_USER/vNext/mvc/HelloMvc | |
PIDFILE=$APPROOT/kestrel.pid | |
LOGFILE=$APPROOT/kestrel.log | |
# fix issue with DNX exception in case of two env vars with the same name but different case | |
TMP_SAVE_runlevel_VAR=$runlevel | |
unset runlevel | |
start() { | |
if [ -f $PIDFILE ] && kill -0 $(cat $PIDFILE); then | |
echo 'Service already running' >&2 | |
return 1 | |
fi | |
echo 'Starting service...' >&2 | |
#cd $APPROOT | |
#$DNXRUNTIME restore | |
su -c "start-stop-daemon -SbmCv -x /usr/bin/nohup -p \"$PIDFILE\" -d \"$APPROOT\" -- \"$DNXRUNTIME\" run &> \"$LOGFILE\"" $WWW_USER | |
echo 'Service started' >&2 | |
} | |
stop() { | |
if [ ! -f "$PIDFILE" ] || ! kill -0 $(cat "$PIDFILE"); then | |
echo 'Service not running' >&2 | |
return 1 | |
fi | |
echo 'Stopping service...' >&2 | |
start-stop-daemon -K -p "$PIDFILE" | |
rm -f "$PIDFILE" | |
echo 'Service stopped' >&2 | |
} | |
case "$1" in | |
start) | |
start | |
;; | |
stop) | |
stop | |
;; | |
restart) | |
stop | |
start | |
;; | |
*) | |
echo "Usage: $0 {start|stop|restart}" | |
esac | |
export runlevel=$TMP_SAVE_runlevel_VAR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can you give a little blurb on how to use this? Where it goes, etc?