Show the top 30 httpd users' IP addresses.
tail -10000 /var/log/httpd/access_log | awk '{print $1}' | sort | uniq -c | sort -nr | tail -n30

Category: Linux Tags:
Linux: Use a command terminal, such as xterm or konsole.
Windows: Start > Run, type cmd.exe and press Enter for the command prompt.
Show the top 30 httpd users' IP addresses.
