博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lsyncd配置文件
阅读量:6273 次
发布时间:2019-06-22

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


-- User configuration file for lsyncd.

-- Simple example for default rsync, but executing moves through on the target.

-- For more examples, see /usr/share/doc/lsyncd*/examples/

--
settings {
logfile ="/data/mysql/project_nginx.log",
statusFile ="/data/mysql/lsyncd.status",
inotifyMode = "CloseWrite",
maxProcesses = 8,
-- maxConnections = 4,
-- delay = 10,
-- excludeFrom = file,
-- excludeFrom 排除选项
}

-- 远程目录同步,rsync模式 + rsyncssh

sync {
default.rsyncssh,
source = "/data/www/public_html/",
host = "192.168.1.20",
targetdir = "/home/data/www/public_html/",
exclude = "/data/www/public_html/config.inc.php",
-- maxDelays = 5,累计到多少所监控的事件激活一次同步,即使后面的delay延迟时间还未到
-- delay = 2,
-- init = false,这是一个优化选项,当init = false,只同步进程启动以后发生改动事件的文件,原有的目录即使有差异也不会同步。默认是true
rsync = {
binary = "/usr/bin/rsync",
archive = true,
compress = true,
verbose = true,
-- _extra = {"--bwlimit=2000"},
},
ssh = {
binary = "/usr/bin/ssh",
port = 22,
}
}

-- 远程目录同步到西部数码,rsync模式 + rsyncssh

-- sync {
-- default.rsyncssh,
-- source = "/data/mysql/Filebei/xibushuma",
-- host = "23.234.27.190",
-- targetdir = "/www/web/",
-- excludeFrom = "/etc/rsyncd.d/rsync_exclude.lst",
-- maxDelays = 5,累计到多少所监控的事件激活一次同步,即使后面的delay延迟时间还未到
-- delay = 2,
-- init = false,这是一个优化选项,当init = false,只同步进程启动以后发生改动事件的文件,原有的目录即使有差异也>不会同步。默认是true
-- rsync = {
-- binary = "/usr/bin/rsync",
-- archive = true,
-- compress = true,
-- verbose = true,
-- -- _extra = {"--bwlimit=2000"},
-- },
-- ssh = {
-- port = 22000
-- }
-- }

-- sync{default.rsyncssh, source="/var/www/html", host="localhost", targetdir="/tmp/htmlcopy/"}

转载于:https://blog.51cto.com/9025736/2061963

你可能感兴趣的文章
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
Linux下的lds链接脚本简介(二)
查看>>
入门到进阶React
查看>>
C++每日练笔之日期类(基类)
查看>>
SVN 命令笔记
查看>>
修复Postfix 的Relay access denied问题
查看>>
检验手机号码
查看>>
重叠(Overlapped)IO模型
查看>>
ffmpeg study 1
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
MySQL 5.6 for Windows 解压缩版配置安装
查看>>
solrCloud+tomcat+zookeeper集群配置
查看>>