List of Articles Icon

Knowledge Base

Guides and answers for your VPS, the client area, and billing

My VPS is using too much memory. What's wrong?

What this is

Your monitoring, htop, or free shows memory nearly full and it looks alarming. In most cases nothing is wrong: Linux deliberately uses RAM that would otherwise sit idle as disk cache, because cached reads are enormously faster than disk reads. The moment your applications need that memory, Linux hands it back. Full-looking RAM is Linux doing its job well, the classic explainer is linuxatemyram.com.

How to read the numbers

Run free -h and look at the available column, not "used" or "free":

  • available is what your applications can actually claim right now (free memory plus reclaimable cache). If it's comfortable, you have no memory problem, whatever "used" says.
  • Your control panel's memory graph reads your VPS the same way, so the Graphs tab reflects real usage accurately.

What real memory pressure looks like

  • available in free -h staying near zero during normal operation.
  • Processes being killed by the OOM killer. Platform note: on Linux VPS these kills are not visible inside your VPS, they won't appear in your own logs or dmesg; run My VPS is Down, which reports recent OOM kills for your VPS. On Premium VPS (full KVM), dmesg | grep -i "out of memory" shows them as usual. (Our Linux VPS run without swap, memory is fully dedicated, so when RAM is truly exhausted the kernel kills the biggest consumer rather than grinding into slow disk-swap.)
  • Services (databases especially) restarting or dying under load for no visible reason.

If you genuinely need more

First check what's eating it (ps aux --sort=-%mem | head), a leaking app or an oversized database buffer setting is cheaper to fix than more RAM. If the workload has simply outgrown the plan, upgrade, on Linux VPS it's live and instant with no downtime. And no, adding swap isn't the answer.

Still need help?

You can open a support ticket. So we can help on the first reply, it's worth mentioning:

  • the VPS hostname or IP,
  • the output of free -h,
  • whether anything is actually misbehaving (kills, restarts, slowness) or the number just looks high.
  • "Why does my VPS show almost all memory used?"
  • "Is high memory usage on Linux a problem?"
  • "How do I read free -h properly?"
  • "How do I know if I really need more RAM?"
  • "What is the OOM killer and why did it kill my process?"
Last reviewed: 2026-07-02