Esiste un modo per installare Apache Bench (ab) senza installare apache


34

Potete fornire istruzioni su come installare ab su una fedora distro con o senza installare il web server apache? Con yum o compilando dalla fonte.

Risposte:


23

Installa apr-util (devi eseguire ab):

yum install apr-util

Installa yum-utils:

yum install yum-utils

Scarica httpd un estratto ab:

mkdir ~/httpd
cd ~/httpd
yumdownloader httpd
rpm2cpio httpd-2.2.3-43.el5.centos.3.i386.rpm | cpio -idmv
mv usr/bin/ab /usr/bin/ab
cd ~
rm -rf ~/httpd

Esegui ab:

ab http://google.ru/
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0

3
Su Ubuntu potresti fare sudo apt-get install apache2-utils
adrian7,

On Arch -pacman -S apr-util
bobah,

66

Sul mio CentOS 6.2, ha funzionato:

sudo yum install httpd-tools

Ha funzionato anche sul mio Fedora 17! Grazie! :-)
Giovanni

Funziona su CentOS 6
MrROY

Funziona su RHEL 6.6
codehead

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.