私は 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
yum provides
を使用して、必要なプログラムが含まれているパッケージを見つけることができます。
yum provides /usr/bin/ab
次に、ab
がhttpd-tools
パッケージに含まれていることがわかります。
そして今、あなたはそれをインストールすることができます:
yum install httpd-tools