일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Audit Log
- Elasticsearch
- syslog
- PostgreSQL
- GPU
- K8S
- C
- audit
- Python
- centos 7.5
- 빅데이터
- log
- bash
- 크롬
- GNOME
- RHEL
- 서울시민카드
- 파이썬
- zabbix
- rsyslog
- Kubernetes
- yum
- Shell
- Chrome
- docker
- CentOS
- Elk
- JSON
- Linux
- 디렉토리
- Today
- Total
Sysops Notepad
리눅스 파일시스템 감시 알림 inotify 사용법 본문
리눅스 파일시스템 감시를 통한 변경,생성,삭제,위치변경 알림 inotify 사용법
OS : centos 7.5
# yum install inotify-tools
# inotifywait -e create,delete,modify,move -mrq /test &
# touch /etc/test.txt
/etc/ CREATE test.txt# detected
# vi /etc/inotifywait.conf # create config file
LOGFILE=/var/log/inotify.log
MONITOR=/test
EVENT=create,delete,modify,move
# vi /etc/rc.d/init.d/inotifywait
----------------------------------------------------------
#!/bin/bash
# inotifywait: Start/Stop inotifywait
#
# chkconfig: - 80 20
# description: inotifywait waits for changes to files using inotify.
#
# processname: inotifywait
. /etc/rc.d/init.d/functions
. /etc/sysconfig/network
. /etc/inotifywait.conf
LOCK=/var/lock/subsys/inotifywait
RETVAL=0
start() {
echo -n $"Starting inotifywait: "
/usr/bin/inotifywait \
--format '%w%f %e %T' \
--timefmt '%Y/%m/%d-%H:%M:%S' \
--exclude '.*\.sw[pox].*' \
-e $EVENT \
-o $LOGFILE \
-dmrq $MONITOR
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch $LOCK
return $RETVAL
}
stop() {
echo -n $"Stopping inotifywait: "
killproc inotifywait
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f $LOCK
return $RETVAL
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status inotifywait
;;
restart)
stop
start
;;
*)
echo $"Usage: $0 {start|stop|status|restart}"
exit 1
esac
exit $?
----------------------------------------------------------
# chmod 755 /etc/rc.d/init.d/inotifywait
# /etc/rc.d/init.d/inotifywait start
# chkconfig --add inotifywait
# chkconfig inotifywait on
tail /var/log/inotify.log
'업무 > sys' 카테고리의 다른 글
GlusterFS을 이용한 파일 공유 및 클러스터링 (0) | 2018.11.27 |
---|---|
[Linux] 에서 출력되는 systemd 로그 제거하는 방법 (0) | 2018.11.26 |
Slurm command 정리 (0) | 2018.11.20 |
Zabbix Hostname to Visible name auto registration (0) | 2018.11.05 |
dd명령어를 이용한 디스크 복제 및 초기화 방법 (0) | 2018.11.05 |