How to check how many established connection of my web server?
Answer:
Assume you server is listening on port 80, you can check how many established connection to this port with the following command:
netstat -an | grep :80 | grep ESTABLISHED | wc -l
4919