As you graduate from a Linux enthusiast to a Linux administrator/superuser in a production/server environment, you start to see the sense in working with more than one web server.
Right now, you might not see the logic in having two similar web servers running at the same time but there will come a time when having an extra server environment creates an ideal backup plan for your primary server.
[ You might also like: Lsyncd – Synchronize Local Directories with Remote Linux ]
To reduce or counter unavoidable website downtime, a secondary web server should be set up to automatically take over from a primary web server. This setup process that enables two web servers to communicate with one another is called server syncing.
Advantages of Web Server Syncing
Let’s discuss some advantages of having a web server syncing operation.
- When data is copied from the primary server to/from the secondary server, permissions, ownership, and other special attribute settings from the initial server environment are retained.
- You will be dealing with lesser bandwidth since targeted data transfers adhere to compression and decompression data transfer protocols.
- If the primary web server already has user-deleted files and directories and the secondary server still has these files and directories in place, the data transfer and synchronization process will verify and delete those files and directories to ensure the two servers’ directory structures are in sync.
- The two servers’ synchronization action also applies to changed data bytes and blocks.
- If you are concerned about data encryption during your server-to-server data transfer operations, this web servers syncing mechanism supports SSH; an encrypted network protocol.
Requirements for Syncing Two Web Servers
In this case, you need to have two web servers running and their respective domain names or IP addresses. In my case, I will use the following two servers as my primary and secondary web servers:
Main server IP address: 3.135.207.198 Secondary server IP address: 18.118.208.79
Installing Rsync for Syncing Two Web Servers
For our web servers’ syncing operation to be successful, we are going to need the help of the rsync tool. You can install it on your preferred Linux distribution server from either of the following package installation commands. Rsync installation should take place on both the main server and the secondary server you wish to sync.
$ sudo apt-get install rsync [On Debian, Ubuntu and Mint] $ sudo yum install rsync [On RHEL/CentOS/Fedora and Rocky Linux/AlmaLinux] $ sudo emerge -a sys-apps/rsync [On Gentoo Linux] $ sudo pacman -S rsync [On Arch Linux] $ sudo zypper install rsync [On OpenSUSE]
Syncing Two Web Servers Using Rsync in Linux
Before performing syncing, make sure to identify your rsync user on the main/primary server. You can use the already established root user on your Linux system. On my end, I will use the already existing ubuntu user.
Next, you need to identify the server directories you wish to sync on your active primary and secondary servers. On my end, I will try to sync the webserver directories /var/www that exist on both servers.
On my backup/secondary server, I will run the following rsync command that points and links its /var/www directory with the one on the main/primary server.
$ sudo rsync -avzhe ssh [email protected]:/var/www/ /var/www/
As per the executed rsync command from the above screen capture, the files and directories that existed in the main server have been synced and copied to the backup server.
[ You might also like: Rsync Show Progress When Syncing Files in Linux ]
Automatically Syncing Two Web Servers Using Rsync in Linux
You don’t need to every time sync your web servers manually. To automate this syncing operation, consider the following two-step approaches:
Step 1: Configuring SSH Passwordless Login
On your backup/secondary server, you need a public and private key. You can generate one from the following command:
$ sudo ssh-keygen -t rsa -b 2048
Remember to run the above command on your backup server.
Also, remember to skip setting up a passphrase by pressing [Enter] to leave the passphrase field blank.
Next, these generated public and private keys need to be copied to the primary/main server from the backup server. Use a command similar to the following to achieve this objective:
$ sudo ssh-copy-id -i /root/.ssh/id_rsa.pub [email protected]
Now access the main server and confirm the newly added keys on your main server:
$ ssh [email protected] $ sudo nano .ssh/rsa
We are now done with sharing the required key files with our two servers (primary and secondary servers).
Step 2: Automatically Syncing Two Web Servers via Cron Job
On the backup/secondary server, configure the crontab file for automatic server syncing:
$ sudo crontab -e
You will be asked to choose an editor for opening the crontab file:
At the bottom of the opened file, add a cron job schedule for syncing your servers:
*/5 * * * * rsync -avzhe ssh [email protected]:/var/www/ /var/www/
As per the above cron job entry on the crontab file, the main and primary web servers will be automatically syncing after every five minutes.
Once you save your changes and exit the editor, the cron job should install and activate itself.
$ sudo crontab -e
Automatically syncing your primary web server with a secondary web server saves you from having to deal with server downtime issues, errors, and also creates the perfect backup plan for a productive and highly trafficked website server that you wish to remain active.
Will this work with a Plesk server, I’m looking for an easy way to sync my server and backup server, located in two different datacenters.
@Mike,
Yes, it will work with the Plesk server as well…
I am using lsyncd to auto sync.