728x90
supervisor 설치
UNIX에서 프로세스 상태 제어를 허용하는 시스템
EPEL 저장소 설치
$ yum install epel-release
supervisor 설치
$ yum -y install supervisor
부팅 시 시작하도록 supervisord 데몬을 시작하고 활성화합니다.
$ systemctl --now enable supervisord
$ systemctl status supervisord
● supervisord.service - Process Monitoring and Control Daemon
Loaded: loaded (/usr/lib/systemd/system/supervisord.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2021-12-10 12:17:16 KST; 2min 20s ago
Main PID: 1247 (supervisord)
CGroup: /system.slice/supervisord.service
└─1247 /usr/bin/python /usr/bin/supervisord -c /etc/supervisord.conf
Dec 10 12:17:16 sangchul-web-1 systemd[1]: Starting Process Monitoring and Control Daemon...
Dec 10 12:17:16 sangchul-web-1 systemd[1]: Started Process Monitoring and Control Daemon.
supervisor 버전 정보 확인
$ supervisord --version
3.4.0
728x90
'리눅스' 카테고리의 다른 글
[리눅스] logpresso log4j2-scan (0) | 2021.12.13 |
---|---|
[리눅스] PHP : mecab-ko 설치 및 사전 적용 (0) | 2021.12.10 |
[리눅스] supervisor(supervisord 데몬) 설치 (0) | 2021.12.10 |
[PHP] PHP-FPM 최신(php-fpm 7.4) 버전 설치하기 (0) | 2021.12.10 |
[리눅스] Redis 최신 버전 설치하기 (0) | 2021.12.10 |
[NGINX] NGINX 최신(안정 버전) 버전 설치하기 (0) | 2021.12.10 |