본문 바로가기
프로그래밍/기타 프로그래밍

[Python] nohup을 활용한 백그라운드 실행하기

by TaeGyeong Lee 2024. 8. 9.

개요 

파이썬 프로그램을 백그라운드에서 실행, 중지하는 방법을 안내합니다.

 

백그라운드 실행 

python nohup 파이썬파일.py

 

백그라운드 실행 중지 

실행한 파이썬 프로그램의 PID를 확인

ps -ef | grep python

 

[ 참고 ] 현재 user가 실행한 프로세스에 한해서 PID 확인

ps -ef | grep python | grep 사용자명

 

프로세스 종료

kill 파이썬PID

 

참고 자료 

 

nohup(1) - Linux manual page

 

man7.org

 

How to get the process ID to kill a nohup process?

I'm running a nohup process on the server. When I try to kill it my putty console closes instead. this is how I try to find the process ID: ps -ef |grep nohup this is the command to kill kill...

stackoverflow.com