https://prefect.io logo
y

Youssef

10/28/2020, 5:06 PM
Hello Community I'm new to Prefect and I need your help on some newbie matters 😔 I have a local server with Prefect 0.13 running on it. Everything is running smoothly so far, the only issue I'm facing is the local agent launch. It's bounded to the shell window and I can not launch it background (I've tried some methods like adding & or &>dev/null ..) but nothing seems to be working. Do you have any idea or param I can use to ensure the agent will stay up & running after I close the shell window ? Thanks a lot community 👍
p

Philip MacMenamin

10/28/2020, 5:15 PM
if you
disown
the process before you close your shell it should stay alive
👍 1
eg something like
Copy code
disown "%prefect"
y

Youssef

10/28/2020, 9:30 PM
Thanks Philip. I'll try this and tell you if it works. Thanks a lot 👍👍