Troubleshooting Memory Usage

(via rimuhosting.com)

If you are using VPS with very limited memory resources, the link provides excellent reference material on troubleshooting memory issues with some of the know applications that can possibly consume high memory.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

percentage memory used

Below, will add up the values in the fourth column (%MEM) and give a total of percentage memory used.

ps aux | awk '{x=x+$4}END {print x}'

Comment