• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
Resource icon

Instruction How to find the busiest web site

To find the busiest web site, I figured the size of the access_log files should provide a clue, so I wrote something in OORexx. (you need to install oorexx and oorexx-devel for this, like yum install oorexx oorexx-devel):

#!/bin/rexx
"rxqueue...
You do not have permission to view the full content of this resource. Log in or register now.
Author
tkalfaoglu
Views
7,322
First release
Last update
Rating
4.40 star(s) 5 ratings

Latest reviews

Thanks for the code
better change first line to include ssl logs and see only on "system" directory where had to be all domains logs.

find /var/www/vhosts/system -name access_*_log | rxqueue
sweet code
Great!
Back
Top