当前位置: 技术问答>linux和unix
Rsync与cwRsync问题
来源: 互联网 发布时间:2016-04-01
本文导语: 用linux服务器做ftp服务器 windows 做客户端 用Rsync做同步下载处理 windows客端用的cwRsync软件, 现在的问题是在客户端cmd输入命行行,老是提示要输入密码:(我已做过了密码文件) 现在的问题如何解决不和输入密码问题, ...
用linux服务器做ftp服务器
windows 做客户端
用Rsync做同步下载处理
windows客端用的cwRsync软件,
现在的问题是在客户端cmd输入命行行,老是提示要输入密码:(我已做过了密码文件)
现在的问题如何解决不和输入密码问题,
在windows客户端要如何设置
我的客户端命令行:rsync -avzP -delete --password-file=c:rsyncd.passwd root@192.168.0.128:/00E04C3B095B cygdrive/d/temp
rsync -avzP -delete --password-file=/etc/rsyncd.passwd root@192.168.0.128:/00E04C3B095B cygdrive/d/temp
我就搞不是明白cwRsync到底取linux在服务器做的密码文本还是要取在客户端做的密码文本,两种情况都不成功,
郁闷,有哪位高手,能指点一下,急用
windows 做客户端
用Rsync做同步下载处理
windows客端用的cwRsync软件,
现在的问题是在客户端cmd输入命行行,老是提示要输入密码:(我已做过了密码文件)
现在的问题如何解决不和输入密码问题,
在windows客户端要如何设置
我的客户端命令行:rsync -avzP -delete --password-file=c:rsyncd.passwd root@192.168.0.128:/00E04C3B095B cygdrive/d/temp
rsync -avzP -delete --password-file=/etc/rsyncd.passwd root@192.168.0.128:/00E04C3B095B cygdrive/d/temp
我就搞不是明白cwRsync到底取linux在服务器做的密码文本还是要取在客户端做的密码文本,两种情况都不成功,
郁闷,有哪位高手,能指点一下,急用
|
man rsync
------------------------------------------
Some modules on the remote daemon may require authentication. If so,
you will receive a password prompt when you connect. You can avoid the
password prompt by setting the environment variable RSYNC_PASSWORD to
the password you want to use or using the --password-file option. This
may be useful when scripting rsync.
WARNING: On some systems environment variables are visible to all
users. On those systems using --password-file is recommended.
-------------------------------------------
通上这面这段话,我的理解是这个password-file是本地的文件,是远程daemon制作出来的密码档的镜像
通过这个参数可以达到SCRIPT自动同步的效果
不过在远程的机器上应该是secret文件.权限应该是600,不然会出错。
这个我也是在网上看到的,没有试过,你试一下,如果弄好的话,把你的配置流程发我一份,谢谢
TO mail:
------------------------------------------
Some modules on the remote daemon may require authentication. If so,
you will receive a password prompt when you connect. You can avoid the
password prompt by setting the environment variable RSYNC_PASSWORD to
the password you want to use or using the --password-file option. This
may be useful when scripting rsync.
WARNING: On some systems environment variables are visible to all
users. On those systems using --password-file is recommended.
-------------------------------------------
通上这面这段话,我的理解是这个password-file是本地的文件,是远程daemon制作出来的密码档的镜像
通过这个参数可以达到SCRIPT自动同步的效果
不过在远程的机器上应该是secret文件.权限应该是600,不然会出错。
这个我也是在网上看到的,没有试过,你试一下,如果弄好的话,把你的配置流程发我一份,谢谢
TO mail: