博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
搭建 rsync server
阅读量:6123 次
发布时间:2019-06-21

本文共 883 字,大约阅读时间需要 2 分钟。

hot3.png

1. 准备 rsyncd.conf

 

port = 1873

uid = nobody

gid = nobody

use chroot = no

max connections = 9

lock file = /home/s/logs/repo/rsync/rsyncd.lock

pid file = /home/s/logs/repo/rsync/rsyncd.pid

log file = /home/s/logs/repo/rsync/rsyncd.log

transfer logging = yes

log format = %o %h [%a] %m (%u) %f %l

 

read only = false

write only = true

 

auth users = repo

secrets file = /home/s/apps/repo/rsync/rsyncd.secrets

 

[dev]

path = /home/s/var/repo/dev/incoming

comment = dev repository 

 

[stable]

path = /home/s/var/repo/stable/incoming

comment = stable repository 

 

2. 准备 rsyncd.secrets

 

myuser:mypassword

 

3. 启动 rsyncd

 

/usr/bin/rsync --daemon --config /home/s/apps/repo/rsync/rsyncd.conf

 

/usr/bin/rsync --daemon --help

 

4.  客户端上传文件

 

rsync --port=1873 -auv README.txt  ::dev

rsync --password-file=repo.password --port=1873 -av data repo@10.119.7.5::repo/tmp/data

 

 

转载于:https://my.oschina.net/kuerant/blog/614990

你可能感兴趣的文章
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>
HTML模块化:使用HTML5 Boilerplate模板
查看>>
登记申请汇总
查看>>
Google最新截屏案例详解
查看>>
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>