728x90
23
4
I try to install Apache Benchmark using Is there a way to install Apache Bench (ab) without installing apache solutions on my centos but when i run yumdownloader httpd
, i get 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
What is it? and how can i fixed it?
Edit 1: i try to use Michael Hampton way but i get this errors:
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
add a comment
57
You can discover which package contains the program you want using yum provides
:
yum provides /usr/bin/ab
Then you will see that ab
is in the httpd-tools
package.
And now you can install it:
yum install httpd-tools
'APACHE TUNE' 카테고리의 다른 글
Apache2 and php fpm performance optimization — Step-by-step guide (0) | 2018.05.05 |
---|---|
How to Install htop on CentOS 7 (0) | 2018.05.05 |
Apache 벤치마크 유틸리티 사용 (0) | 2018.05.05 |
defined (0) | 2018.05.04 |
Apache event MPM, Prefork MPM, Worker MPM 방식의 차이점 및 설치 시 설정 방법 (0) | 2018.05.02 |