Benaya Paul
Benaya Paul

Reputation: 59

How to check the server load

I want to check the server load before push the files to live. Is any way to check server have capacity to handled the concurrency users. Also we have checked the ab in terminal side but need to check without files.

Upvotes: 1

Views: 494

Answers (1)

Pablo Santa Cruz
Pablo Santa Cruz

Reputation: 181280

You can use the /server-status handler (mod_status) to check that.

Configuring it is fairly easy and straighforward:

<Location "/server-status">
    SetHandler server-status
    Require host example.com
</Location>

Upvotes: 1

Related Questions