Question

Which Process is taking all the memory?

Hi Guys,

Twice today my server memory usage has climbed from its stable 35% upto 92%. The first instance corrected itself, the second time I power cycled the droplet. How can I determine which process is hogging all this memory?

Cheers

Gary


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

alexdo
Site Moderator
Site Moderator badge
January 29, 2020
Accepted Answer

Hello, @garywilliams

You can ssh to your droplet and use either top or htop to see which processes is consuming most of the droplet’s memory. In order to see the memory usage in htop, once you’ve executed the htop command use Shift + M or just click the MEM% sign with the mouse (htop can be navigated using the mouse button).

You can also use a command like this one to show the processes memory in megabytes and the process path, but generally htop and top are my favorites.

ps aux  | awk '{print $6/1024 " MB\t\t" $11}'  | sort -n

Let me know how it goes.

Regards, Alex

Hi Alex,

Thanks! I have now tried atop, top and htop. I didn’t know these existed. Fascinating to watch the server operation in real time, not that it means too much to me at the moment. It turns out the the ‘mercure’ module was the culprit. Installing an upgrade sorted that out.

I am alway impressed by smart guys like you who can rattle off lines of code like “ps auk …”

I’m now reading through tutorials and making a list of useful commands and code snippets.

Many thanks for your help.

Cheers

Gary

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel