码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下通过server-status监控性能

时间:2015-01-03 14:28:07      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

Linux下通过server-status监控性能

前提:安装好Apache,在opt/路径下

 

  1. 查看Apache的工作模式技术分享

 

可以知道是 prefork.c模式

 

  1. 配置server-status 性能

 

进入到httpd.conf路径

vi  /etc/httpd/conf/httpd.conf

然后添加

<Location /server-status>

    SetHandler   server-status

    Order        allow,deny

    Deny from    nothing

    Allow from   all

</Location>

 

ExtendedStatus On

 

<Location /server-info>

    SetHandler   server-info

    Order        allow,deny

    Deny from    nothing

    Allow from   all

</Location>

  1. 重启:service httpd restart
  2. 访问:http://192.168.254.135/server-status
  3. 技术分享

 

Linux下通过server-status监控性能

标签:

原文地址:http://www.cnblogs.com/lizongrong/p/4199422.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!