- 论坛徽章:
- 0
|
环境:windows2003 sp1
时间:2006年4月3日
版本:0.1 2006年4月3日
0.2 2006年4月7日
0.3 2006年4月8日
author: tony.liu
msn:
tonyinsh(at)hotmail(dot)com
引用url:
http://www.cublog.cn/u/7198/?u=http://www.cublog.cn/u/7198/showart.php?id=94543
blog 首页:
http://www.cublog.cn/u/7198/
4月3日
分别安装server和client在192.168.0.2和192.168.0.188,都要把安装目录下面的bin 设置为环境变量 好处不多说 嘿嘿
在server的cmd下注册为服务
rsync --config rsyncd.conf --daemon --no-detach
配置rsyncd.conf as follow
use chroot = false
strict modes = false
hosts allow = *
log file = rsyncd.log
pid file = rsyncd.pid
# Module definitions
# Remember cygwin naming conventions : c:\work becomes /cygwin/c/work
#
[test]
path = D:\test
read only = true
transfer logging = yes
auth users = admin root
secrets file = C:\Program Files\cwRsyncServer\passwd.txt
hosts allow = 192.168.0.188
到这里,因为你是要authtication user ,thus need password ,then i create C:\Program Files\cwRsyncServer\passwd.txt as follow:
admin:qwerty
root:qwerty
format as user:password
[ 本帖最后由 shinelian 于 2008-9-23 10:04 编辑 ] |
|