¿Cómo instalar Apache Benchmark en CentOS?

30

Intento instalar Apache Benchmark usando ¿Hay alguna manera de instalar Apache Bench (ab) sin instalar soluciones de apache en mis centos pero cuando ejecuto yumdownloader httpd, recibo un error:

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é es? y como puedo arreglarlo?

Edición 1: trato de usar la forma de Michael Hampton pero obtengo estos errores:

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
Mehdi Yeganeh
fuente

Respuestas:

73

Puede descubrir qué paquete contiene el programa que desea usar yum provides:

yum provides /usr/bin/ab

Entonces verá que abestá en el httpd-toolspaquete.

Y ahora puedes instalarlo:

yum install httpd-tools
Michael Hampton
fuente
tanx mucho por respuesta pero recibo un error de nuevo ... por favor marque Editar 1
Mehdi Yeganeh
2
Excluyó algunos paquetes, o de otra manera destruyó su configuración de yum. Consulte los /etc/yum.confarchivos y en el /etc/yum.repos.ddirectorio para ver las exclusiones inapropiadas.
Michael Hampton
tanx mucho, es para /etc/yum.conf, que excluyó httpd: D
Mehdi Yeganeh el
77
También puedes simplemente corrersudo yum install /usr/bin/ab
KingPong
1
La solución @KingPong hizo el truco.
Tratando