NickTheGreek 160 Report post Posted January 29, 2017 1. Login on openvz node and use ps command to find the PID ssh root@openvz-node ps auxwwwf 2. After finding PID execute following commands PID=12345 for i in `vzlist -a | grep running | awk '{print $1}'`; do echo $i; ps $* -p $(grep -l "^envID:[[:space:]]*$i\$" /proc/[0-9]*/status | sed -e 's=/proc/\([0-9]*\)/.*=\1=') | grep $PID; done 2 Quote Share this post Link to post Share on other sites