博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS6安装和配置rsync
阅读量:6156 次
发布时间:2019-06-21

本文共 1170 字,大约阅读时间需要 3 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
实验环境:
操作系统 CentOS6.5 x64
Server  IP地址:192.168.9.104
Client   IP地址:192.168.9.109
1,下载安装
rsync
#wget https://download.samba.org/pub/rsync/rsync-3.1.2.tar.gz
#tar xf rsync-3.1.2.tar.gz
#cd rsync-3.1.2
#./configure 
#make 
#make install 
2,Server系统配置
rsync
# vim /etc/rsyncd.conf
uid = nobody
gid = nobody
use chroot = no
max connections = 10
pid 
file 
/var/run/rsyncd
.pid
log 
file 
/var/log/rsync
.log
lock 
file 
/var/lock/rsync
.lock
hosts deny = *
 
[zabbix]
path = 
/data0/zabbix
comment = zabbix php 
file
ignore errors
read 
only = no
write only = no
hosts allow = 192.168.9.109 192.168.1.104 192.168.5.0
/24
list = 
false
uid = root
gid = root
3,Server启动
rsync
守护进程
# /usr/local/bin/rsync --daemon --config=/etc/rsyncd.conf
# ps -ef | grep rsync
# netstat -lanptu | grep 873
  
4,Client同步操作
从Server同步到Client
# rsync -az --delete --progress --exclude "*.php" --exclude "class.*" 192.168.9.104::zabbix /opt
从Client同步到Server
# rsync -vzrtopg /tmp/5.txt 192.168.9.104::zabbix
可以设置定时任务
本文转自 wpf926 51CTO博客,原文链接:http://blog.51cto.com/wupengfei/1958256,如需转载请自行联系原作者
你可能感兴趣的文章
scanf
查看>>
Socket编程注意接收缓冲区大小
查看>>
SpringMVC初写(五)拦截器
查看>>
检测oracle数据库坏块的方法
查看>>
SQL server 安装教程
查看>>
Linux下ftp和ssh详解
查看>>
跨站脚本功攻击,xss,一个简单的例子让你知道什么是xss攻击
查看>>
js时间和时间戳之间如何转换(汇总)
查看>>
js插件---图片懒加载echo.js结合 Amaze UI ScrollSpy 使用
查看>>
java中string和int的相互转换
查看>>
P1666 前缀单词
查看>>
HTML.2文本
查看>>
Ubuntu unity安装Indicator-Multiload
查看>>
解决Eclipse中新建jsp文件ISO8859-1 编码问题
查看>>
7.对象创建型模式-总结
查看>>
【论文阅读】Classification of breast cancer histology images using transfer learning
查看>>
移动端处理图片懒加载
查看>>
jQuery.on() 函数详解
查看>>
谈缓存和Redis
查看>>
【转】百度地图api,根据多点注标坐标范围计算地图缩放级别zoom自适应地图
查看>>