Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tomcat’s open connections

Status
Not open for further replies.

ddrillich

Technical User
Jun 11, 2003
546
US
Good Day,

How can I see the number of open connections a tomcat instance has on a Linux server?

Regards,
Dan
 
You can always use
Code:
lsof -nPi
to see all the listening and open network connections.

Using
Code:
lsof -nPi | grep java
will filter the output to the java processes, e.g. tomcat.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top