监控网络流量的命令
我想知道此屏幕截图中用于监控 Web 服务器的活动流量的命令。这看起来像 netstat,但我无法用它打印所有信息。此屏幕截图来自电影“社交网络”。
I want to know the command used in this screenshot to monitor the active traffic to a web server. This looks like netstat but i am unable to print all the info with it. This screenshot is from the movie 'The Social Network'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它必须是 apachetop
http://www.howtogeek.com /howto/ubuntu/monitor-your-website-in-real-time-with-apachetop/
It must be apachetop
http://www.howtogeek.com/howto/ubuntu/monitor-your-website-in-real-time-with-apachetop/
Apache tomcat 允许使用 apache tomcat manager user @ http://:/manager.html 监控 http 会话和连接(可能是 manager.htm,对此不太确定)。
netstat -lptu 还允许监视任何进程(提供 pid)的连接(打开的端口),使用网络服务器的 pid 来获取此信息。
希望这有帮助。
Apache tomcat allows monitoring of http sessions and connections using apache tomcat manager user @ http://:/manager.html (might be manager.htm, not too sure about this).
Also netstat -lptu allows monitoring of connections (ports opened) by any process (supply pid), use web-server's pid to get this.
Hope this helps.