Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to grep my server logs to collect all of the unique IP Addresses, and also to see all of the requests for a specific page. What is the best way to do this?

share|improve this question

2 Answers

up vote 13 down vote accepted

Assuming this is a standard Apache log, and assuming you are on Unix, I usually do

awk '{print $1}' access.log|sort -u

The awk filters out all IP addresses, the sort then removes duplicates.

To find out all accesses to a URL, I do

grep URL access.log

Of course, you will have to replace "URL" with the specific one you search for.

share|improve this answer

You could also use something like webalizer to process the logs as another option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.