Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Apache HTTP Server 2.0.1
pts/apache-2.0.1
- 19 April 2022 -
Support for using go install for Go 1.17+ support.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://archive.apache.org/dist/httpd/httpd-2.4.48.tar.bz2, http://ftp.bit.nl/apache/httpd-2.4.48.tar.bz2</URL> <MD5>a7088cec171b0d00bf43394ce64d3909</MD5> <SHA256>1bc826e7b2e88108c7e4bf43c026636f77a41d849cfb667aa7b5c0b86dbf966c</SHA256> <FileName>httpd-2.4.48.tar.bz2</FileName> <FileSize>7194385</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/http-test-files-1.tar.xz</URL> <MD5>b86f3e8f5bc9d0014818c5122a6f784d</MD5> <SHA256>9d6eace9544c59b910ea403a4693338efc12a6b0915fe227aed86c971b82d3dd</SHA256> <FileName>http-test-files-1.tar.xz</FileName> <FileSize>2346324</FileSize> </Package> <Package> <URL>https://ftp.osuosl.org/pub/blfs/conglomeration/apr/apr-1.7.0.tar.bz2, http://archive.apache.org/dist/apr/apr-1.7.0.tar.bz2</URL> <MD5>7a14a83d664e87599ea25ff4432e48a7</MD5> <SHA256>e2e148f0b2e99b8e5c6caa09f6d4fb4dd3e83f744aa72a952f94f5a14436f7ea</SHA256> <FileName>apr-1.7.0.tar.bz2</FileName> <FileSize>872238</FileSize> </Package> <Package> <URL>http://www.apache.org/dist/apr/apr-util-1.6.1.tar.bz2, http://apache.cs.utah.edu//apr/apr-util-1.6.1.tar.bz2, http://archive.apache.org/dist/apr/apr-util-1.6.1.tar.bz2</URL> <MD5>8ff5dc36fa39a2a3db1df196d3ed6086</MD5> <SHA256>d3e12f7b6ad12687572a3a39475545a072608f4ba03a6ce8a3778f607dd0035b</SHA256> <FileName>apr-util-1.6.1.tar.bz2</FileName> <FileSize>428595</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash mkdir $HOME/httpd_ tar -xf http-test-files-1.tar.xz tar -xf httpd-2.4.48.tar.bz2 tar -xf apr-util-1.6.1.tar.bz2 tar -xf apr-1.7.0.tar.bz2 mv apr-1.7.0 httpd-2.4.48/srclib/apr mv apr-util-1.6.1 httpd-2.4.48/srclib/apr-util cd httpd-2.4.48/ ./configure --prefix=$HOME/httpd_ --with-included-apr if [ "$OS_TYPE" = "BSD" ] then gmake -j $NUM_CPU_CORES gmake install echo $? > ~/install-exit-status else make -j $NUM_CPU_CORES make install echo $? > ~/install-exit-status fi cd ~ rm -rf httpd-2.4.48/ rm -rf httpd_/manual/ mv -f http-test-files/* httpd_/htdocs/ echo " --- httpd_/conf/httpd.conf.orig 2009-05-05 11:45:32.000000000 -0400 +++ httpd_/conf/httpd.conf 2009-05-05 11:46:09.000000000 -0400 @@ -37,7 +37,7 @@ # prevent Apache from glomming onto all bound IP addresses. # #Listen 12.34.56.78:80 -Listen 80 +Listen 8088 # # Dynamic Shared Object (DSO) Support " > CHANGE-PORT.patch patch -p0 < CHANGE-PORT.patch go get -u github.com/codesenberg/bombardier if [ $? -ne 0 ] then # Go 1.17+ path go install github.com/codesenberg/bombardier@latest fi echo "#!/bin/sh ~/go/bin/bombardier \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > apache chmod +x apache
post.sh
#!/bin/sh ./httpd_/bin/apachectl -k stop rm -f httpd_/logs/* sleep 3
pre.sh
#!/bin/sh ./httpd_/bin/apachectl -k start -f $HOME/httpd_/conf/httpd.conf sleep 5
pre_windows.sh
#!/bin/sh cd Apache24/bin ./httpd.exe & sleep 10
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> Reqs/sec #_RESULT_# 25659.25 589863.96</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <TestInformation> <Title>Apache HTTP Server</Title> <AppVersion>2.4.48</AppVersion> <Description>This is a test of the Apache HTTPD web server. This Apache HTTPD web server benchmark test profile makes use of the Golang "Bombardier" program for facilitating the HTTP requests over a fixed period time with a configurable number of concurrent clients.</Description> <ResultScale>Requests Per Second</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>2.0.1</Version> <SupportedPlatforms>Linux, Solaris, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, perl, pcre, expat, golang</ExternalDependencies> <InstallRequiresInternet>TRUE</InstallRequiresInternet> <EnvironmentSize>208</EnvironmentSize> <ProjectURL>https://httpd.apache.org/</ProjectURL> <RepositoryURL>https://github.com/apache/httpd</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-d 90s </Arguments> <PostArguments> http://127.0.0.1:8088/test.html</PostArguments> </Default> <Option> <DisplayName>Concurrent Requests</DisplayName> <Identifier>concurrent</Identifier> <ArgumentPrefix>-c </ArgumentPrefix> <Menu> <Entry> <Name>1</Name> <Value>1</Value> </Entry> <Entry> <Name>20</Name> <Value>20</Value> </Entry> <Entry> <Name>100</Name> <Value>100</Value> </Entry> <Entry> <Name>200</Name> <Value>200</Value> </Entry> <Entry> <Name>500</Name> <Value>500</Value> </Entry> <Entry> <Name>1000</Name> <Value>1000</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>