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