• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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