首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
Rsync远程同步工具
时间:
2018-10-16 10:57:26
阅读:
170
评论:
0
收藏:
0
[点我收藏+]
标签:
too
启动脚本
安装
eve
zip
NPU
str
img
分享图片
Rsync远程同步工具
1配置rsync源服务器(
http://rsync.samba.org/
)
(1)建立配置文件
vim /etc/rsyncd.conf
uid = nobody //指定运行程序的用户
gid = nobody //指定运行程序的组
use chroot = yes //禁锢在源目录,指只能访问我指定的目录不允许访问其他目录,类似以vsftpd的禁锢
address = 192.168.1.20 //指定监听的地址
port 873 //指定监听的端口
log file = /var/log/rsyncd.log //指定日志文件存放的位置
pid file = /var/run/rsyncd.pid //指定进程文件的位置
hosts allow = 192.168.1.0/24 //指定可以访问的地址,这里如果需要实现异地灾备的时候可以写上公网的IP地址,通过路由器映射进来就可以了。
[www] //指定共享的名字
path = /var/www/html //源目录的实际目录
comment = Dcoument Root of web.lzg.com //这个模块的描述信息
read only = yes(no) //目录为只读(可读可写)
dont compress = .gz .bz2 .zip .z .rar //在传输过程中不在进行二次压缩的文件类型。
auth users = backuper //授权备份的用户
secrets file = /etc/rsyncdusers.db //指定账户信息的数据文件位置
(2)为备份账户创建数据文件
vim /etc/rsyncdusers.db
backuper:123.com //用户和密码,无需建立同名系统用户
chmod 600 /etc/rsyncd_users.db
rsync –daemon
netstat –anput | grep rsync
2配置客户端进行验证
rsync -avz backuper@192.168.1.20::www /myweb****
3创建密码文件自动同步
vim /etc/server.pass
123.com
chmod 600 /etc/server.pass
rsync –avz –delete --password-file=/etc/server.pass backuper@192.168.1.20::www /myweb
4配置inotify+rsync 实时同步
调整inotify内核参数:
vim /etc/sysctl.conf
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
sysctl –p
安装inotify-tools
编写触发时启动脚本
Mkdir /sh
Vim /sh/inotify_rsync.sh
#!/bin/bash
INOTIFY="inotifywait -mrq -e modify,create,move,delete,attrib /myweb/"
RSYNC="rsync -azH --delete --password-file=/etc/server.pass /myweb/ backuper@192.168.1.20::www"
$INOTIFY | while read DIRECTORY EVENT FILE
do
$RSYNC
Done
运行脚本
在服务器上
Chmod –R 777 /var/www/html
验证
Rsync远程同步工具
标签:
too
启动脚本
安装
eve
zip
NPU
str
img
分享图片
原文地址:http://blog.51cto.com/14010760/2300407
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!