SOLVED: Show connections to Server
-
chris
- Site Admin
- Posts: 216
- Joined: Mon Jul 21, 2008 9:52 am
SOLVED: Show connections to Server
Hello, is there a way to see all the current connection to the webserver?
-
chris
- Site Admin
- Posts: 216
- Joined: Mon Jul 21, 2008 9:52 am
Re: Show connections to Server
You can use
or another way
or for https
Code: Select all
netstat -ln | grep 80Code: Select all
ss -ant | grep :80 | wc -lCode: Select all
ss -ant | grep :443 | wc -l