标签:rsync
rsync服务器配置步骤:
1、vi /etc/rsyncd.conf
#Rsync server
#created by lijianfeng 18:26 2017-9-24
#rsyncd.conf start#
uid = rsync
gid = rsync
use chroot = no
max connections = 2000
timeout = 600
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log
ignore errors
read only = false
list = true
hosts allow = 172.16.1.0/24
#hosts deny = 0.0.0.0/32
auth users = rsync_backup
secrets file = /etc/rsync.password
################################################
[backup]
comment = backup by lijianfeng 18:29 2017-09-24
path = /backup
2、创建rsync用户,共享目录/backup
useradd rsync -s /sbin/nologin -M
id rsync
mkdir /backup
chown -R rsync /backup/
3、创建密码文件
echo "rsync_backup:oldboy" >/etc/rsync.password
chmod 600 /etc/rsync.password
cat /etc/rsync.password
4、启动服务并加入开机自启动rsync --daemon
echo "rsync --daemon" >>/etc/rc.local
rsync --daemon
netstat -lntup|grep rsync
ps -ef|grep rsync|grep -v grep
5、关闭防火墙
/etc/init.d/iptables stop
ntpdate time.nist.gov
6、关闭SELINUX
rsync客户端配置步骤:
1、创建密码文件
echo "oldboy" >/etc/rsync.password
chmod 600 /etc/rsync.password
ls -l /etc/rsync.password
cat /etc/rsync.password
2、关闭防火墙,关闭SELINUX
/etc/init.d/iptables stop
ntpdate time.nist.gov
3、定时执行同步命令push:
rsync -avz /tmp/ rsync_backup@172.16.1.5::backup --password-file=/etc/rsync.password 推方式
标签:rsync
原文地址:http://78124107.blog.51cto.com/5557978/1971144