I have hosted my website over the local network in ubuntu maverick. I want to see all the requests coming in to my website through terminal and then log it into a file. What should i use? and is it possible to see all the ip address which has sent the request? i am using xampp server. thank you.
|
What you want to see should be already getting logged in the Apache logs. They already include the source IP address of each request, and several other pieces of information. If you're using xampp I think the logs are kept in To see a log in real time you could use:
(Use Ctrl+C to stop it) Or, you could see more than one log at a time, using First, install multitail if it's not installed already:
Then:
(Press q to close it) You can pass it whatever logs you want to watch. If what you need is lower-level information, then there are several other choices, like Wireshark, nmap/zenmap, tcpdump. I'm not going into details here, because I guess these are too low-level for your needs, but I mention them for completeness. |
||||
|
|
/var/log/apache2/of the box hosting apache. – martin-mystere Dec 6 '12 at 18:45