Results 1 to 5 of 5

Thread: mod_status

  1. #1

    mod_status

    Quote:
    There's always mod_status for apache.

    http://httpd.apache.org/docs/1.3/mod/mod_status.html


    Should I remove '#' before this in httpd.conf?

    #<Location /server-status>
    # SetHandler server-status
    # Order deny,allow
    # Deny from all
    # Allow from .example.com
    #</Location>


    I will replace example.com with my server domain, is that OK or I will need to do something else?

    Please advise and thank you for your recommendations.

  2. #2
    Join Date
    Jun 2006
    Location
    Cluj Napoca
    Posts
    469
    Do you really need mod_status ?
    IntoDNS - Check your DNS health and configuration
    FLEIO - OpenStack billing and control panel for service providers

  3. #3
    isn't it good for server?

    Actually I need this to monitor serever http traffic so I can then suspend few busy sites on my server which is causing for server overload.

    access_log is not helpfull. Please advise.

  4. #4
    Join Date
    Dec 2002
    Location
    chica go go
    Posts
    11,876
    Just put this in your httpd.conf:

    <Location /lol-server-status>
    SetHandler server-status
    </Location>

    then access yourip.com/lol-server-status. I wouldn't leave normal server-status open, as it could leak some potentially sensitive info.

  5. #5
    Join Date
    Oct 2004
    Location
    Kerala, India
    Posts
    4,771
    Quote Originally Posted by alisaqi View Post


    Should I remove '#' before this in httpd.conf?

    #<Location /server-status>
    # SetHandler server-status
    # Order deny,allow
    # Deny from all
    # Allow from .example.com
    #</Location>

    # means the line is commented and will be ignored. If you need to enable the line, remove #.
    David | www.cliffsupport.com
    Affordable Server Management Solutions sales AT cliffsupport DOT com
    CliffWebManager | Access WHM from iPhone and Android

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •