Come installare Apache Benchmark su CentOS?


30

Cerco di installare Apache Benchmark usando Esiste un modo per installare Apache Bench (ab) senza installare soluzioni apache sul mio centos ma quando corro yumdownloader httpd, ricevo un errore:

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

Che cos'è? e come posso ripararlo?

Modifica 1: provo ad usare Michael Hampton in questo modo ma ottengo questi errori:

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

Risposte:


73

Puoi scoprire quale pacchetto contiene il programma che desideri utilizzando yum provides:

yum provides /usr/bin/ab

Quindi vedrai che abè nel httpd-toolspacchetto.

E ora puoi installarlo:

yum install httpd-tools

tanx molto per la risposta ma ricevo di nuovo un errore .. controlla Modifica 1
Mehdi Yeganeh

2
Hai escluso alcuni pacchetti o hai comunque eliminato la tua configurazione yum. Controllare i /etc/yum.conffile e nella /etc/yum.repos.ddirectory per escludere in modo inappropriato.
Michael Hampton

tanx molto, è per /etc/yum.conf, che ha escluso httpd: D
Mehdi Yeganeh

7
Puoi anche semplicemente correresudo yum install /usr/bin/ab
KingPong

1
La soluzione @KingPong ha funzionato.
Prova il
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.