1개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
3
Hi,
In linux, to run any command in background put an & at the end of the command and also consider using nohup.
As an example, please see below:
nohup python3 -m uvicorn api:app &
You should now be able to see the process running in the output of the below command:
ps -ef
Hope this helps!
Thanks, Rama
관련 콘텐츠
- AWS 공식업데이트됨 2년 전