Reputation: 7841
I am using apache2 in my Ubuntu 13.10 as a server. Now How can I see the IP of the clients ?
Upvotes: 0
Views: 119
Reputation: 799
Assuming the default configuration of Ubuntu 13.10:
tail /var/log/apache2/access.log
You can also do a "live view" that updates whenever someone accesses your page:
tail -f /var/log/apache2/access.log
Upvotes: 1