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年前
- AWS公式更新しました 2年前