How many Unique IP’s have Connected to your Apache Website

Written by James McDonald

April 28, 2010

This will tell you how many unique IP addresses have connected to your website since the last log file rotation. So if your logs are rotated daily then you have the number of unique IP’s for roughly the last 24hour


# go to your apache logs directory and run:
$ cat access.log | awk '{ print $1 }' | sort | uniq  | wc -l
# out put 
415

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Network speed test host to host

On Ubuntu / Debian apt-get install iperf3 On Windows download it from https://iperf.fr/iperf-download.php#windows Make...