Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have OpenVZ VPS. I have 512 mb guranteed ram and burstable to 1 GB RAM.

My control panel shows that I am using 523 ram of 1 GB that is 51 % which is quite high for a new site with zero traffic.

My server config is Nginx + PHP-FPM + MySQL + Varnish on Ubuntu 11.04 LTS (Minimal Template)

MySQL was eating around 350 MB. I reduced it by twice by disabling innodb but it messed my wordpress site. So I restarted innodb.

By using top command in ssh I generated memory usage stat: http://pastebin.com/BYhFcB0J

Please help me to reduce my memory usage. I will post any config file if required.

Thanks, HJ


Edit:

I reduced my memory usage by double by converting all existing innodb tables into myisam and disabling innodb.

Run these commands in SSH:

Code:

mysql -A; USE database_name;

(where database_name = the name of your wordpress database)

Then for each table you have to run this command: Code:

ALTER TABLE table_name ENGINE = MyISAM;

(where table_name is the name of the table)

Then disable innodb by adding in mysql conf file ignore_builtin_innodb default_storage_engine=MyISAM

share|improve this question

closed as off topic by Will Jan 15 at 14:34

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

You are looking at virtual memory, which is the total of all memory allocated to the process, including video, any shared libraries, and memory mapped files. The res column is the actual ram in use, and the shr column is the amount of ram that is shareable. Your memory usage is fine.

share|improve this answer
Ok but my vps panel is showing high memory usage. Check it out i.imgur.com/1jpd0.jpg – Himanshu Jain Jan 12 at 14:15

Try to see if Varnish does its job properly. Try to debug your requests to the server and see if it hits the Varnish cache. If it does not, you may need to configure or reconfigure your setup.

share|improve this answer
How can I do that? – Himanshu Jain Jan 12 at 14:19
Try this answer. The Varnish instance may need further configuration to work with Wordpress. Try to test without being logged in. – Florin Popa Jan 12 at 14:31
Thank you very much! – Himanshu Jain Jan 12 at 16:08

Not the answer you're looking for? Browse other questions tagged or ask your own question.