• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Question how do i reduce ram usage on my vps with plesk 12 installed

Scopehosts

New Pleskian
how do i reduce ram usage on my vps with plesk 12 installed

without any traffic and with just one mybb and wordpress it show 900MB RAM USING PLEASE HELP
 
Depending on the services running on your server and the number of visitors your server is getting, this might be correct. But you might also be interpreting the numbers incorrectly, it's a common issue. So, before going deeper into the problem, let's establish what's going on.

Please log in to the shell of your server and post the output of the command:
Code:
free

Take into account that RAM used by buffers/cache is only used to speed up your server and would be automatically freed if needed by programs. You should consider it as free.

If your actual RAM usage is indeed high, please also post the output of (the command will display top 30 processes that use the most of the resident memory, in kb):
Code:
ps axo pid,rss,comm=|sort -n -k 2 |tail -n 30

If you'd like to see the entire list, run:
Code:
ps axo pid,rss,comm=|sort -n -k 2
 
Back
Top