全球主机交流论坛

标题: Linux通过脚本实现远程自动备份 [打印本页]

作者: klum    时间: 2013-10-15 14:20
标题: Linux通过脚本实现远程自动备份
   
考虑到在本机上备份数据,一旦该机器硬盘出现故障,数据无法取出。远程手动备份数据费时费力且不及时。最好的方法就是通过脚本实现远程自动互备。但远程无论是通过SSH登陆,还是通过scp拷贝文件都需要输入密码。为了克服这个问题,首先需要实现不需要密码的SSH登陆,这样就可以使用rsync,scp,rexec等命令来做的远程备份了。

  1. 设置无需密码的ssh登陆,方法如下:

  假设A,B两服务器,现在需要在A机上用root登陆B机,而不需要输入密码,那我们可按照下面的步骤来做:

  1)在A机上生成钥匙对,执行以下命令:

  ssh-keygen -t rsa

  Generating public/private rsa key pair.

  Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa

  Enter passphrase (empty for no passphrase):直接回车

  Enter same passphrase again:直接回车
http://www.chifeng.gov.cn/html/2013-01/12020.html
  Your identification has been saved in /root/.ssh/id_rsa.

  Your public key has been saved in /root/.ssh/id_rsa.pub.

  The key fingerprint is:

  f6:61:a8:27:35:cf:4c:6d:13:22:70:cf:4c:c8:a0:23 root@host1

  这样,在/root/.ssh/路径下会生成id_rsa,和id_rsa.pub,其中id_rsa是密钥,id_rsa.pub是公钥。

  2)把在A机生成的id_rsa.pub拷贝到B机上,假设拷贝到B机的临时目录下,如:

  scp /root/.ssh/id_rsa.pub root@218.242.214.20:/tmp

  3)用root帐号登陆B机,进入其主目录,创建authorized_keys文件,并设置好权




欢迎光临 全球主机交流论坛 (http://bbs.cuwww.com/) Powered by Discuz! X3.2