前端之家收集整理的这篇文章主要介绍了
CentOS6安装和配置rsync,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
实验环境:
操作系统CentOS6.5x64
ServerIP地址:192.168.9.104
ClientIP地址:192.168.9.109
1,下载安装rsync
#wgethttps://download.samba.org/pub/rsync/rsync-3.1.2.tar.gz
#tarxfrsync-3.1.2.tar.gz
#cdrsync-3.1.2
#./configure
#make
#makeinstall
2,Server系统配置rsync
#vim/etc/rsyncd.conf
uid=nobody
gid=nobody
usechroot=no
maxconnections=10
pidfile=/var/run/rsyncd.pid
logfile=/var/log/rsync.log
lockfile=/var/lock/rsync.lock
hostsdeny=*
[zabbix]
path=/data0/zabbix
comment=zabbixPHPfile
ignoreerrors
readonly=no
writeonly=no
hostsallow=192.168.9.109192.168.1.104192.168.5.0/24
list=false
uid=root
gid=root
3,Server启动rsync守护进程
#/usr/local/bin/rsync--daemon--config=/etc/rsyncd.conf
#ps-ef|greprsync
#netstat-lanptu|grep873
4,Client同步操作
从Server同步到Client
#rsync-az--delete--progress--exclude"*.PHP"--exclude"class.*"192.168.9.104::zabbix/opt
从Client同步到Server
#rsync-vzrtopg/tmp/5.txt192.168.9.104::zabbix
可以设置定时任务
原文链接:https://www.f2er.com/centos/376223.html