To copy from production to standby over the internet I use a cron job
doing
Quote:
rsync -avze 'ssh -p 8022' --exclude-from= ....
|
My
question is: should the cron job run on the production or the standby system.
Root access to the remote system is given by a pass phrase-less ssh key.
Currently I run rsync on the production system. I guess that it is more secure
because the standby needs no ssh login to production.
Running rsync on the standby would use less resources on production. I am concerned that in this case there would be pass phrase-less access from standby to production.
What is your experience?