Posts

Showing posts with the label lsof

KB:Linux lsof - list open files

man: lsof - list open files lsof -n | grep rundeck |wc -l lsof -n | grep rundeck | grep deleted | wc -l lsof -n | grep rundeck | grep deleted lsof -p 21601 | wc -l lsof -p 21601 | grep deleted | wc -l #Find out proc limits ps -aux|grep java cat /proc/1208/limits #ps -aux|grep java root      5718  0.0  0.0 182020  2172 ?        S    May02   0:00 runuser -s /bin/bash -l rundeck -c java -Drundeck.jaaslogin=true            -Djava.security.auth.login.config=/etc/rundeck/jaas-ldap.conf            -Dloginmodule.name=ldap            -Drdeck.config=/etc/rundeck            -Drundeck.server.configDir=/etc/rundeck            -Dserver.datastore.path=/var/lib/rundeck/data/rundeck     # cat /proc/ 5718 /limits Limit               ...