Restarting a Django application running on Apache + mod_python - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T23:51:08Zhttp://stackoverflow.com/feeds/question/1078166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython6Restarting a Django application running on Apache + mod_pythonibz2009-07-03T07:23:55Z2009-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-1Answer by Achimnol for Restarting a Django application running on Apache + mod_pythonAchimnol2009-07-03T07:41:34Z2009-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#107828210Answer by Daniel Roseman for Restarting a Django application running on Apache + mod_pythonDaniel Roseman2009-07-03T07:58:49Z2009-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#10782890Answer by zdmytriv for Restarting a Django application running on Apache + mod_pythonzdmytriv2009-07-03T08:01:27Z2009-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#10787134Answer by Graham Dumpleton for Restarting a Django application running on Apache + mod_pythonGraham Dumpleton2009-07-03T10:07:07Z2009-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>