码迷,mamicode.com
首页 > 其他好文 > 详细

配置rsync

时间:2017-04-20 21:52:09      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:rsync   定时备份   远程传送文件   

1、
[root@y etc]# mkdir /etc/rsyncd
[root@y etc]# touch /etc/rsyncd/rsyncd.conf
[root@y etc]# touch /etc/rsyncd/rsyncd.secrets
[root@y etc]# chmod 600 !$
chmod 600 /etc/rsyncd/rsyncd.secrets
[root@y etc]# touch /etc/rsyncd/rsyncd.motd

2、编辑主配置文件
vi /etc/rsyncd/rsyncd.conf
pid file=/var/run/rsyncd.pid
port=873
address=192.168.35.105
uid=root
gid=root
use chroot=no
read only=no
hosts allow=192.168.0.0/255.255.0.0
hosts deny=*
max connections=5
motd file=/etc/rsyncd/rsyncd.motd
log format = %t %a %m %f %b
syslog facility = local3
timeout = 300
[test]
path=/root/rsync
list=yes
ignore errors
auth users=test
secrets file=/etc/rsyncd/rsyncd.secrets
comment=test

3、配置 /etc/rsyncd/rsyncd.secrets
[root@y ~]# cat /etc/rsyncd/rsyncd.secrets
test:test123

4、启动使的rsync生效
/usr/bin/rsync --daemon --config=/etc/rsyncd/rsyncd.conf

5.创建对应的文件
mkdir /root/rsync

6、设置开机启动
echo "/usr/bin/rsync --deamon --config=/etc/rsyncd/rsyncd.conf" >> /etc/rc.d/rc.local
Tip:这里的启动方式比较特殊,如果你要重启,需要kill掉rsync的进程,再重新运行!



7、在客户端

1、创建密码,服务端的密码
vi /etc/rsync/rsyncd.passwd
test123
2、修改权限
chmod 600 /etc/rsyncd/rsyncd.password
3、同步
/usr/bin/rsync -vzrtopg  --progress /root/111/ test@192.168.35.105::test  --password-file=/etc/rsync/rsyncd.passwd
标注:/root/111 是自己端,第一个test是密码,第二个是模块,file是自己端密码存放位置
同步以后,文件在对端的/root/rsync

8、设置定时计划备份
客户端
crontab -e
*/1 * * * *  /usr/bin/rsync -vzrtopg  --progress /root/111/ test@192.168.35.105::test  --password-file=/etc/rsync/rsyncd.passwd

9,完成

本文出自 “9383764” 博客,请务必保留此出处http://9393764.blog.51cto.com/9383764/1917858

配置rsync

标签:rsync   定时备份   远程传送文件   

原文地址:http://9393764.blog.51cto.com/9383764/1917858

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!