linux 實時同步inotify

来源:http://www.cnblogs.com/zhangxinqi/archive/2017/04/05/6667084.html
-Advertisement-
Play Games

#實時同步inotify 1、inotify簡介inotify是一種強大的,細膩度的,非同步的文件系統事件監控機制,linux內核從2.6.13起,加入了inotify支持,通過INOTIFY可以監控文件系統中添加、刪除、修改、移動等各種事件,利用這個內核介面,第三方軟體就可以監控文件系統下文件的各種 ...


#實時同步inotify

1、inotify簡介
inotify是一種強大的,細膩度的,非同步的文件系統事件監控機制,linux內核從2.6.13起,加入了inotify支持,通過INOTIFY可以監控文件系統中添加、刪除、修改、移動等各種事件,利用這個內核介面,第三方軟體就可以監控文件系統下文件的各種變化情況,而inotify-tloos就是實施這樣監控的軟體。

2、inotify實施
檢查rsync daemon服務是否服務正常,可以推送數據實施同步
ps -ef |grep rsync|grep -v grep
root 5959 1 0 18:52 ? 00:00:00 rsync --daemon
1)堅持當前系統是否支持inotify
uname -r 版本在2.6.13以上才支持
2.6.32-504.el6.x86_64
# ls -l /proc/sys/fs/inotify
-rw-r--r-- 1 root root 0 Apr 4 20:23 max_queued_events
-rw-r--r-- 1 root root 0 Apr 4 20:23 max_user_instances
-rw-r--r-- 1 root root 0 Apr 4 20:23 max_user_watches
#顯示這三個文件則證明支持INOTIFY
proc/sys/fs/inotify/max_queued_evnets
表示調用inotify_init時分配給inotify instance中可排隊的event的數目的最大值,超出這個值的事件被丟棄,但會觸發IN_Q_OVERFLOW事件。

/proc/sys/fs/inotify/max_user_instances
表示每一個real user ID可創建的inotify instatnces的數量上限。

/proc/sys/fs/inotify/max_user_watches
表示每個inotify instatnces可監控的最大目錄數量。如果監控的文件數目巨大,需要根據情況,適當增加此值的大小。
例如: echo 30000000 > /proc/sys/fs/inotify/max_user_watches

2)下載inotify源碼包,編譯安裝
wget https://jaist.dl.sourceforge.net/project/inotify-tools/inotify-tools/3.13/inotify-tools-3.13.tar.gz
tar zxvf inotify-tools-3.13.tar.gz
cd inotify-tools-3.13
./configure --prefix=/usr/local/inotify-tools-3.13
make && make install
ln -s /usr/local/inotify-tools-3.13/ /usr/local/inotify
cd /usr/local/inotify

./inotifywait -help
inotifywait 3.13
Wait for a particular event on a file or set of files.
Usage: inotifywait [ options ] file1 [ file2 ] [ file3 ] [ ... ]
Options:
-h|--help Show this help text.
@<file> Exclude the specified file from being watched.
--exclude <pattern>
Exclude all events on files matching the
extended regular expression <pattern>.
--excludei <pattern>
Like --exclude but case insensitive. #排除文件或目錄時,不區分大小寫
-m|--monitor Keep listening for events forever. Without
this option, inotifywait will exit after one
event is received. #始終保持事件監聽狀態
-r|--recursive Watch directories recursively. #遞歸查詢目錄
--fromfile <file>
Read files to watch from <file> or - for stdin.
-q|--quiet Print less (only print events). #列印監控事件的信息
-qq Print nothing (not even events).
--format <fmt> Print using a specified printf-like format
string; read the man page for more details.
--timefmt <fmt> strftime-compatible format string for use with
%T in --format string. #指定時間輸出的格式
-c|--csv Print events in CSV format.
-t|--timeout <seconds>
When listening for a single event, time out after
waiting for an event for <seconds> seconds.
If <seconds> is 0, inotifywait will never time out.
-e|--event <event1> [ -e|--event <event2> ... ]
Listen for specific event(s). If omitted, all events are
listened for. #通過此參數可以指定需要監控的事件,如下:

Exit status:
0 - An event you asked to watch for was received.
1 - An event you did not ask to watch for was received
(usually delete_self or unmount), or some error occurred.
2 - The --timeout option was given and no events occurred
in the specified interval of time.

