I've been searching for a way to reliably deploy a Rails 3 application on Windows. I'm quite shocked that it seems like there isn't currently any way to do this. The Apache + few Mongrel services solution don't work currently because Mongrel cannot run in daemon mode therefore I can't install it as a mongrel_service.
The requirements I guess should be:
- A web server compatible with Rails 3.
- Must be able to run as a Windows service, daemonized.
- Must be able to restart automatically in case something goes wrong.
- Must be production quality: no memory leaks, etc.
- Should be able to scale, and accept multiple requests concurrently.
- Less hacks possible.
I found out these things:
- Mongrel is not production ready for Rails 3 (1.2.0pre), I experience memory leaks quite fast from a console window. The app just exits.
- Mongrel doesn't run in daemon mode (
-d) with Rails 3. - Therefore Mongrel cannot be installed as a service.
- Phusion Passenger is not available on Windows (would be the best solution).
These are the possible solutions I came up with:
- Get a Linux box, install Apache + Phusion Passenger and roll.
- Using thin, however, the author says the thin process is not 'guarded'.
- Using Ngnix, however, the author says he just ran a default app, not a full run app.
- Using Ngnix. I think this solution suffers the same problem as above.
- Using a virtualization of Linux, but I must solve problems like auto-start, etc.
- Run on JRuby within Tomcat.
This might be a handy tool: http://projectkenai.com/projects/winsw
I hope we can find a real solution to this issue.
Update:
I agree that JRuby + a j2ee container is the best bet. Some problems must be resolved like gems with extensions, etc. There are lots of valuable ideas here: http://rails-nutshell.labs.oreilly.com/ch14.html#production_r259035_id35801805