> On Apr 16, 2016, at 4:44 PM, Reindl Harald <[email protected]> wrote:
> 
> 
> 
> Am 17.04.2016 um 00:38 schrieb Leif Hedstrom:
>>> so what gives you ab -c 5 -n 100https://www.thelounge.net/on your client?
>> 
>> It fails too from that CentOS7 box to your box.
>> 
>>> 
>>> [harry@srv-rhsoft:~]$ ab -c 5 -n 100https://docs.trafficserver.apache.org/
>>> This is ApacheBench, Version 2.3 <$Revision: 1706008 $>
>>> Copyright 1996 Adam Twiss, Zeus Technology Ltd,http://www.zeustech.net/
>>> Licensed to The Apache Software Foundation,http://www.apache.org/
>>> 
>>> Benchmarkingdocs.trafficserver.apache.org
>>> <http://docs.trafficserver.apache.org/>(be patient)...^C
>>> 
>>> Server Software:        ATS/6.2.0
>>> Server Hostname: docs.trafficserver.apache.org
>>> <http://docs.trafficserver.apache.org/>
>>> Server Port:            443
>>> SSL/TLS Protocol:       TLSv1.2,ECDHE-RSA-AES128-GCM-SHA256,2048,128
>> 
>> So it seems your ab works against this CentOS7 box running ATS v6.2.0 ?
> 
> yes
> 
>> What version of OpenSSL did you build ATS with? I am running
>> docs.trafficserver.a.o with OpenSSL v1.0.2g if I recall (latest stable
>> release)
> 
> seems not matter that much since i have this issue for years now and the 
> httpd servers are built in the same environments with the same libraries and 
> don't have that issue


Wonder if it could be one of those -f compiler flags? I’m attaching my 
config.nice that I run on docs.trafficserver, this compiles with ASAN though, 
so you likely want to remove that at least (if you are willing to try).

— leif


#! /bin/sh
#
# Created by configure

CC="/opt/gcc5/bin/gcc"; export CC
CXX="/opt/gcc5/bin/g++"; export CXX
CFLAGS="-fstack-protector -fsanitize=address -fno-omit-frame-pointer"; export 
CFLAGS
CXXFLAGS="-fstack-protector -fsanitize=address -fno-omit-frame-pointer"; export 
CXXFLAGS
CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
"./configure" \
"--enable-experimental-plugins" \
"--disable-luajit" \
"--disable-freelist" \
"--enable-ccache" \
"--prefix=/opt/ats" \
"--with-jemalloc" \
"--with-openssl=/opt/openssl" \
"CC=/opt/gcc5/bin/gcc" \
"CXX=/opt/gcc5/bin/g++" \
"CFLAGS=-fstack-protector -fsanitize=address -fno-omit-frame-pointer" \
"CXXFLAGS=-fstack-protector -fsanitize=address -fno-omit-frame-pointer" \
"CPPFLAGS=-D_FORTIFY_SOURCE=2" \
"LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
"$@ā€œ

Reply via email to