Restarting a Django application running on Apache + mod_python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:51:08Z http://stackoverflow.com/feeds/question/1078166 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython 6 Restarting a Django application running on Apache + mod_python ibz 2009-07-03T07:23:55Z 2009-07-03T10:07:07Z <p>I'm running a Django app on Apache + mod_python. When I make some changes to the code, sometimes they have effect immediately, other times they don't, until I restart Apache. However I don't really want to do that since it's a production server running other stuff too. Is there some other way to force that?</p> <p>Just to make it clear, since I see some people get it wrong, I'm talking about a <em>production</em> environment. For development I'm using Django's development server, of course.</p> http://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython/1078235#1078235 -1 Answer by Achimnol for Restarting a Django application running on Apache + mod_python Achimnol 2009-07-03T07:41:34Z 2009-07-03T07:41:34Z <p>Use a test server included in Django. (like <code>./manage.py runserver 0.0.0.0:8080</code>) It will do most things you would need during development. The only drawback is that it cannot handle simultaneous requests with multi-threading.</p> <p>I've heard that there is a trick that setting Apache's max instances to 1 so that every code change is reflected immediately--but because you said you're running other services, so this may not be your case.</p> http://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython/1078282#1078282 10 Answer by Daniel Roseman for Restarting a Django application running on Apache + mod_python Daniel Roseman 2009-07-03T07:58:49Z 2009-07-03T07:58:49Z <p>If possible, you should switch to mod_wsgi. This is now the <a href="http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/" rel="nofollow">recommended way</a> to serve Django anyway, and is much more efficient in terms of memory and server resources.</p> <p>In mod_wsgi, each site has a <code>.wsgi</code> file associated with it. To restart a site, just <code>touch</code> the relevant file, and only that code will be reloaded.</p> http://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython/1078289#1078289 0 Answer by zdmytriv for Restarting a Django application running on Apache + mod_python zdmytriv 2009-07-03T08:01:27Z 2009-07-03T08:01:27Z <p>You can reduce number of connections to 1 by setting "MaxRequestsPerChild 1" in your httpd.conf file. But do it only on test server, not production.</p> <p>or </p> <p>If you don't want to kill existing connections and still restart apache you can restart it "gracefully" by performing "apache2ctl gracefully" - all existing connections will be allowed to complete.</p> http://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython/1078713#1078713 4 Answer by Graham Dumpleton for Restarting a Django application running on Apache + mod_python Graham Dumpleton 2009-07-03T10:07:07Z 2009-07-03T10:07:07Z <p>As others have suggested, use mod_wsgi instead. To get the ability for automatic reloading, through touching the WSGI script file, or through a monitor that looks for code changes, you must be using daemon mode on UNIX. A slight of hand can be used to achieve same on Windows when using embedded mode. All the details can be found in:</p> <p><a href="http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode" rel="nofollow">http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode</a></p>