Hi Merton,
> Hi Cyril, > > Yes, I tried "make clean" first before compiling and still the same > problem on 10.04 LTS. Are you compiling on the same machine that is crashing, correct? You cannot mix executables from a more recent box, because openssl, pcre headers will not match the running library. Anyway, it doesn't seem so from your -vv output. Can you recompile without compiler optimizations (CFLAGS="-g -O0" after "make") and trigger a coredump (set "ulimit -c unlimited" before starting haproxy, also see [1])? Then use gdb to create a backtrace and post the output: gdb /path/to/application /path/to/corefile (gdb) $ backtrace full Also see [1]. Thanks, Lukas [1] http://www.cyberciti.biz/tips/linux-core-dumps.html

