olimits7
olimits7

Reputation: 593

View which http pages are being accessed (realtime) through SSH?

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

Answers (2)

Konerak
Konerak

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

AbstractProblemFactory
AbstractProblemFactory

Reputation: 9811

Sure, try tail -f /your/server/log/file.log.

Upvotes: 1

Related Questions