web-dev-qa-db-fra.com

Comment installer Apache Benchmark sur CentOS?

J'essaie d'installer Apache Benchmark en utilisant Existe-t-il un moyen d'installer Apache Bench (ab) sans installer Apache des solutions sur mes centos mais quand j'exécute yumdownloader httpd, j'obtiens une erreur:

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

Qu'Est-ce que c'est? et comment puis-je le réparer?

Edit 1: j'essaie d'utiliser Michael Hampton mais j'obtiens ces erreurs:

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

Vous pouvez découvrir quel package contient le programme que vous souhaitez en utilisant yum provides:

yum provides /usr/bin/ab

Ensuite, vous verrez que ab est dans le httpd-tools paquet.

Et maintenant vous pouvez l'installer:

yum install httpd-tools
76
Michael Hampton