SOLVED: Show connections to Server

Questions related to the Apache server
chris
Site Admin
Posts: 216
Joined: Mon Jul 21, 2008 9:52 am

SOLVED: Show connections to Server

Post by chris »

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

Post 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