I need to set up a few WordPress installs and I’m wondering if the “One Click” option includes swap space in the install?
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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Just follow this to add some swap ( This is what I do on most servers )
free -m sudo fallocate -l 2G /swapfile ls -lh /swapfile sudo chmod 600 /swapfile ls -lh /swapfile sudo mkswap /swapfile sudo swapon /swapfile swapon -s sudo vim /etc/fstab
! Add this to fstab: /swapfile swap swap sw 0 0
cat /proc/sys/vm/swappiness
sudo sysctl vm.swappiness=10 sudo vim /etc/sysctl.conf
! Add below to sysctl.conf: vm.swappiness = 10
REBOOT and Verify ( shutdown -r now , free -m )
Further, do any of the other one click installs set up swap?