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?
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.
|
|
|
Assuming this is a standard Apache log, and assuming you are on Unix, I usually do
The awk filters out all IP addresses, the sort then removes duplicates. To find out all accesses to a URL, I do
Of course, you will have to replace "URL" with the specific one you search for. |
||||
|
|
|
You could also use something like webalizer to process the logs as another option. |
|||
|
|