Show connections to Server
Show connections to Server
Hello, is there a way to see all the current connection to the webserver?
Re: Show connections to Server
You can use
or another way
or for https
Code: Select all
netstat -ln | grep 80
Code: Select all
ss -ant | grep :80 | wc -l
Code: Select all
ss -ant | grep :443 | wc -l