Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个命令可以让我查看我的服务器上的哪些网站页面当前正在通过 SSH 实时访问?
谢谢!
当然,试试tail -f /your/server/log/file.log。
tail -f /your/server/log/file.log
当然。如果您的 apache 配置启用了日志记录,则每个页面视图都将写入 access_log。您可以使用tail -f access_log跟随文件。
tail -f access_log