Using 400mb for Wordpress that's running on nginx?
So I looked up a quick little guide on how to get wordpress installed on nginx since it's what I use on almost all of my sites, and to my surprise when I had gotten everything installed I was using 420 of 720mb. I'm not really sure if this is normal since I'm new to nginx and even virtual hosting for that matter.
I used this 4 part guide to install:
I've never worked with nginx so any tips or suggestions?
2 Replies
Besides, the tutorial that you used only promises "high performance". It doesn't promise that it will give you low memory usage. In fact, it's easy to get high performance if you just throw more memory at the problem.
What's your value of pm.maxchildren? Part 2 of the tutorial suggests 5, in which case PHP would use up to (5 x memorylimit) MB of memory, plus a few more MB for the interpreter itself. WordPress typically requires at least 32MB of memory_limit, and even higher if you have a lot of heavy plugins. So that's at least 160-180MB.
Also, Part 4 of the tutorial suggests a high value (128MB) for apc.shm_size – insanely high, in my opinion. If all of that cache were actually utilized, PHP could easily gobble up 300MB of memory. Add nginx, MySQL, and a few other system services, and 420MB sounds like a reasonable result.
And this will probably give you much better performance than an Apache/mod_php setup that uses the same amount of memory. So the tutorial does deliver what it promised.
http://www.linuxatemyram.com/