Events:
access file or directory contents were read #文件或目錄被讀取
modify file or directory contents were written #文件或目錄內容被修改
attrib file or directory attributes changed #文件或目錄屬性被修改
close_write file or directory closed, after being opened in
writeable mode
close_nowrite file or directory closed, after being opened in
read-only mode
close file or directory closed, regardless of read/write mode #文件或目錄封閉,無論讀/寫模式
open file or directory opened #文件或目錄被打開
moved_to file or directory moved to watched directory #文件或目錄被移動至另外一個目錄
moved_from file or directory moved from watched directory
move file or directory moved to or from watched directory #文件或目錄被移動另一個目錄或另一個目錄移動到當前目錄
create file or directory created within watched directory #文件或目錄被創建
delete file or directory deleted within watched directory #文件或目錄被刪除
delete_self file or directory was deleted
unmount file system containing file or directory unmounted #文件或目錄被卸載
實時監控命令:
/usr/local/inotify/bin/inotifywait -mrq --timefmt '%d%m%y %H:%M' --format '%T %w%f' -e create,delete,close_write,attrib /data

inotify缺點:
1)併發不能大於200個文件

實時監控inotify腳本

#!/bin/bash
#inotify jiankong
cmd="/usr/local/inotify/bin/inotifywait"
src="/data"
mod="test"
user="rsyncback"
ip=192.168.233.129
passfile="/etc/rsync.password"
rsyc="/usr/bin/rsync"
#judge
if [ -f "$cmd" ] && [ -e "$src" ] && [ -n "$user" ] && [ -n "$mod" ] && [ -f "$passfile" ] && [ -f "$rsyc" ];then
 echo "file path is ok"
else
  exit 9
fi
while true
do
$cmd -mrq --format '%w%f' -e create,delete,modify,attrib,close_write,move $src|\
while read line
do
   [ ! -e "$line" ] && break || \
   echo $line >> /root/inotiity.log
   $rsyc -az --delete $line ${user}@${ip}::$mod --password-file=$passfile
done
cd $src && $rsyc -az --delete ./ ${user}@${ip}::$mod --password-file=$passfile
done

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 標簽:老男孩教育 Centos6.5安裝選包原創作品,允許轉載,轉載時請務必以超鏈接形式標明文章 原始出處 、作者信息和本聲明。否則將追究法律責任。http://oldboy.blog.51cto.com/2561410/1564620近來發現越來越多的運維小伙伴們都有最小化安裝系統的潔癖,因此,找 ...
  • 執行任何命令返回“-bash: fork: 無法分配記憶體” 原因:系統預設分配的pid使用殆盡 解決方法:echo "kernel.pid_max=64000" >>/etc/sysctl.conf sysctl -p ...
  • ####主機: backup nfs01 ####系統環境: [root@backup ~]# cat /etc/redhat-release CentOS release 6.8 (Final) [root@backup ~]# uname -r 2.6.32-642.el6.x86_64 [ro... ...
  • Windows 操作系統功能豐富,可視化的界面能夠幫助我們提高工作效率。不過,日常使用中,很多用戶都習慣“一隻滑鼠走天下”,頻繁的點擊讓手指疲憊不堪。 為此,我們總結了十個適用於 Windows 7 以上版本操作系統的通用快捷鍵,只要能夠記住,便可以讓操作效率進一步提升,成為周圍人眼中的“高手”。 ...
  • 1、使用該執行打開埠文件vi /etc/sysconfig/iptables2、隨便複製一行現有內容,將你要打開的埠設置上就行了,這裡是打開80埠-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT3、輸入:wq保存退 ...
  • 目錄 1. "基本操作" 1.1. "文件操作" 1.2. "文本操作" 1.3. "目錄操作" 1.4. "SSH, 系統信息 & 網路操作" 2. "基本 Shell 編程" 2.1. "變數" 2.2. "字元串替換" 2.3. "函數" 2.4. "條件" 2.5. "迴圈" 3. "技巧" ...
  • tomcat需要配合java環境來運行,所以我們需要先安裝java(我這裡使用的是java1.7.0版本) 一、準備工作:下載java1.7.0壓縮包 1.將下載的JDK源碼包解壓,並拷貝到指定目錄 2.卸載系統安裝的JAVA環境 3.將JAVA變數添加到環境變數,使所有用戶都可以使用 3.1更新環 ...
  • open a new terminal (ctrl + alt + t) ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...