Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a Flask+Nginx+Gunicorn deployment. I have Nginx setup and running and I run gunicorn as described in the docs:

gunicorn app:app

But when I logout of the server the gunicorn process exits? What is the correct way to make sure it stay running for Nginx to connect to, and restarts if it crashes?

share|improve this question

4 Answers

up vote 5 down vote accepted

I'd look into something like Supervisor.

share|improve this answer
this is exactly what Supervisor is for. – MalphasWats Dec 5 '12 at 11:17

You're going to want to run gunicorn in the background. This should work:

$ gunicorn app:app&

Relevant Wikipedia article

share|improve this answer

Try this:

nohup gunicorn app:app &
share|improve this answer

The key thing to note is that when you start the process from the command line it is a child of your terminal process (i. e. a child of bash). When you log out of the server your bash process is terminated - as are all its children.

You'll want to use whatever system you have in place to manage nginx also manage gunicorn (anything from init.d or Upstart scripts to specialized application process monitors like Monit, Supervisor, Bluepill, Foreman, etc.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.