May 11, 2010 #1 ddrillich Technical User Joined Jun 11, 2003 Messages 546 Location US Good Day, How can I see the number of open connections a tomcat instance has on a Linux server? Regards, Dan
Good Day, How can I see the number of open connections a tomcat instance has on a Linux server? Regards, Dan
May 19, 2010 #2 Diancecht Programmer Joined Jan 8, 2004 Messages 4,042 Location ES Any help here? Cheers, Dian Upvote 0 Downvote
Jun 2, 2010 #3 IRudebwoy IS-IT--Management Joined Jan 25, 2005 Messages 366 Location US 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. Upvote 0 Downvote
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.