On Thu, Dec 11, 2014 at 12:03 PM, David Adams <[email protected]> wrote: > I tried this. I ran it like this: > > /usr/local/sbin/haproxy -db -f /etc/haproxy/haproxy.cfg > > which obviously didn't return as the process ran. Then at the crashtime (a > few seconds past 17:00), that process terminated and the terminal just > showed: > > aborted >
Interesting, when running haproxy from the CLI, after it dies can you send the output of: # echo $? Which should print the return code. If it was killed by another process we could at least find the signal that was sent. Sounds like it may have been SIGABRT. You may also want to run strace as suggested by Jerry about a minute before it crashes to see if you can capture the final moments there too.

