Knowledge
How to optimize server performance
#Performance
Server performance is determinded by a lot of moving parts inside your server. Lets dig in on every aspect that can make a big difference.
Published by Mark van Eijk
on August 16, 2022
Updated on August 17, 2022
· 1 minute read
- Disable unnecessary and unused PHP versions (FPM pools)
- Make sure enough diskspace is available
- Add Swap Space to your server
This article will be continuously updated with new content.
Disable unnecessary and unused PHP versions (FPM pools)
When running PHP applications or websites it's a common mistake to keep unused PHP versions running on your server. Mostly this happens when you upgrade the default PHP server version or add a new PHP version to run your application on. In the background these processes do not much harm, but they always will be occupying precious server memory.
Disable unnecessary and unused PHP versions (FPM pools)
Make sure enough diskspace is available
When a server does not have enough (a few GB's) of diskspace available, it cannot run within optimal conditions. Because of this, as a treshold make sure there is more than 20% available of the total diskspace capacity. To make sure we have enough diskspace available, there are some commands that can help you with this.
Reclaim diskspace on Ubuntu server
Add Swap Space to your server
To increase performance you need to make sure your server has enough memory to make sure it can execute every task. While swap space is slower than usual RAM memory, it is recommended to add at least some (1-2GB) swap space to keep the server running optimal in every situation.
Subscribe to our newsletter
Do you want to receive regular updates with fresh and exclusive content to learn more about web development, hosting, security and performance? Subscribe now!
Related articles
How to measure TTFB (Time To First Byte)
Server performance is determinded by a lot of moving parts inside your server. Lets dig in on every aspect that can make a big difference.