CentOS startup scripts

268 views
Skip to first unread message

Vinicius Vollrath

unread,
Oct 9, 2013, 2:36:37 PM10/9/13
to orthan...@googlegroups.com
Hi!

For those who need to start Orthanc in CentOS

# vi /etc/init.d/Orthanc

Paste

#!/bin/bash
# Orthanc daemon
# chkconfig: 345 20 80
# description: Orthanc init script
# processname: Orthanc

DAEMON_PATH="/home/pacsadmin"
DAEMON=Orthanc
LOGDIR="/home/pacsadmin/log"
DAEMONOPTS="--logdir=$LOGDIR Configuration.json"

NAME=Orthanc
DESC="Orthanc DICOM server"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME


case "$1" in
start)
        printf "%-50s" "Starting $NAME..."
        cd $DAEMON_PATH
        PID=`./$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
        if [ -z $PID ]; then
            printf "%s\n" "Fail"
        else
            echo $PID > $PIDFILE
            printf "%s\n" "Ok"
        fi
;;
status)
        printf "%-50s" "Checking $NAME..."
        if [ -f $PIDFILE ]; then
            PID=`cat $PIDFILE`
            if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
printf "%s\n" "Process dead but pidfile exists"
            else
                echo "Running"
            fi
        else
            printf "%s\n" "Service not running"
        fi
;;
stop)
        printf "%-50s" "Stopping $NAME"
            PID=`cat $PIDFILE`
            cd $DAEMON_PATH
        if [ -f $PIDFILE ]; then
            kill -HUP $PID
            printf "%s\n" "Ok"
            rm -f $PIDFILE
        else
            printf "%s\n" "pidfile not found"
        fi
;;

restart)
        $0 stop
        $0 start
;;

*)
        echo "Usage: $0 {status|start|stop|restart}"
        exit 1
esac

# chmod +x /etc/init.d/Orthanc
# chkconfig --level 345 Orthanc on

works fine

Sébastien Jodogne

unread,
Oct 10, 2013, 2:50:05 AM10/10/13
to orthan...@googlegroups.com
Hi Vinicius,

Thanks for this contribution!

Sébastien-


On Wednesday, October 9, 2013 8:36:37 PM UTC+2, Vinicius Vollrath wrote:
Hi!

For those who need to start Orthanc in CentOS
[...]
works fine

erez.z...@globalgen.net

unread,
May 25, 2016, 11:02:21 PM5/25/16
to Orthanc Users
Hi All,

Any ideas about starting in FreeBSD?

Thanks
Erez

Sébastien Jodogne

unread,
May 26, 2016, 3:33:45 AM5/26/16
to Orthanc Users, erez.z...@globalgen.net
There is now an official FreeBSD port:

Please get in touch with the maintainers of this package if you need help.

HTH,
Sébastien-
Reply all
Reply to author
Forward
0 new messages