inotify+rsync+mutt+msmtp實現linux文件或者目錄自動更新並且實現發郵件給管理員
實現文件實時同步,並且監控目錄發送郵件給管理員
需求,需要一次性更新多台服務器,人工手動,時間較長。
並且實時監控發郵件到管理員郵箱裡.
服務器架構圖
更新源ip:192.168.0.110
服務器ip:192.168.0.185
192.168.0.185配置
首先安裝rsync
yum -y install rsync
然後等待
定義rsync配置文件/etc/rsyncd.conf 直接寫了shell腳本
#!/bin/bash
cat >> /etc/rsyncd.conf << EOF
uid = nobody
gid = nobody
use chroot = no
max connections = 100
timeout = 600
pid file=/var/run/rsyucd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
[static]
path = 更新目錄地址
ignore errors
read only = no
list = no
hosts allow = 192.168.0.0/255.255.255.0
auth users = www1
secrets file = /etc/www1.pwd
EOF
/etc/rsyncd.conf 其實直接在上面修改也可以的
然後運行
講解配置參數
uid = nobody //運行RSYNC守護進程的用戶
gid = nobody //運行RSYNC守護進程的組
use chroot = 0 //不使用chroot
max connections = 0 // 最大連接數,0為不限制
port = 873 //默認端口873
下面這些文件是安裝完RSYNC服務後自動生成的文件
pid file = /var/run/rsyncd.pid //pid文件的存放位置
lock file = /var/run/rsync.lock //鎖文件的存放位置.指定支持max connections參數的鎖文件,默認值是/var/run/rsyncd.lock.
log file = /var/log/rsyncd.log //日志記錄文件的存放位置
Timeout = 300
通過該選項可以覆蓋客戶指定的IP超時時間.通過該選項可以確保rsync服務器不會永遠等待一個崩潰的客戶端.超時單位為秒鐘,0表示沒有超時定義,這也是默認值.對於匿名rsync服務器來說,一個理想的數字是600.
Log format = %t %a %m %f %b
通過該選項用戶在使用transfer logging可以自己定制日志文件的字段.其格式是一個包含格式定義符的字符串,可以使用的格式定義符如下所示:
%h 遠程主機名
%a 遠程IP地址
%l 文件長度字符數
%p 該次rsync會話的進程id
%o 操作類型:" send" 或" recv"
%f 文件名
%P 模塊路徑
%m 模塊名
%t 當前時間
%u 認證的用戶名(匿名時是null)
%b 實際傳輸的字節數
%c 當發送文件時,該字段記錄該文件的校驗碼
默認log格式為:" %o %h [%a] %m (%u) %f %l" ,一般來說,在每行的頭上會添加" %t [%p] " .在源代碼中同時發布有一個叫rsyncstats的perl腳本程序來統計這種格式的日志文件.
#transfer logging = yes
使rsync服務器使用ftp格式的文件來記錄下載和上載操作在自己單獨的日志中.
syslog facility = local3
指定rsync發送日志消息給syslog時的消息級別,常見的消息級別是:uth, authpriv, cron, daemon, ftp, kern, lpr, mail, news, security, sys-log, user, uucp, local0, local1, local2, local3,local4, local5, local6和local7.默認值是daemon.
模塊參數
[static] //這裡是認證的模塊名,在client端需要指定
path = 更新目錄地址 //需要做鏡像的目錄,不可缺少!
comment = backup web //這個模塊的注釋信息
ignore errors //可以忽略一些無關的IO錯誤
read only = yes //該選項設定是否允許客戶上載文件.如果為true那麼任何上載請求都會失敗,如果為false並且服務器目錄讀寫權限允許那麼上載是允許的.默認值為true.
list = no //不允許列文件
auth users = bak //認證的用戶名,如果沒有這行則表明是匿名,此用戶與系統無關
該選項指定由空格或逗號分隔的用戶名列表,只有這些用戶才允許連接該模塊.這裡的用戶和系統用戶沒有任何關系.如果" auth users" 被設置,那麼客戶端發出對該模塊的連接請求以後會被rsync請求challenged進行驗證身份這裡使用的challenge/response認證協議.用戶的名和密碼以明文方式存放在" secrets file" 選項指定的文件中.默認情況下無需密碼就可以連接模塊(也就是匿名方式).
secrets file = /etc/www1.pwd //密碼和用戶名對比表,密碼文件自己生成
該選項指定一個包含定義用戶名:密碼對的文件.只有在" auth users" 被定義時,該文件才有作用.文件每行包含一個username:passwd對.一般來說密碼最好不要超過8個字符.沒有默認的secures file名,需要限式指定一個(例如:/etc/www1.pwd).注意:該文件的權限一定要是600,否則客戶端將不能連接服務器.
hosts allow = 192.168.0.0/255.255.255.0 //允許主機或網段
該選項指定哪些IP的客戶允許連接該模塊.客戶模式定義可以是以下形式:
單個IP地址,例如:192.168.0.227
整個網段,例如:192.168.0.0/24,也可以是192.168.0.0/255.255.255.0
多個IP或網段需要用空格隔開,“*”則表示所有,默認是允許所有主機連接.
hosts deny = 0.0.0.0/0 //禁止主機
vi /etc/www1.pwd
www1:123
chmod 600 /etc/www1.pwd
----啟動、關閉rsync程序---
rsync --daemon
netstat -anpt | grep rsync
killall -3 rsync
---使用xinetd管理rsync程序----
yum -y install xinetd
vi /etc/xinetd.d/rsync
service rsync
{
disable = no
服務器IP:192.168.0.110
vi /etc/sysctl.conf 內核參數修改
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
sysctl -p 初始化內核參數
首先安裝包
#!/bin/bash
yum install rsync -y
mkdir -p 更新目錄地址,可以根據實際需要添加目錄
wget http://cloud.github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz
tar xzvf inotify-tools-3.14.tar.gz
cd inotify-tools-3.14
./configure
make
make install
cat >>/home/rsync.sh <<EOF
vi 1.sh
#!/bin/bash
rsync -vzrtopg --delete --progress 更新目錄地址 [email protected]::static --password-file=/etc/www1.pwd
發現很多報錯
2013/09/17 12:03:02 [8351] rsync: failed to set times on "views/main" (in static): Operation not permitted (1)
2013/09/17 12:03:02 [8351] rsync: failed to set times on "views/website" (in static): Operation not permitted (1)
2013/09/17 12:03:02 [8351] rsync: failed to set times on "views/website/xy" (in static): Operation not permitted
這個問題是由於權限的問題,chown nobody.nobody
(1)修改前,rsync 推送文件到目標服務器出錯 :
 
(2)去目標服務器查看 /etc/rsync.conf 文件,看uid和gid分別是什麼 :
(3)然後根據配置文件,把目標服務器的目標目錄,chown 目錄的屬主和屬組
views/admin/cmd/sys/setplatgm.php
3281 100% 11.48kB/s 0:00:00 (xfer#356, to-check=40/471)
views/admin/cmd/sys/user.head.php
1071 100% 3.75kB/s 0:00:00 (xfer#357, to-check=39/471)
views/admin/cmd/sys/user.mod.head.php
709 100% 2.48kB/s 0:00:00 (xfer#358, to-check=38/471)
views/admin/cmd/sys/user.mod.php
4064 100% 14.22kB/s 0:00:00 (xfer#359, to-check=37/471)
views/admin/cmd/sys/user.php
2800 100% 9.80kB/s 0:00:00 (xfer#360, to-check=36/471)
views/admin/cmd/sysmsg/
views/admin/cmd/sysmsg/broadcast.head.php
1045 100% 3.66kB/s 0:00:00 (xfer#361, to-check=35/471)
views/admin/cmd/sysmsg/broadcast.php
1232 100% 4.31kB/s 0:00:00 (xfer#362, to-check=34/471)
views/admin/cmd/test/
views/admin/cmd/test/test.php
101 100% 0.35kB/s 0:00:00 (xfer#363, to-check=33/471)
views/admin/cmd/uinfo/
views/admin/datepicker/
views/admin/datepicker/My97DatePicker.htm
1389 100% 4.84kB/s 0:00:00 (xfer#364, to-check=32/471)
views/admin/datepicker/WdatePicker.js
8409 100% 29.33kB/s 0:00:00 (xfer#365, to-check=31/471)
views/admin/datepicker/calendar.js
21639 100% 75.20kB/s 0:00:00 (xfer#366, to-check=30/471)
views/admin/datepicker/config.js
223 100% 0.77kB/s 0:00:00 (xfer#367, to-check=29/471)
views/admin/datepicker/lang/
views/admin/datepicker/lang/en.js
644 100% 2.24kB/s 0:00:00 (xfer#368, to-check=26/471)
views/admin/datepicker/lang/zh-cn.js
1089 100% 3.77kB/s 0:00:00 (xfer#369, to-check=25/471)
views/admin/datepicker/lang/zh-tw.js
1088 100% 3.77kB/s 0:00:00 (xfer#370, to-check=24/471)
測試腳本:發現可以使用了,下面安裝mutt+msmtp
發現一個錯誤,解決如下
[root@localhost mutt-1.4.2.3]# find /usr/ -name "libiconv.so*"
/usr/local/lib/libiconv.so.2
/usr/local/lib/libiconv.so
/usr/local/lib/libiconv.so.2.5.0
[root@localhost mutt-1.4.2.3]# li -s /usr/local/lib/libiconv.so
libiconv.so libiconv.so.2 libiconv.so.2.5.0
[root@localhost mutt-1.4.2.3]# ln -s /usr/local/lib/libiconv.so.2 /usr/lib/libiconv.so.2
[root@localhost mutt-1.4.2.3]# echo "/usr/local/lib/" >>/etc/ld.so.conf
[root@localhost mutt-1.4.2.3]# ldconfig
[root@localhost mutt-1.4.2.3]# ./configure --prefix=/root/mutt-1.4.2.3
[root@localhost mutt-1.4.2.3]# mkdir -p /usr/local/msmtp/etc
修改配置文件
[root@localhost mutt-1.4.2.3]# vi /root/.muttrc
set sendmail="/usr/local/msmtp/bin/msmtp" //msmtp 配置文件目錄
set use_from=yes
set [email protected] //發給誰的郵件
set envelope_from=yes
[root@localhost mutt-1.4.2.3]# vi /root/.msmtprc
host smtp.qq.com
tls off
auth plain
from [email protected] //從哪個郵件發出來
user 312779641 //用戶名
password 密碼
[root@localhost mutt-1.4.2.3]# vi /usr/local/msmtp/etc/msmtprc
defaults
account 312779641
host smtp.qq.com
from [email protected]
auth login
port 25
tls off
user [email protected]
password 密碼
account default:312779641
[root@localhost mutt-1.4.2.3]# mkdir -p /usr/local/msmtp/log
[root@localhost mutt-1.4.2.3]# echo 'set sendmail="/usr/local/msmtp/bin/msmtp"' >>/etc/Muttrc
[root@localhost mutt-1.4.2.3]# echo "set use_from=yes" >>/etc/Muttrc
[root@localhost mutt-1.4.2.3]# echo 'set realname="[email protected]"' >>/etc/Muttrc
[root@localhost mutt-1.4.2.3]# echo 'set editor="vim"' >>/etc/Muttrc
[root@localhost mutt-1.4.2.3]# ln -s /usr/local/msmtp/bin/msmtp /usr/bin
[root@localhost mutt-1.4.2.3]# /usr/local/mutt/bin/mutt -s "test" -c [email protected]</1.txt 發送郵件測試
-s 郵件標題 緊接的是接收郵件地址 -c 抄送地址 "< "為郵件正文 -a是附件。
如果發送不成功,請檢測下配置文件。
[root@localhost ~]# vi mon.sh 監控目錄
#!/bin/bash
clear
src=更新目錄地址
/usr/local/inotify/bin/inotifywait -m -r -d -o /tmp/monitor.log --timefmt '%F%T' --format '%T%w%f%e' -e modify,attrib,move,close_write,create,delete,delete_self $src
#!/bin/bash
src=更新目錄地址
des1=static
user1=www1
host1="192.168.0.185"
/usr/local/bin/inotifywait -m -r -d -o /tmp/monitor.log --timefmt '%F%T' --format '%T%w%f%e' -e
modify,attrib,move,close_write,create,delete,delete_self $src| while read DIRECTORY EVENT FILE
do
rsync -vzrtopg --delete --progress 更新目錄[email protected]::static --password-file=/etc/www1.pwd
echo "${files} was rsynced" >> /tmp/rsync.log 2>&1
done
-m, 即--monitor,表示始終保持事件監聽狀態。
-r, 即--recursive,表示遞歸查詢目錄。
-q, 即--quiet,表示打印出監控事件。
-e, 即--event,通過此參數可以指定要監控的事件,常見的事件有modify、delete、create、attrib等
--timefmt:指定時間的輸出格式
--format:指定變化文件的詳細信息
[root@localhost ~]# vi send.sh
#!/bin/bash
clear
path_f=/tmp/monitor.log
function mutt_send()
{
/usr/local/mutt/bin/mutt -s "WARN" -c [email protected]</tmp/monitor.log
}
if [ -s $path_f ]; then
echo "mail send.......";sleep 1
/usr/local/mutt/bin/mutt -s "WARN" -c [email protected]</tmp/monitor.log
fi
cat /dev/null > $path_f
[root@localhost ~]# ll
總用量 388
-rw-r--r-- 1 root root 380 9月 17 18:13 2.sh
drwxrwxrwx 6 1000 1000 4096 9月 18 09:23 inotify-tools-3.14
-rw-r--r-- 1 root root 358772 3月 14 2010 inotify-tools-3.14.tar.gz
-rw-r--r-- 1 root root 221 9月 18 09:24 mon.sh
drwxr-xr-x 7 1000 1000 4096 9月 17 15:23 msmtp-1.4.31
drwxr-xr-x 9 3121 3121 12288 9月 17 15:25 mutt-1.4.2.3
-rw------- 1 root root 114 9月 18 09:11 nohup.out
-rw-r--r-- 1 root root 323 9月 18 09:37 send.sh
後台運行監控腳本
nohup /bin/bash /root/monitor.sh &
crontab –e
*/5****/bin/bash/root/sendmail.sh
保存退出並重啟服務
/etc/init.d/crond restart
測試:
[root@localhost ~]# cd 目錄
[root@localhost ]# touch 123456
[root@localhost ]# rm -rf *
[root@localhost ]# cd /root/
[root@localhost ~]# sh send.sh
mail send.......
[root@localhost ~]#
本文出自 “▁▁技術控ヽ” 博客,請務必保留此出處http://chenhao6.blog.51cto.com/6228054/1298375