6
votes
6answers
238 views
What deployment directories do you use for Rails applications (deploying to a debian box)?
I wonder what's the best deployment directory for Rails apps? Some developers use directories such as /u/apps/#{appname}. Are there any advantages when using /u/apps/#{appname} instead of …
6
votes
3answers
546 views
How to do a rolling restart of a cluster of mongrels
Anybody know a nice way to restart a mongrel cluster via capistrano in a "rolling" style, eg, one mongrel at a time. Would be great to have a bit of wait time in there as well for each, to let the …
5
votes
4answers
370 views
Reduce Mongrel Rails Memory Footprint & Increase performance?
My rails sites run Mongrel, I am having a problem with the amount of memory being used. My ruby-bin processes are using up about 66 MB of resident memory. How can I reduce the amount of memory used …
5
votes
9answers
1k views
Ruby On Rails is slow… ?
I'm writing a web application to monitor a furniture factory production flow. It has thousand of data to handle. So far, I run RoR on Mongrel + MySQL and it's really really slow (2-4min for some …
4
votes
5answers
774 views
Capistrano not restarting Mongrel clusters properly
I have a cluster of three mongrels running under nginx, and I deploy the app using Capistrano 2.4.3. When I "cap deploy" when there is a running system, the behavior is:
The app is deployed. The …
4
votes
3answers
471 views
RoR on Windows with Mongrel
Where is the best tutorial for getting RoR working on a windows box with Mongrel? I'm a complete novice at server management, so the more detailed the better!
3
votes
3answers
255 views
Why can’t Rails work with mod_ruby?
I'm sorry if this sounds like a stupid question, because it seems to be one of those "no duh" things, but can someone explain to me why Rails needs its own server (Mongrel, WEBrick, mod_rails, etc) …
3
votes
3answers
658 views
How to restart Rails from within Rails?
Ok, so I would like to create an action in Rails to restart itself. I did a little searching and found:
http://snippets.dzone.com/posts/show/5002
Which suggests 2 commands, one to stop and another …
3
votes
2answers
435 views
Rails: Unable to access log file
I get the following error when restarting my rails app. I've had this problem before, on another server with another app, but can't remember what the problem was, or how I solved it.
Rails Error: …
3
votes
1answer
213 views
Mongrel::DirHandler equivalent for Passenger
I'm using Mongrel::DirHandler to control response headers for static files - this works great on my dev machine. My production machine uses Passenger so my headers aren't getting set. How do I control …
3
votes
7answers
1k views
Proxy choices: mod_proxy_balancer, nginx + proxy balancer, haproxy?
We're running a Rails site at http://hansard.millbanksystems.com, on a dedicated Accelerator. We currently have Apache setup with mod-proxy-balancer, proxying to four mongrels running the application.
…
3
votes
11answers
442 views
What are your favorite Ruby on Rails books and why?
I'm looking to pick up a few books on RoR to help teach myself how to build a scalable RoR app.
I have read the RailsSpace book, and am starting the Rails Way book tonight.
Some topics of interest …
3
votes
2answers
207 views
Mod_rails and mongrel running on the same server?
I'm currently running mongrel clusters with monit watching over them for 8 Rails applications on one server.
I'd like to move 7 of these applications to mod_rails, with one remaining on mongrel. The …
3
votes
6answers
1k views
How do I gracefully shut down a Mongrel web server
My RubyOnRails app is set up with the usual pack of mongrels behind Apache configuration. We've noticed that our Mongrel web server memory usage can grow quite large on certain operations and we'd …
2
votes
4answers
82 views
Recommendations (and Differences) between different Ruby on Rails Production Web Servers
Very soon I plan on deploying my first Ruby on Rails application to a production environment and I've even picked a webhost with all the managed server and Capistrano goodness you'd expect from a RoR …
