linux 配置 rsync 服务


1、安装rsync 服务

执行命令:yum -y install rsync

2、启动服务:

执行命令:vi /etc/xinetd.d/rsync

修改为:

service rsync
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/bin/rsync
server_args = –daemon
log_on_failure += USERID
}

3、vi /etc/rsyncd.conf

内容如下:

uid = nobody
gid = nobody
use chroot = no
#客户端最大连接数
max connections = 4
#PID及LOCK文件位置
pid file =  /var/run/rsyncd.pid
lock file =  /var/run/rsync.lock
#日志文件位置
log file =  /var/log/rsyncd.log

#设置可以镜像的目录及相关#认证的模块名,在client端需要指定
[webapploan]
#可以镜像的目录
path = /web/loan
#对用途的说明
comment = webappcomment
#服务器上的目录及文件可写
read only = true 
list = false
#允许进行rsync的客户端网段或IP
#hosts allow=192.168.200.0/24,外地IP地址
hosts allow=192.18.1.207 192.18.1.208


退出保存文件。

4、重启服务

执行命令: /usr/bin/rsync --daemon


5、客户端运行的脚步:

[root@Test01-DAIQIAN-AP01 web]# cat rsync_loan.sh 


rsync -vzrtopg --progress --exclude "WEB-INF/classes/auth-client.xml"   --exclude "WEB-INF/classes/spring-base.xml"   [email protected]::webapploan /web/loan





你可能感兴趣的:(linux 配置 rsync 服务)