Ubuntu VPS上配置rsync服务器
安装rsync
执行如下命令安装:
apt-get install -y rsync
然后可以用如下命令看看安装了哪些文件:
dpkg -L rsync
配置rsync
修改配置文件/etc/default/rsync中的相应内容为:
RSYNC_ENABLE=true
增加配置文件/etc/rsyncd.conf,内容为:
port = 873
uid = root
gid = root
use chroot = yes
read only = yes
hosts allow=204.74.0.0/255.255.0.0
hosts deny=*
max connections = 5
log file = /var/log/rsyncd.log
log format = %t %a %m %f %b
syslog facility = local3
timeout = 300
[public]
path = /home/pics/www
list=yes
ignore errors
auth users = pics
secrets file = /etc/rsyncd.secrets
comment = pics www
创建文件 /etc/rsyncd.secrets 内容是用户名和密码,比如:
pics:mypassword
然后执行如下命令:
chmod 700 /etc/rsyncd.secrets
这样就配置好了,可以运行如下命令启动rsync服务端了:
/etc/init.d/rsync restart
rsync客户端
在客户端就可以用rsync命令了,比如:
rsync rsync://[email protected]/public
rsync --password-file=/etc/rsync.password rsync://[email protected]/public /home/pics/www --recursive --times --links --hard-links --delete -av
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。