rsync 使用说明
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-15
我主要用rysnc同步文件,rsync是一款非常优秀的文件同步管理软件,它也支持多种操作系统平台,在Unix环境中,rsync有着卓绝的功绩.希望这篇文档能对一些朋友有所帮助. 1. Install [url]http://www.samba.org/rsync/[/url] shell> tar zxvf rsync-x.x.x.tar.gz shell> cd rsync-x.x.x shell> ./configure && make && make install 目前大部分 Unix/Linux 默认即安装了 rsync. 2. /etc/rsyncd.conf shell> touch /etc/rsyncd.conf shell> vi /etc/rsyncd.conf Edit /etc/rsyncd.conf as below: uid = nobody gid = nobody use chroot = no max connections = 5 pid file = /var/run/rsync.pid lock file = /var/run/rsync.lock log file = /var/log/rsync.log [<dst-dir>] path = <dst-dir-fullpath> ignore errors read only = no list = yes auth users = username secrets file = /etc/rsyncd.secrets 3. /etc/rsync.secrets shell> echo "jack:password" >> /etc/rsyncd.secrets shell> chmod 600 /etc/rsyncd.secrets *注:一定要把rsyncd.secrets的权限设为600,否则不能正常进行身份认证. 包括--password-file指向的密码文件,也设成600权限. 4. Autorun >>> Idea 1 - only linux <<< shell> vi /etc/xinetd.d/rsync set DISABLE to yes, the result looks like this: service rsync { disable = no <---------- change to yes socket_type = stream wait = no user = root 拥有帝国一切,皆有可能。欢迎访问phome.net server = /usr/bin/rsync server_args = --daemon log_on_failure = USERID } >>> Idea 2 - on openSUSE <<< shell> echo "/usr/local/bin/rsync --daemon" >> /etc/init.d/boot.local >>> Idea 3 <<< shell> echo "/usr/local/bin/rsync --daemon" >> /etc/rc.local 5. Run daemon shell> rsync --daemon *注一:在rsync的man手册的 CONNECTING TO AN RSYNC SERVER 处有提到: It is also possible to use rsync without a remote shell as the transport. In this case you will connect to a remote rsync server running on TCP port 873. *注二:在rsync的man手册的 --port=PORT 选项解释中有提到: This specifies an alternate TCP port number to use rather than the default port 873. 6. rsync 命令实例 6.1 显示目录内容 命令 ------ a) rsync <dst-dir> b) rsync -r <dst-dir> c) rsync jack@192.168.0.1::<dst-dir> d) rsync ssh_user@192.168.0.1:<dst-dir> 命令说明 --------- a) 显示<dst-dir>目录内容(第一层) b) 递归显示<dst-dir>目录内容 c) 显示远程主机<dst-dir>目录内容 *注1:端口模式, 基于rsync用户的身份验证 *注2:rsync server上的目录具有xx7的权限. d) 查看远程主机<dst-dir>目录内容 拥有帝国一切,皆有可能。欢迎访问phome.net *注1:remote shell模式, 通过ssh连接的基于系统本地用户的身份验证 *注2:这里只使用了一个冒号(:),同时用户名是远程主机的ssh用户,密码也是ssh用户对应的密码. *注3:使用"<dst-dir>",则列出<dst-dir>文件夹本身的信息.若要列出<dst-dir>文件夹内容,应使用"<dst-dir>/". 参数说明 --------- -r 对目录进行递归操作 6.2 本地目录之间同步 命令 ------ a) rsync -av --progress <src-dir>/ <dst-dir> *** 注 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: linux面试题(简答题部分)下一篇: 终于在虚拟机上安装上了LINUX了。
关于rsync 使用说明的所有评论