글
리눅스 서버는 살아 있는데,
특정 프로세스만 Down 되어 서비스가 먹통이 되는 때가 간혹 있다.
예를들어, 서버의 ICMP는 되나 nginx만 죽었다던지...그런 것이다.
방법을 찾던 중에 Monit 이라는 오픈소스를 알게 되었다.
- 설치
# On RedHat/CentOS(AMI)/Fedora/
yum install monit
# On Ubuntu/Debian/Linux Mint
apt-get install monit
# vi /etc/monit.conf 또는 vi /etc/monit/monitrc
주석 처리 된 내용 중 원하는 설정의 # 을 제거하여 활성화 한다.
set daemon 120 # check services at 2-minute intervals
- 실행
check process mysqld with pidfile /var/run/mysqld/mysqld.pid
group mysql
start program = "/etc/init.d/mysqld start"
stop program = "/etc/init.d/mysqld stop"
if failed host 127.0.0.1 port 3306 then restart
if 5 restarts within 5 cycles then timeout
monit -t
Control file syntax OK
참고 url : https://mmonit.com/monit/documentation/monit.html
https://nolboo.kim/blog/2016/08/13/monitoring-linux-monit/
'Linux' 카테고리의 다른 글
Mikrotik SYN flood 공격 방어 설정 (0) | 2018.10.05 |
---|---|
linux keepalived 를 이용한 VRRP 구성 (0) | 2018.06.21 |
CentOS 7 , CACTI 1.1.38 설치 (0) | 2018.05.10 |
Ubuntu 16.04 - CACTI 1.1.38 최신 버젼 설치 (0) | 2018.05.09 |
Ubuntu 우분투 터치패드 잠금(끄기) (2) | 2016.10.18 |
RECENT COMMENT