Tamim Addari
Tamim Addari

Reputation: 7841

How to see which clients are requesting in my apache?

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

Answers (1)

fpw
fpw

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

Related Questions