Reputation: 593
Is there a command where I can view which website pages on my server are currently being accessed in realtime through SSH?
Thank you!
Upvotes: 0
Views: 573
Reputation: 39763
Sure. If your apache configuration has logging enabled, each page view will be written to the access_log. You can use tail -f access_log
to follow the file.
Upvotes: 1