c0d3man52

Docker

[Docker] PHP-Apacheコンテナで立ち上げたWEBサイトで、Apache Benchを実行する方法

Dockerで立ち上げたPHP-Apacheな環境でApache Benchを実行する方法を調べてみました。

更新日: 2018.7.17公開日: 2017.10.11

ApacheがインストールされていればApache Benchも入ってる

意外だったんですが、そういうことらしいです。なので、PHP-Apacheなコンテナを立てた時点で、すでにApache Benchが実行できるということですね。

なので、ここから先は、「Dockerに慣れている方は、別に読まれなくても・・・」という内容になります。

docker execでコンテナ内に入る

まずは、Dockerコンテナに入ります。

docker exec -it コンテナID /bin/bash

root@b98f57d15545:/var/www/html#

コンテナIDは、docker psとかすればわかります。

Apache Benchを実行する

あとは、Apache Benchを実行するだけです。

ab -n 総リクエスト数 -c 人数 http://localhost/

普通に結果が返ってきます。

ab -n 1000 -c 100 http://localhost/
This is ApacheBench, Version 2.3 <$Revision: 1604373 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests


Server Software:        Apache/2.4.10
Server Hostname:        localhost
Server Port:            80

Document Path:          /
Document Length:        1927 bytes

Concurrency Level:      100
Time taken for tests:   206.688 seconds
Complete requests:      1000
Failed requests:        3
   (Connect: 0, Receive: 0, Length: 3, Exceptions: 0)
Total transferred:      2144997 bytes
HTML transferred:       1926997 bytes
Requests per second:    4.84 [#/sec] (mean)
Time per request:       20668.755 [ms] (mean)
Time per request:       206.688 [ms] (mean, across all concurrent requests)
Transfer rate:          10.13 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0   38 138.5      0     804
Processing: 10200 20401 2887.9  20245   30860
Waiting:    10200 20192 2896.0  20059   30602
Total:      10200 20439 2858.6  20253   30861

Percentage of the requests served within a certain time (ms)
  50%  20253
  66%  21417
  75%  22038
  80%  22469
  90%  24507
  95%  26175
  98%  27018
  99%  27588
 100%  30861 (longest request)

テスト環境やローカルマシンにApache Benchが入っていなくても、サイトを作っている途中で負荷テストをしたい場合は、さくっとテストサーバーとかにコンテナごとアップして、Apache Benchを実行しておけばOKなので、便利ですね。