[ec2-user@springboot2-webservice ~]$ ps -ef | grep java
ec2-user 543 462 0 19:41 pts/0 00:00:00 grep --color=auto java
ec2-user 21347 1 0 May04 ? 00:09:20 java -jar -Dspring.config.location=classpath:/application.properties,classpath:/application-real.properties,/home/ec2-user/app/application-oauth.properties,/home/ec2-user/app/application-real-db.properties -Dspring.properties.active=real /home/ec2-user/app/step2/springboot2-webservice-1.0.1-SNAPSHOT.jar
$nohup [실행파일]
$nohup [실행파일] & // 백그라운드 실행
1. "ps -ef | grep 쉘스크립트파일명" // 명령으로 데몬형식으로 실행
2. "kill -9 PID번호" // 명령으로 해당 프로세스 종료
//-- 실행
$ nohup php daemon1.php &
//-- 확인
$ ps -ef | grep daemon1.php
root 5376 49641 0 Apr18 pts/3 00:02:22 php daemon1.php
//-- 종료
$ kill 5376