How to Show Unique Visitor Count

#1
Hello everyone,

Since I am not technical enough to understand anything from the web console (7080), is there anything I can learn by entering an SSH command?

1- I want to know the total number of unique visitors to the server.
2- I want to know the number of unique visitors to a domain X.

Is it possible to perform these 2 operations by entering an SSH command?
 

Cold-Egg

Administrator
#2
The only statistic you can get is by using the following command,
Code:
cat /tmp/lshttpd/.rtreport*
It does not contain the information you are looking for. You might need to use some log analyzer tools, E.g. AWStats to get the info you need.
 
Top