Servers

Avoid server downtime using Cloudflare Health Checks

Cloudflare has a small but vital tool which is somewhat hidden in the account called Health Checks / Health Check Analytics. These tools allow you to check the health of various IP addresses or hostnames. Monitoring any web application is vital, and the faster the…

Various methods to improve rsync speeds

rsync is a command line tool to transfer data between a source and a destination. A destination or source can be remote. Avoid the following: Use the following in the command: $ rsync -avAXEWSlHh /source /destination --no-compress --info=progress2 --dry-run Test using --dry-run, then remove this…

Run wget in the background to download large files

wget is a powerful command to copy files from one server to another. However when downloading large files the following commands will help you continue your work or allow you to shutdown the command window and return at a later stage. Example $ wget -bqc…

Optimizing PHP-FPM: A Step-by-Step Guide

PHP-FPM is a FastCGI process manager that is used to handle high traffic on web servers. However, sometimes this service can cause high load on servers itself. In this article, we will discuss the best practices for tuning PHP-FPM to handle high traffic. PHP-FPM is…

How to check for disk errors on Linux

Keeping your disks healthy is the number one method to prevent data loss. The commands below will assist with ensuring this does not happen. As always, taking backups, or at least having backups available is important to ensure your data is kept secure. You can…