博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nfs+rsync+inotify实现文件的实时同步
阅读量:5267 次
发布时间:2019-06-14

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

准备三台服务器进行测试:

nfs_server:192.168.12.110

web_server:192.168.12.111

rsync_server:192.168.12.112

网络规划图:

将web服务器的网页根目录/var/www挂载到nfs服务器,同时nfs服务器将文件实时备份到rsync服务器

1.在web服务器上面安装相应的web服务,例如httpd服务,产生相应的/var/www/html文件,此次备份的重点是/var/www下的文件

yum				install httpd*

2.在nfs服务器上安装nfs服务

  nfs服务需要和rpcbind进行通信,所以必须先安装rpcbind和启动rpcbind服务

yum				install rpcbind

yum				install nfs

配置nfs的配置文件/etc/exports

echo				"/www/ 192.168.12.0/24(rw,sync,all_squash)" /etc/exports

/etc/init.d/rpcbind start

/etc/init.d/nfs start

其中rpcbind必须先启动,nfs才可以向rpcbind进行注册

启动完成后检测一下

ps -ef | grep rpcbind

ps -ef | grep nfs

rpcinfo

3.将webserver的/var/www进行挂载

showmount -e 192.168.12.110

mount -t nfs 192.168.12.110:/www/ /var/www/

将nfs的/www挂载到web服务器根目录

df -h

查看是否挂载成功

4.在nfs服务器上面安装inotify-tools软件

安装inotify-tools

yum				install inotify-tools inotify-tools-devels

5.编写inotify监控/www/文件的脚本

echo				"qinger" /etc/rsync.password

#!/bin/bash

/usr/bin/inotifywait -format '%w%f' -e create,close_write,delete /www/

| while read file

do

rsync -avzP /www/ root@192.168.12.112::backup -password-file=/etc/rsync.password

 

done

6.在rsync服务器上安装rsync服务见

  http://www.cnblogs.com/zhangsubai/p/5194490.html

  

转载于:https://www.cnblogs.com/zhangsubai/p/5195795.html

你可能感兴趣的文章
JS博客
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
ASP.NET WebApi 基于OAuth2.0实现Token签名认证
查看>>
283. Move Zeroes把零放在最后面
查看>>
Visual Studio Code 打开.py代码报Linter pylint is not installed解决办法
查看>>
Python 数据类型
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
路由器外接硬盘做nas可行吗?
查看>>
python:从迭代器,到生成器,再到协程的示例代码
查看>>
Java多线程系列——原子类的实现(CAS算法)
查看>>
多线程《三》进程与线程的区别
查看>>