• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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