rsync简介
rsync是系统下的数据镜像备份工具。 使用快速增量备份工具可以远程同步,支持本地复制,或者与其他、主机同步。linuxRemote SyncSSHrsync
rsync特性
rsync支持很多特性:
- 可以镜像保存整个目录树和文件系统
- 可以很容易做到保持原来文件的权限、时间、软硬链接等等
- 无须特殊权限即可安装
- 快速:第一次同步时会复制全部内容,但在下一次只传输修改过的文件。 在传输数据的过程中可以实行压缩及解压缩操作,因此可以使用更少的带宽rsyncrsync
- 安全:可以使用、等方式来传输文件,当然也可以通过直接的连接scpsshsocket
- 支持匿名传输,以方便进行网站镜像
rsync的ssh认证协议
rsync命令来同步系统文件之前要先登录主机认证,认证过程中用到的协议有2种:remote
- ssh协议
- rsync协议
rsync server端不用启动的进程,只要获取的用户名和密码就可以直接同步文件
端因为不用启动进程,所以也不用配置文件rsyncdaemonremote hostrsyncrsync serverdaemon/etc/rsyncd.conf
ssh认证协议跟的原理是一样的,如果在同步过程中不想输入密码就用打通通道scpssh-keygen -t rsa
这种方式默认是省略了 -e ssh 的,与下面等价:
rsync -avz /SRC -e ssh root@172.16.12.129:/DEST
-a //文件宿主变化,时间戳不变
-z //压缩数据传输
当遇到要修改端口的时候,我们可以:
rsync -avz /SRC -e "ssh -p2222" root@172.16.12.129:/DEST
修改了ssh 协议的端口,默认是22
rsync命令
Rsync的命令格式常用的有以下三种:
rsync [OPTION]... SRC DEST
rsync [OPTION]... SRC [USER@]HOST:DEST
rsync [OPTION]... [USER@]HOST:SRC DEST
对应于以上三种命令格式,rsync有三种不同的工作模式:
1)拷贝本地文件。当SRC和DES路径信息都不包含有单个冒号":"分隔符时就启动这种工作模式。如:
[root@localhost ~]# ls
anaconda-ks.cfg nfs.sh
[root@localhost ~]# rsync -a nfs.sh a.sh
[root@localhost ~]# ls
anaconda-ks.cfg a.sh nfs.sh
[root@localhost ~]# ll
总用量 4
-rw-------. 1 root root 1178 5月 12 04:35 anaconda-ks.cfg
-rw-r--r--. 1 root root 0 8月 9 07:18 a.sh
-rw-r--r--. 1 root root 0 8月 9 07:18 nfs.sh
[root@localhost ~]# ll -i
总用量 4
33575044 -rw-------. 1 root root 1178 5月 12 04:35 anaconda-ks.cfg
33575688 -rw-r--r--. 1 root root 0 8月 9 07:18 a.sh
33699103 -rw-r--r--. 1 root root 0 8月 9 07:18 nfs.sh
2)使用一个远程shell程序(如rsh、ssh)来实现将本地机器的内容拷贝到远程机器。当DST路径地址包 含单个冒号":"分隔符时启动该模式。如:
[root@localhost ~]# rsync -avz nfs.sh root@192.168.201.143:/root/b.sh
The authenticity of host '192.168.201.143 (192.168.201.143)' can't be established.
ECDSA key fingerprint is SHA256:yyi/Hg4mNt7c7SlTVm2OSRdDGq2St7hnPXfyFOTDi9Y.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.201.143' (ECDSA) to the list of known hosts.
root@192.168.201.143's password:
sending incremental file list
nfs.sh
sent 84 bytes received 35 bytes 15.87 bytes/sec
total size is 0 speedup is 0.00
[root@localhost ~]# ssh root@192.168.201.143 'ls -l /root'
root@192.168.201.143's password:
总用量 8
-rw--