Tagged Questions

Mongrel is an open-source HTTP library and web server written in Ruby.

learn more… | top users | synonyms

13
votes
2answers
2k views

Ruby on Rails Server options

The whole issue of setting up a development server for my ruby on rails application confuses me. There is webrick, mongrel, passenger, apache, nginx and many more I am sure, and i dont really ...
11
votes
5answers
6k views

Problem running Mongrel with Rails3 and Ruby 1.9.2

I am new to programming (previously only did html/css/design) trying to start learning RoR via the book Simply Rails 2. However I want to start with the most recent versions of Ruby(1.9.2) and Rails ...
11
votes
5answers
4k views

How do I fix this error? config.gem: Unpacked gem authlogic-2.1.3 in vendor/gems has no specification file

I get this error when launching my Mongrel server... $ script/server --debugger => Booting Mongrel => Rails 2.3.5 application starting on http://0.0.0.0:3000 config.gem: Unpacked gem ...
10
votes
4answers
9k views

`gem install mongrel` fails with ruby 1.9.1

I initiated myself into rails development yesterday. I installed ruby 1.9.1, rubygems and rails. Running gem install mongrel worked fine and ostensibly installed mongrel too. I am slightly puzzled ...
9
votes
3answers
2k views

Weird problem with Rails app and Mongrel

I originally posted a question relating to this problem on serverfault.com: http://serverfault.com/questions/152587/apache-mod-proxy-to-another-server I have since realized that this is not an issue ...
8
votes
1answer
4k views

Serving Large Files Through Nginx via Rails 2.3 Using x-sendfile

Let's say I have a Rails 2.3.2 application fronted by nginx and served by mongrel in which I need to serve a large static file through Rails (to control access to it). I want the Rails app to delegate ...
7
votes
5answers
1k 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 ...
7
votes
3answers
1k 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) ...
7
votes
11answers
6k 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 ...
7
votes
3answers
933 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 ...
7
votes
5answers
5k 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!
6
votes
2answers
1k views

How do you handle SSL in development?

I have an application that uses HTTPS for some of its routes in conjunction with the ssl_requirement plugin. It's deployed and is working fine in production. The question is how best to handle this ...
6
votes
4answers
1k 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 ...
6
votes
2answers
3k 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: ...
6
votes
6answers
381 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 ...
5
votes
3answers
126 views

Error using mongrel 1.2.0.pre2 in rails 3 app on heroku

I am doing authentication from google and was getting request too long error so upon some research I added the mongrel gem. This fixed the request too long error on my local machine. However, now ...
5
votes
1answer
2k views

Howto - Running Redmine on mongrel as a service on windows

I use Redmine on Mongrel as a project manager and I use a batch file (start-redmine.bat) to start the redmine in mongrel. There are 2 issues with my setup: 1. I have a running IIS on the server that ...
5
votes
4answers
2k views

what happened to mongrel? any alternatives on windows?

I've jus saw that mongrel's last updat was about one year ago... http://mongrel.rubyforge.org/wiki/WikiStart?action=diff&version=35 has it been disontinued? is there any other lightweight ...
5
votes
5answers
2k 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 ...
5
votes
4answers
5k views

How do you restart Rails under Mongrel, without stopping and starting Mongrel

