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