- Joined
- Apr 24, 2016
- Messages
- 424
- Points
- 18
To backup a website on WHM/cPanel using rsync, you can follow these steps:
This will copy the website files from your cPanel account to the specified remote server directory.
To backup a website from your current server to another server using rsync in WHM, you can follow these steps:
Hope it helps!
- Log in to your WHM/cPanel account.
- Click on the "Backup" icon.
- Select "Configure Backup" option.
- Choose "Remote FTP Backup" and enter your remote server's FTP details.
- Save your configuration.
- Log in to your remote server using SSH.
- Run the rsync command, specifying the source directory and the destination directory.
Code:
rsync -avz /home/username/public_html/ username@remote_server:/backup/website_name/
To backup a website from your current server to another server using rsync in WHM, you can follow these steps:
- Log in to your WHM/cPanel account.
- Click on the "Backup" icon.
- Select "Configure Backup" option.
- Choose "Additional Destinations" and then "Add a Backup Destination".
- Select "Rsync" as the backup type.
- Enter the remote server's hostname or IP address, SSH port, remote username and remote backup directory.
- Click the "Save Configuration" button.
- Return to the "Backup Configuration" page, select "Backup User Selection" and choose the user account(s) you want to backup.
- Click "Save Configuration" again to save your changes.
- Finally, click the "Backup Now" button to start the backup process.
Hope it helps!