다음과 같은 감독자 구성이 있습니다.
[supervisord]
nodaemon=true
logfile=NONE
[program:service1]
command=/usr/sbin/service1
user=someone
autostart=true
autorestart=true
startsecs=30
[program:service2]
command=/usr/sbin/service2
user=root
autostart=true
autorestart=true
startsecs=30
나는 docker 컨테이너에서 이 구성을 사용하고 있습니다. 문제는 service1이 충돌하면 모든 것이 괜찮은 것처럼 컨테이너가 계속 실행된다는 것입니다. 하나의 서비스가 충돌할 때 전체 컨테이너가 종료되도록 이 동작을 어떻게 변경할 수 있습니까?
답변1
이번 SF Q&A의 제목은 다음과 같습니다.종료 시 결과가 0인 경우 모든 감독자 프로세스를 종료하는 방법당신이 찾고있는 것 같네요.
노트:이 방법은이벤트 리스너.
예시 #1
[supervisord]
nodaemon=true
logfile=NONE
[program:service1]
command=/usr/sbin/service1
user=someone
autostart=true
;autorestart=true ; disabled
;startsecs=30 ; disabled
process_name=service1
[program:service2]
command=/usr/sbin/service2
user=root
autostart=true
;autorestart=true ; disabled
;startsecs=30 ; disabled
process_name=service2
[eventlistener:service1_exit]
command=kill.py
process_name=service1
events=PROCESS_STATE_EXITED
[eventlistener:service2_exit]
command=kill.py
process_name=service2
events=PROCESS_STATE_EXITED
스크립트 kill.py
:
$ cat kill.py
#!/usr/bin/env python
import sys
import os
import signal
def write_stdout(s):
sys.stdout.write(s)
sys.stdout.flush()
def write_stderr(s):
sys.stderr.write(s)
sys.stderr.flush()
def main():
while 1:
write_stdout('READY\n')
line = sys.stdin.readline()
write_stdout('This line kills supervisor: ' + line);
try:
pidfile = open('/var/run/supervisord.pid','r')
pid = int(pidfile.readline());
os.kill(pid, signal.SIGQUIT)
except Exception as e:
write_stdout('Could not kill supervisor: ' + e.strerror + '\n')
write_stdout('RESULT 2\nOK')
if __name__ == '__main__':
main()
import sys
main issue I forgot to point to **process_name**
예시 #2
이 예에서는 이벤트 리스너를 계속 사용하는 보다 단순화된 접근 방식을 보여 주지만 위에 표시된 것과 동일한 작업을 수행하는 방법을 보여 주지만 단일 리스너와 셸 스크립트만 사용합니다.
검색 및 종료 작업을 수행하는 셸 스크립트:
$ cat stop-supervisor.sh
#!/bin/bash
printf "READY\n";
while read line; do
echo "Processing Event: $line" >&2;
kill -3 $(cat "/var/run/supervisord.pid")
done < /dev/stdin
Supervisord.conf:
$ cat supervisord.conf
[supervisord]
nodaemon=true
loglevel=debug
logfile=/var/log/supervisor/supervisord.log
pidfile=/var/run/supervisord.pid
childlogdir=/var/log/supervisor
[program:service1]
command=/usr/sbin/service1
user=someone
autostart=true
;autorestart=true ; disabled
;startsecs=30 ; disabled
process_name=service1
[program:service2]
command=/usr/sbin/service2
user=root
autostart=true
;autorestart=true ; disabled
;startsecs=30 ; disabled
process_name=service2
[eventlistener:processes]
command=stop-supervisor.sh
events=PROCESS_STATE_STOPPED, PROCESS_STATE_EXITED, PROCESS_STATE_FATAL