0

I am trying to find the number of requests in the apache access_log. That is, some unix command that will return the number of requests.

Thanks!

Chris Bolton
  • 2,162
  • 4
  • 36
  • 75

1 Answers1

0

Try this:

cat /var/log/apache2/access.log | wc -l
Carca
  • 564
  • 1
  • 6
  • 16