备份用的主要命令
sshpass -p目标密码 rsync -a root@目标IP:目标文件 本机路径
错误一:
rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
rsync error: remote command not found (code 127) at io.c(226) [Receiver=3.1.2]
可以看出连接没有建立成功检查出目标机器没有安装rsync,安装一下即可。
错误二:
Host key verification failed.
rsync error: unexplained error (code 255) at rsync.c(638) [Receiver=3.1.2]
看到报错提示主机密钥验证失败。
ssh -v root@172.10.10.249 /bin/true
输入该命令进入冗详模式进行连接调试。
重新建立连接后再次运行备份命令发现可以正常使用了。