I don't understand SSH and Cron much. I just got remote backup service. To setup the cron they have told me to set it via SSH like below
But I want it to set up via my cpanel cron tab... Can somebody know that if I want to setup cron to make backup of directory say /home/abcd/ then how can I set it up via cpanel with use of crontab without ssh... I asked the support from them but they said, they don't have knowledge in cpanel since they don't use it. They just told me SSH command. But I want to do it via cron option in cpanel...
Help will be highly greatful...
Regards,
Mushy
# echo "15 22 * * * root rsync -avz --exclude=/proc -e ssh / yourusername@yourusername.bqbackup.com:server1" >> /etc/crontab
Various rsync configurations:
Back up entire server: rsync -avz --exclude=/proc -e ssh / yourusername@yourusername.bqbackup.com:server1
Back up home directories: rsync -avz -e ssh /home yourusername@yourusername.bqbackup.com:server1
Back up specific users: rsync -avz -e ssh ~bob ~bill ~sarah yourusername@yourusername.bqbackup.com:server1
But I want it to set up via my cpanel cron tab... Can somebody know that if I want to setup cron to make backup of directory say /home/abcd/ then how can I set it up via cpanel with use of crontab without ssh... I asked the support from them but they said, they don't have knowledge in cpanel since they don't use it. They just told me SSH command. But I want to do it via cron option in cpanel...
Help will be highly greatful...
Regards,
Mushy