Varnish running in foreground but fails to run as service/daemon

Want to help support this blog? Try out Oh Dear, the best all-in-one monitoring tool for your entire website, co-founded by me (the guy that wrote this blogpost). Start with a 10-day trial, no strings attached.

We offer uptime monitoring, SSL checks, broken links checking, performance & cronjob monitoring, branded status pages & so much more. Try us out today!

Profile image of Mattias Geniar

Mattias Geniar, November 27, 2011

Follow me on Twitter as @mattiasgeniar

I had an annoying problem last week that turned out to be my own silly mistake. But since I couldn’t quite find a lot of information on it, I’ll sum it up here so I’ll never forget it again.

If I started a Varnish service in foreground mode, it worked like a charm – if I tried it via the “service varnish start” or the init.d script, it kept failing. Stracing couldn’t quite tell me what I was missing at first.

# varnishd -F -f /usr/local/etc/varnish/default.vcl

socket(): Address family not supported by protocol child (5214)

Started Child (5214) said Child starts Child (5214) said SMF.s0

mmap’ed 104857600 bytes of 104857600

^CManager got SIGINT => CTRL+C

killed Stopping Child

So foreground runs like a charm.

Yet the service kept failing on me.

# **service varnish start

** Starting Varnish Cache:                                    [FAILED]

And when stracing, there’s no real clue as to why it failed.

# **strace -e trace=file service varnish star

** execve("/sbin/service”,

[“service”, “varnish”, “start”], [/* 18 vars */]) = 0

access("/etc/ld.so.preload”, R_OK) = -1 ENOENT (No such file or directory)

open("/etc/ld.so.cache”, O_RDONLY) = 3

open("/lib64/libtinfo.so.5”, O_RDONLY) = 3

open("/lib64/libdl.so.2”, O_RDONLY) = 3

open("/lib64/libc.so.6”, O_RDONLY) = 3

open("/dev/tty”, O_RDWR|O_NONBLOCK) = 3

open("/usr/lib/locale/locale-archive”, O_RDONLY) = 3

open("/proc/meminfo”, O_RDONLY) = 3

stat("/root”, {st_mode=S_IFDIR|0550, st_size=4096, …}) = 0 stat(".",

{st_mode=S_IFDIR|0550, st_size=4096, …}) = 0

open("/usr/lib64/gconv/gconv-modules.cache”, O_RDONLY) = 3

open("/sbin/service”, O_RDONLY) = 3

open("/etc/init.d/functions”, O_RDONLY) = 3

-– SIGCHLD (Child exited) @ 0 (0) -– stat("/etc/sysconfig/i18n”,

{st_mode=S_IFREG|0644, st_size=47, …}) = 0 open("/dev/null”,

O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3 open("/etc/profile.d/lang.sh”,

O_RDONLY) = 3

stat("/root/.i18n”, 0x7fffa8819680) = -1 ENOENT (No such file or directory)

stat("/etc/sysconfig/init”, {st_mode=S_IFREG|0644, st_size=1153, …}) = 0

open("/etc/sysconfig/init”, O_RDONLY) = 3

open("/usr/share/locale/locale.alias”, O_RDONLY) = 3

open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES/initscripts.mo”,

O_RDONLY) = -1 ENOENT (No such file or directory)

open("/usr/share/locale/en_US.utf8/LC_MESSAGES/initscripts.mo”,

O_RDONLY) = -1 ENOENT (No such file or directory)

open("/usr/share/locale/en_US/LC_MESSAGES/initscripts.mo”, O_RDONLY) =

-1 ENOENT (No such file or directory)

open("/usr/share/locale/en.UTF-8/LC_MESSAGES/initscripts.mo”,

O_RDONLY) = -1 ENOENT (No such file or directory)

open("/usr/share/locale/en.utf8/LC_MESSAGES/initscripts.mo”, O_RDONLY)

= -1 ENOENT (No such file or directory)

open("/usr/share/locale/en/LC_MESSAGES/initscripts.mo”, O_RDONLY) = -1

ENOENT (No such file or directory)

-– SIGCHLD (Child exited) @ 0 (0) -–

-– SIGCHLD (Child exited) @ 0 (0) -–

chdir("/") = 0

stat("/etc/init.d/varnish”, {st_mode=S_IFREG|0755, st_size=2851, …})

= 0 stat(".", {st_mode=S_IFDIR|0555, st_size=4096, …}) = 0

stat("/sbin/env”, 0x7fffa881a600) = -1 ENOENT (No such file or directory)

stat("/usr/sbin/env”, 0x7fffa881a600) = -1 ENOENT (No such file or directory)

stat("/bin/env”, {st_mode=S_IFREG|0755, st_size=23832, …}) = 0

stat("/bin/env”, {st_mode=S_IFREG|0755, st_size=23832, …}) = 0

access("/bin/env”, X_OK) = 0

stat("/bin/env”, {st_mode=S_IFREG|0755, st_size=23832, …}) = 0

access("/bin/env”, R_OK) = 0

stat("/bin/env”, {st_mode=S_IFREG|0755, st_size=23832, …}) = 0

stat("/bin/env”, {st_mode=S_IFREG|0755, st_size=23832, …}) = 0

access("/bin/env”, X_OK) = 0

stat("/bin/env”, {st_mode=S_IFREG|0755, st_size=23832, …}) = 0

vaccess("/bin/env”, R_OK) = 0

Starting Varnish Cache: [FAILED]

-– SIGCHLD (Child exited) @ 0 (0) -–

What the strace doesn’t show, is that when you start Varnish as a service, it reads an additional config file: /etc/sysconfig/varnish on CentOS/RHEL or /etc/default/varnish on Ubuntu/Debian systems. Chances are, if you can run Varnish in the foreground but not as a service, and you’re referring to the exact same VCLs, your problem is somewhere in the default configuration files that determine your service.

My problem turned out to be a missing directive in /etc/sysconfig/varnish that I overlooked.



Want to subscribe to the cron.weekly newsletter?

I write a weekly-ish newsletter on Linux, open source & webdevelopment called cron.weekly.

It features the latest news, guides & tutorials and new open source projects. You can sign up via email below.

No spam. Just some good, practical Linux & open source content.