linux daemon process 자동 감지 스케줄러
리눅스에서는 타임스케줄러인 crontab 기능이 있다. */3 * * * * /{shell_path}/script.sh crontab에 3분마다 실행하도록 설정 script.sh 상세내용 daemon_array=("daemon_process1" "daemon_process2" "daemon_process3") daemon_path=/home for i in "${daemon_array[@]}" do file=$daemon_path/$i/nohup.out if [ -e "$file" ] then pid_info=$(ps -A -o pid,cmd|grep $i.jar | grep -v grep | head -n 3 | awk '{print $1}') if((pid_info > 0 )) then echo "p..