If I use the prefect server start --detach then th...
# prefect-server
r
If I use the prefect server start --detach then the service hangs forever. Any reason ?? Not sure what is blocking in here.
a
I believe this is because the CLI starts the service, then sleeps in a while loop waiting for errors to occur, which would then be caught and handled gracefully. Does the service itself actually hang? I’d expect the service itself to still work properly
l
I recommend you install screen to attach and detach console sessions.
r
The service itself runs fine. When you refer "install screen" what does it mean ?
a
install “screen”. It’s similar to tmux being a terminal multiplexer. Basically giving one terminal window the ability to switch through tabs instead of having 14 terminals open and trying to remember where everything is
r
Got it Luis thanks a lot