syslog facility —指定 rsync 发送日志消息给 syslog 时的消息级别 socket options —指定自定义 TCP 选项 lockfile —指定rsync的锁文件存放路径 timeout = 600 —超时时间 模块参数 模块参数主要用于定义 rsync 服务器哪个目录要被同步。模块声明的格式必须为 [module] 形式,这个名字就是在 rsync 客户端看到的名字...
(-h) --help show this help (-h is --help only if used alone) Use "rsync --daemon --help" to see the daemon-mode command-line options. rsync参数的具体解释如下: -v, --verbose 详细模式输出 -q, --quiet 精简输出模式 -c, --checksum 打开校验开关,强制对文件传输进行校验 -a, --archi...
read only ture|false:如果为true,则不能上传到该模块指定的路径下。 list:表示当用户查询该服务器上的可用模块时,该模块是否被列出,设定为true则列出,false则隐藏。 uid/gid:指定传输文件时以哪个用户/组的身份传输。 auth users:指定传输时要使用的用户名。 secrets file:指定密码文件,该参数连同上面的参数如果...
rsync [options] --rsh="ssh -l ssh_user" auth_user@host::module rsync [options] -e "ssh -l ssh_user" auth_user@host::module rsync [options] -e "ssh -l ssh_user"rsync://auth_user@host/module 涉及了两个用户ssh_user和auth_user,由于使用的是远程shell通信方式,所以client要和server端建...
一、概述 rsync是linux 下一个远程数据同步工具 他可通过LAN/WAN快速同步多台主机间的文件和目录,并适当利用rsync 算法减少数据的传输 会对比两个文件的不同部分,传输差异部分,因此传输速度相当快 rsync可拷贝、显示目录属性,以及拷贝文件,并选择性的压缩及递归拷贝 ...
语法:#rsysnc [options] source path destination path 示例: 1 - 启用压缩 1 [root@localhost /]# rsync -zvr /home/aloft/ /backuphomedir building file list ... done bash_logout bash_profile bashrc sent 472 bytes received 86 bytes 1116.00 bytes/sec total size is 324 speedup is 0.58上面...
#rsysnc [options] source path destination path 以下将根据sync的参数和应用场景来给大家介绍具体的用法: 示例: 1 - 启用压缩 [root@localhost /]# rsync -zvr /home/aloft/ /backuphomedir building file list ... done .bash_logout .bash_profile ...
[DEST] #下载至本地哪个位置 # push推送数据命令 push:rsync [OPTION...] SRC...[USER@]HOST:DEST 示例: rsync -avz /backup/2018-10-01 root@172.16.1.41:/tmp/ rsync #备份命令 [options] #选项 SRC... #本地源文件 [USER@] #目标主机的系统用户 HOST #目主机IP地址或域名 [DEST] #目标对应...
# MODULE OPTIONS [davidhome] path = /home/david/ list=yes ignore errors auth users = david comment = David home exclude = important/ [chinatmp] path = /tmp/china/ list=no ignore errors auth users = china comment = tmp_china b. 建立/etc/rsyncd/rsyncd.secrets文件 ...
此通信方式的命令行语法格式同"Access via rsync daemon",但要求options部分必须明确指定"--rsh"选项或其短选项"-e"。 远程shell连接的两端是通过管道完成通信和数据传输的,即使连接的一端是远程主机,当连接到目标端时,将在目标端上根据远程shell进程fork出rsync进程使其成为rsync server。而rsync daemon是事先在...