May 11, 2010 #1 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
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 Jan 8, 2004 4,042 ES Any help here? Cheers, Dian Upvote 0 Downvote
Jun 2, 2010 #3 IRudebwoy IS-IT--Management Jan 25, 2005 366 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.