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.
Apache サーバーでホストされている 5 つのサイトがあるとします。ここで、Apache への確立された接続の合計を取得するために、次を使用できます。
netstat -anp | grep :80 | grep ESTABLISHED | wc -l
これは、約 xx 件の接続が確立されていることを示しています。
5 つのサイト/ホストのそれぞれへの接続数を知りたい場合、これを確認する方法はありますか?
ありがとう。