Hello.
I use the smallest droplet of Ubuntu LAMP 14.04 that uses 512MB of ram. Is there an minimum recommendation of amount of RAM for running a single WordPress installation? I would like to run at least two WordPress installations on different domains on the same droplet. These two webpages is not heavily trafficated.
Would it work fine using the smallest droplet, or should I upgrade? What is your recommendation?
Kind regards Johan
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I run up to 7 Wordpress sites on a single 512mb droplet. The sites are all low to medium traffic.
If I know a website is going to be very busy, I give it it’s own droplet. If a site will be using woocommerce or such, I give it its own droplet
setting up a swap would help things quite a bit.
There is a tutorial somewhere on DO, and also a guy made a script that does it for you ( I just use this script when I set up a new droplet) https://github.com/CraftThatBlock/SwapUbuntu
I’m using the same setup, 15 sites all with their own WP installs on a single $5 droplet, all low traffic… I do have swap operational… Here are the instructions for swap…
sudo fallocate -l 2G /swapfile (creates 2gb swapfile)
sudo chmod 600 /swapfile (restricts permissions)
sudo mkswap /swapfile (creates swapfile directory)
sudo swapon /swapfile (turns swapfile on)
sudo sh -c 'echo "/swapfile none swap sw 0 0" >> /etc/fstab' (turns swapfile on every boot)
sudo shutdown -r now (reboots server)
Good luck :)
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.