Skip to content

Instantly share code, notes, and snippets.

@stevenjack
Created May 23, 2014 02:46
Show Gist options
  • Save stevenjack/d1b56fab0199900b6c25 to your computer and use it in GitHub Desktop.
Save stevenjack/d1b56fab0199900b6c25 to your computer and use it in GitHub Desktop.
#Install lsof
sudo yum install lsof -y
#Grab the top tomcat process and list out the number of open files
sudo lsof -p $(ps aux | grep -m1 tomcat | cut -d ' ' -f6) | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment