1、安装HTTPd
采用yum 方法安装
yum -y install httpd # -y安装依赖包
#主配置文件:/etc/httpd/conf/httpd.conf
#辅助配置文件:/etc/httpd/conf.d/
#模块文件位置:/etc/httpd/modules
#模块配置文件路径:/etc/httpd/conf.modules.d/
访问apache— http://你的IP地址:端口/
配置server-status
查找文件—find / -name httpd.conf
编辑httpd.conf文件— vi /etc/httpd/conf/httpd.conf
在文末加
<location /c-server-status>
SetHandler server-status
Order Deny,Allow
Deny from nothing
Allow from all
</location>
ExtendedStatus On
#以下配置可加可不加
<Location /server-info>
SetHandler server-info
Order deny,allow
Deny from all
Allow from all
</Location>
修改信息解释:
<location /c-server-status> : c-server-status 访问的路径 这个名字可以任意的取,但最好不要被别人猜到。
Deny from 表示禁止的访问地址;nothing 表示没有禁止访问的地址 。
Allow from 表示允许的地址访问;all 表示所有的地址都可以访问。
ExtendedStatus On 表示的是待会访问的时候能看到详细的请求信息,另外该设置仅能用于全局设置,不能在特定的虚拟主机中打开或关闭。启用扩展状态信息将会导致服务器运行效率降低。
保存退出
重启appache—service httpd restart
访问server-status
http://你的IP地址:端口/c-server-status
http://你的IP地址:端口/c-server-status ?refresh=N
N将表示访问状态页面可以每N秒自动刷新一次
添加其他模块类似