Is there a way to restart the Rails app (e.g. when you've changed a plugin/config file) while Mongrel is running. Or alternatively quickly restart Mongrel. Mongrel gives these hints that you can but ...
4
votes
1answer
351 views

How to create a windows service with Rails 3 and Ruby 1.9.2?

How to create a windows service with Rails 3 and Ruby 1.9.2 using Mongrel?
4
votes
1answer
273 views

Ruby Rails Mongrel Server ODBC connection reset

I am currently running ruby on rails (ruby 1.8.7, rails 2.3.8) on a windows 2008 server in IIS7. I am using mongrel rails to run the instances and then adding the instances to a server farm in IIS7 to ...
4
votes
1answer
458 views

What is the maximum file size upload limit in Internet Explorer?

In my Rails application I am able to upload only up to 1.5GB when using Internet Explorer, but when I use Chrome I am able to upload 10GB without a problem. Why is this? I am running Mongrel as my web ...
4
votes
2answers
584 views

Sinatra, progress bar in upload form

I'm developing a Sinatra app that consists of an upload form, with a progress bar indicating how much of the upload has completed. The process, as described by ryan dahl, is the following: HTTP ...
4
votes
0answers
324 views

Installing mongrel service on Windows 2008

We use InstallAnywhere to install our product. One of the components that it needs to install is mongrel. IA invokes the following command line during installation: mongrel_rails service::install ...
4
votes
3answers
683 views

Problem running RoR app in production environment

Have an app that has "listings" - think classified ads - and each listing has a list of tags. The following code fails when I run the app in production mode, but works fine under development mode ...
4
votes
3answers
5k 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 ...
4
votes
6answers
3k 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 ...
3
votes
1answer
867 views

Error calling Dispatcher.dispatch #<NameError: uninitialized constant ActionController::CgiRequest

I'm getting the following error on log/mongrel.6001.log I'm using mongrel_cluster , rails 3 and ruby 1.8.7 I start mongrel_cluster using mongrel_rails cluster::start But when I try to access the ...
3
votes
2answers
285 views

Rails: losing quotes in post parameters

I'm adding full-text search to my Rails site and allowing users to enter double quotes in the search input box. The problem is that the double quotes seem to get filtered out by Mongrel and so I never ...
3
votes
1answer
562 views

Error starting mongrel on windows after using RubyInstaller 1.9.1 RC2

I installed Ruby via the RubyInstaller 1.9.1 RC2 available from rubyforge, updated gems, and installed rails. Everything worked fine using webrick. For fun, I installed mongrel using "gem install ...
3
votes
2answers
255 views

Using a Regex in the URI of a Mongrel Handler

I'm currently using Mongrel to develop a custom web application project. I would like Mongrel to use a defined Http Handler based on a regular expression. For example, everytime someone calls a url ...
3
votes
3answers
579 views

RoR app running on mongrel development but not production

This is my first stab at Ruby on Rails. Just deployed a very simple app to Heroku. The thing is that my app runs flawlessly on mongrel development; When I run it with "mongrel_rails start -e ...
3
votes
1answer
374 views

Does/can Passenger use clusters like Mongrel?

I'm just curious if Passenger does or can utilize clusters like Mongrel can. If so, how can I specifically run Passenger with clusters? I'm using nginx. And if not, how does it outperform Mongrel so ...
3
votes
3answers
2k views

How to implement a progress bar in Ruby?

We want to implement a progress bar for file uploading in one of our Ruby application. This needs to show the exact percentage of the upload. However, despite our best efforts we could not find a way ...
3
votes
5answers
914 views

First request to Rails app is very slow

always the first request (of a working session) to my Rails app is lagging. Switching to production mode doesn't help. I use mongrel and the other requests are handled with acceptable speed. How do ...
3
votes
1answer
395 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
6answers
4k 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
1k 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
322 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 ...
2
votes
1answer
80 views

Why doesn't mongrel start in Rails 3.2.rc?

GEMFILE that starts mongrel gem 'rails', '3.1.0' gem 'mongrel', '>=1.2.0.pre2' GEMFILE that start WEBrick (not mongrel) gem 'rails', '3.2.0.rc2' gem 'mongrel', '>=1.2.0.pre2'
2
votes
1answer
172 views

Ruby process eat 100% cpu

When im trying to logout from my app (using devise) rails application hangs and ruby eat 100% of CPU, after im restarting server it's stil frezeed(cant load page). It gone only when im drop and ...
2
votes
3answers
561 views

Recommended development web server for Rails 3.1 and Ruby 1.9.2

I have been using Mongrel successfully with rails 2.* and 3.0* development, with ruby 1.8.7. I recently started working with Rails 3.1 and ruby 1.9.2. I got my test app running with WEBrick. I don't ...
2
votes
1answer
169 views

How to Use OmniAuth Properly with Rails 2

I am trying to use an OmniAuth (0.2.6) strategy for my application. The architecture is Rails 2.3.10 and Rack is version is 1.1 (this version or higher is required for OmniAuth). A problem that ...
2
votes
1answer
230 views

How to enable output compression (gzip) on everything that goes out of my Ruby on rails on Mongrel/WEBrick Server?

I am not sure this is the right place to ask this question, as answer to this may be coding solution or a config solution :) any way, I am using ruby 1.8.7 and rails 2.3.11 running on the Mongrel ...
2
votes
2answers
178 views

Mongrel server trying to perform GET on 127.0.0.1

I've recently started a Rails 3 project which I checked out from github. The application uses subdomains to access accounts so I had to perform a small change in my etc/hosts/ file so that the app ...
2
votes
1answer
561 views

Making Mongrel/WEBRick serve static assets with future expires header

I'm creating a Rails application which will be deployed to desktop machines, running both the webserver and the browser (it's a test-taking application which needs to be able to run without an ...
2
votes
9answers
2k views

Rails 2.x mongrel won't start after upgrading to rails 3. — mongrel_rails (MissingSourceFile)

After upgarding my rails install to rails3 on osx, I've had problems running my rails 2.x development sites with mongrel. Webrick seems to work, but I really would like to have the nice output of ...
2
votes
3answers
184 views

why use production over development for rails application

Are there any major differences between the two? I have yet to see a doc that explains what the major difference is? Performance?? Thanks
2
votes
1answer
174 views

Can mongrel be used in production for ruby on rails?

Unlike Webrick, can Mongrel be used in production? I'm looking for a small web server for Ruby on Rails that can be used locally in case of an emergency and all lines to the main webserver on the ...

1 2 3 4 5