Назад | Перейти на главную страницу

Как установить Apache Benchmark на CentOS?

Я пытаюсь установить Apache Benchmark, используя Есть ли способ установить Apache Bench (ab) без установки apache решения на моем centos, но когда я бегу 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