I have a django site running in apache/mod_wsgi. Every time after updating the code I need restart apache manually.

mod_wsgi provide a method to do it: http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode which I think is, kind of, not so decent.

So my question is: is there a simpler and more decent way to do it? Such as an apache mod which monitor the files' status or something else. If there's not, is it possible to write an apache mod to do it?

link|improve this question

80% accept rate
What are you expecting by the way of 'simpler and more decent way'? There is really only one way of doing this and it needs to be done from within the Python interpreter where it has knowledge of which files are in use by the application. Any external module isn't going to know what is used and could only monitor a particular part of the filesystem and in doing that would restart on any file change and not just those loaded by the application. You really need to explain why the way given isn't suitable. – Graham Dumpleton Dec 12 '11 at 11:49
@GrahamDumpleton Such as, the mod_wsgi way use an explicit thread to do this. So when the server restart depends on the time interval set in advance and the thread schedule, but not when the new request comes. And this way cannot know which particular part trigger the restart neither, you have to specify which or what kinds of file need to be monitored. – CHENZhao Dec 12 '11 at 13:34
With the monitor script you don't need to tell it what .py files to monitor, it works it out from what is loaded in sys.modules. The time interval isn't usually an issue because you are only meant to use this for development and NOT production. Why is it being time interval based a problem? – Graham Dumpleton Dec 12 '11 at 20:41
feedback

2 Answers

You should find what your looking for under Reloading Daemon Processes at http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode#Restarting_Daemon_Processes

link|improve this answer
I am sorry but I think you misunderstand my question. I mean I do not like the way which let mod_wsgi to monitor the files changing. I want to know if there is another mod which do the monitor and restart work. – CHENZhao Dec 12 '11 at 6:16
@shapeshifter: thanks for the excellent resource. – mkelley33 Dec 12 '11 at 6:20
feedback

Check this out: Autoreloading Launcher

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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