博客
关于我
Centos6.9-rsync+sersync实现服务器资源实时同步
阅读量:263 次
发布时间:2019-03-01

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

目标服务器配置

1. 安装 rsync

在目标服务器上安装 rsync,可以通过以下命令实现:

yum -y install rsync

2. 配置 rsync 服务

为了实现文件同步功能,我们需要配置 rsync 服务器。以下是详细的配置步骤:

2.1 Созд写 rsync 配置文件

创建或修改 rsync 的配置文件 rsyncd.conf,默认路径为 /etc/rsyncd.conf。配置文件内容如下:

# 设置同步用户UID和GIDuid = rootgid = root# 禁用 chroot 模拟use chroot = no# 允许所有 IP 访问(根据实际情况调整)hosts allow = *# 设置最大连接数max connections = 3# 生成 rsync 服务器的 PID 文件pid file = /var/run/rsyncd.pid# 设置锁文件路径lock file = /var/run/rsync.lock# 添加新的同步模块(如:tp5shop)[tp5shop]# 需要同步的本地目录(注意:路径需为绝对路径)path = /usr/local/nginx/html/tp5shop# 模块备注信息comment = tp5shop# 是否只读(默认为只读)read only = false

2.2 启动 rsync 服务

将 rsync 以守护进程形式启动:

/usr/bin/rsync --daemon

3. 源服务器配置

3.1 安装 sersync

源服务器需要安装并配置 sersync,实现文件监控与同步。安装步骤如下:

# 下载 sersync 二进制包wget https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/sersync/sersync2.5.4_64bit_binary_stable_final.tar.gz# 解压并移动到指定目录mv sersync2.5.4_64bit_binary_stable_final.tar.gz /usr/local/shellcd /usr/local/shelltar xf sersync2.5.4_64bit_binary_stable_final.tar.gzmv GNU-Linux-x86 sersync

3.2 配置 sersync 服务

根据实际需求修改 confxml.xml 配置文件:

vim confxml.xml

推荐修改内容如下:

3.3 启动 sersync 服务

启动 sersync 服务并设置为后台进程:

/usr/local/sersync/sersync2 -n 10 -d -o /usr/local/sersync/confxml.xml

3.4 配置文件过滤规则

confxml.xml 中添加需要的过滤规则(如以下示例):

4. 操作验证

验证配置是否正确,可以通过以下命令查看进程状态:

ps aux | grep sersync

5. 高级配置(如需)

根据实际需求,进一步优化配置:

  • 调整 max connections(最大连接数)
  • 修改 hosts allow(允许访问的 IP 集合)
  • 配置访问日志等

以上配置均可根据实际网络环境和需求进行调整。

转载地址:http://jbhx.baihongyu.com/

你可能感兴趣的文章
paramiko模块
查看>>
param[:]=param-lr*param.grad/batch_size的理解
查看>>
spring mvc excludePathPatterns失效 如何解决spring拦截器失效 excludePathPatterns忽略失效 拦截器失效 spring免验证拦截器不起作用
查看>>
Spring Cloud 之注册中心 EurekaServerAutoConfiguration源码分析
查看>>
Parrot OS 6.2 重磅发布!推出全新 Docker 容器启动器
查看>>
Parrot OS 6.3 发布!全面提升安全性,新增先进工具,带来更高性能
查看>>
ParseChat应用源码ios版
查看>>
Part 2异常和错误
查看>>
Pascal Script
查看>>
Spring Boot集成Redis实现keyspace监听 | Spring Cloud 34
查看>>
Spring Boot中的自定义事件详解与实战
查看>>
Passport 密码模式
查看>>
Spring Boot(七十六):集成Redisson实现布隆过滤器(Bloom Filter)
查看>>
passport 简易搭配
查看>>
passwd命令限制用户密码到期时间
查看>>
Spring Boot 动态加载jar包,动态配置太强了!
查看>>
Spring @Async执行异步方法的简单使用
查看>>
PAT (Basic Level) Practice 乙级1021-1030
查看>>
PAT (Basic Level) Practice 乙级1031-1040
查看>>
PAT (Basic Level) Practice 乙级1041-1045
查看>>