Skip to content

Instantly share code, notes, and snippets.

@HostOnNet
Created December 1, 2017 04:53
Show Gist options
  • Save HostOnNet/1988a5fa3210c759244309190b9dbfe7 to your computer and use it in GitHub Desktop.
Save HostOnNet/1988a5fa3210c759244309190b9dbfe7 to your computer and use it in GitHub Desktop.
Red 5 CentOS Init Script
#!/bin/sh
# Startup script for Red5
# chkconfig: 2345 95 55
# description: Red5 Server
# processname: red5
PROG=red5
RED5_HOME=/opt/red5-server
DAEMON=$RED5_HOME/$PROG.sh
PIDFILE=/var/run/$PROG.pid
# Source function library
. /etc/rc.d/init.d/functions
[ -r /etc/sysconfig/red5 ] && . /etc/sysconfig/red5
RETVAL=0
case "$1" in
start)
echo -n $"Starting $PROG: "
cd $RED5_HOME
$DAEMON >/dev/null 2>/dev/null &
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
echo $! > $PIDFILE
touch /var/lock/subsys/$PROG
fi
[ $RETVAL -eq 0 ] && success $"$PROG startup" || failure $"$PROG startup"
echo
;;
stop)
echo -n $"Shutting down $PROG: "
killproc -p $PIDFILE
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$PROG
;;
restart)
$0 stop
$0 start
;;
status)
status $PROG -p $PIDFILE
RETVAL=$?
;;
*)
echo $"Usage: $0 {start|stop|restart|status}"
RETVAL=1
esac
exit $RETVAL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment