Page 1 of 1

Show connections to Server

Posted: Mon Aug 11, 2025 8:33 pm
by chris
Hello, is there a way to see all the current connection to the webserver?

Re: Show connections to Server

Posted: Mon Aug 11, 2025 9:59 pm
by chris
You can use

Code: Select all

netstat -ln | grep 80
or another way

Code: Select all

ss -ant | grep :80 | wc -l
or for https

Code: Select all

ss -ant | grep :443 | wc -l