web-dev-qa-db-ja.com

CentOSにApache Benchmarkをインストールする方法

私は ApacheをインストールせずにApache Bench(ab)をインストールする方法はありますか ソリューションを使用してApache Benchmarkをインストールしようとしますが、yumdownloader httpdを実行するとエラーが発生します。

root@local [~/httpd]# yumdownloader httpd
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: yum.phx.singlehop.com
 * elrepo: repos.lax-noc.com
 * extras: centos.tcpdiag.net
 * updates: mirror.stanford.edu
No Match for argument httpd
Nothing to download

それは何ですか?どうすれば修正できますか?

編集1:マイケル・ハンプトンの方法を使用しようとしますが、このエラーが発生します:

root@local [~]# yum provides /usr/bin/ab
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: yum.phx.singlehop.com
 * elrepo: repos.lax-noc.com
 * extras: centos.tcpdiag.net
 * updates: mirror.stanford.edu
No Matches found

root@local [~]# yum install httpd-tools
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: yum.phx.singlehop.com
 * elrepo: repos.lax-noc.com
 * extras: centos.tcpdiag.net
 * updates: mirror.stanford.edu
Setting up Install Process
No package httpd-tools available.
Error: Nothing to do
32
Mehdi Yeganeh

yum providesを使用して、必要なプログラムが含まれているパッケージを見つけることができます。

yum provides /usr/bin/ab

次に、abhttpd-toolsパッケージに含まれていることがわかります。

そして今、あなたはそれをインストールすることができます:

yum install httpd-tools
76
Michael Hampton