Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

You may want to check the traffics in your server prom time to time, and checking CPU and number of threads are actually essential.

You can simply check the number of HTTP threads on terminal:

Code Block
ss | grep http | wc -l


Below code (httpd_count.sh) prints the total number of HTTP threads, so you can check its status.

...