: How can I check memory usage for each cPanel account? Currently I have 4 cPanel accounts running on my VPS. I need to check the memory (RAM) usage for each account on the VPS to identify
Currently I have 4 cPanel accounts running on my VPS. I need to check the memory (RAM) usage for each account on the VPS to identify which of them is using high resources in order to ban. I opened the "Daily Process Log" in WHM but it is not showing the username or which accounts exactly uses resources.
WHM displayes the following under the "User" column:
root, nobody, mysql, dovenull, dovecot, mailnull, mailman, sshd, named, DELAYED, leechprotect, eximstats
More posts by @Looi9037786
1 Comments
Sorted by latest first Latest Oldest Best
If you have SSH access try this
TOTAL=$(free | awk '/Mem:/ { print }')
for USER in $(ps haux | awk '{print }' | sort -u)
do
ps hux -U $USER | awk -v user=$USER -v total=$TOTAL '{ sum += } END { printf "%s %.2fn", user, sum / total * 100; }'
done
See this link from StackOverflow for more information
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.