To check the load on your WHM (Web Host Manager) server, you can use several methods within the WHM interface or through SSH. Here’s how to do both:

Method 1: Check Load via WHM Interface

  1. Log into WHM:
    • Open a browser and go to https://yourserverIP:2087.
    • Enter your WHM username and password.
  2. View Server Status:
    • In the left sidebar, navigate to Server Status.
    • Click on Server Status again or Service Status.
  3. Check Load Averages:
    • Here, you will see various statistics about your server, including CPU load averages over the last 1, 5, and 15 minutes. This will help you understand how heavily your server is being utilized.

Method 2: Check Load via SSH

  1. Log in to Your Server via SSH:
    • Use an SSH client (like PuTTY) or your terminal.

Run the command:
bash
Copy code
ssh root@your_server_ip

  •  
  1. Check Load Using Commands:

You can use the top command to see real-time system processes and their load:
bash
Copy code
top

  • Look for the line that shows load average. It displays three numbers representing the load averages for the past 1, 5, and 15 minutes.

Alternatively, you can use:
bash
Copy code
uptime

  • This will also show you the load averages at the end of the output.
  1. Use the htop Command (if installed):

If you have htop installed, it provides a more user-friendly interface:
bash
Copy code
htop

  • Load averages are displayed at the top of the screen.

Understanding Load Averages

  • Load Average numbers indicate how many processes are actively competing for CPU time.
  • Ideal Load: A load average equal to or lower than the number of CPU cores is generally considered optimal. For example, if you have a 4-core CPU, a load average below 4 is usually acceptable.

Summary

You can check your server load in WHM by navigating to the Server Status section or through SSH using commands like top, uptime, or htop. Monitoring these metrics helps you ensure that your server is running efficiently.

Hasznosnak találta ezt a választ? 0 A felhasználók hasznosnak találták ezt (0 Szavazat)