I am wondering if anyone has a working startup script (/etc/init.d/varnish) for Varnishd that works on Ubuntu Hardy. It should set a pid file so it can be monitored. I have been looking all over Google but have yet to find something that works without hacking which I don't have time to do for a few days.

link|improve this question

50% accept rate
feedback

2 Answers

check out the debian package for varnish (packages.debian.org) the one from the lenny backports works well for me

reminder: .deb packages can be unpacked by using 'ar -x' and the file you're searching is in data.tar.gz (? or sth like that), just unpack it and go to etc/init.d/
voila!

link|improve this answer
feedback

Here's the Ubuntu/Lucid script I am using:

#! /bin/sh

### BEGIN INIT INFO
# Provides:          varnish
# Required-Start:    $local_fs $remote_fs $network
# Required-Stop:     $local_fs $remote_fs $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start HTTP accelerator
# Description:       This script provides a server-side cache
#                    to be run in front of a httpd and should
#                    listen on port 80 on a properly configured
#                    system
### END INIT INFO

# Source function library
. /lib/lsb/init-functions

NAME=varnishd
DESC="HTTP accelerator"
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/varnishd
PIDFILE=/var/run/$NAME.pid

test -x $DAEMON || exit 0

# Include varnish defaults if available
if [ -f /etc/default/varnish ] ; then
        . /etc/default/varnish
fi

# Open files (usually 1024, which is way too small for varnish)
ulimit -n ${NFILES:-131072}

# Maxiumum locked memory size for shared memory log
ulimit -l ${MEMLOCK:-82000}

# If $DAEMON_OPTS is not set at all in /etc/default/varnish, use minimal useful
# defaults (Backend at localhost:8080, a common place to put a locally
# installed application server.)
DAEMON_OPTS=${DAEMON_OPTS:--b localhost}

case "$1" in
    start)
        output=$(/bin/tempfile -s.varnish)
        log_daemon_msg "Starting $DESC" 
        log_progress_msg $NAME
                if start-stop-daemon \
           --start --quiet --pidfile ${PIDFILE} --exec ${DAEMON} -- \
                   -P ${PIDFILE} ${DAEMON_OPTS} > ${output} 2>&1; then
            log_end_msg 0
        else
            log_end_msg 1
            cat $output
            exit 1
        fi
        rm $output
        ;;
    stop)
        log_daemon_msg "Stopping $DESC"
        log_progress_msg $NAME
        if start-stop-daemon \
           --stop --quiet --pidfile $PIDFILE --retry 10 \
           --exec $DAEMON; then
            log_end_msg 0
        else
            log_end_msg 1
        fi
            ;;
    reload)
        log_daemon_msg "Reloading $DESC"
        log_progress_msg $NAME
        if /usr/share/varnish/reload-vcl -q; then
            log_end_msg 0
        else
            log_end_msg 1
        fi
        ;;
    status)
        status_of_proc -p "${PIDFILE}" "${DAEMON}" "${NAME}"
        ;;
    restart|force-reload)
        $0 stop
        $0 start
            ;;
    *)
            log_success_msg "Usage: $0 {start|stop|restart|force-reload}"
            exit 1
        ;;
esac

exit 0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.