Questions tagged [mongrel-cluster]

mongrel-cluster is intended for questions related to the deployment of multiple mongrel servers on the same machine

mongrel_cluster is a rubygem intended to group mongrel servers in order to facilitate the configuration and administration of multiple mongrel instances on the same machine.

References

26 questions
0
votes
1 answer

Problem running Mongrel with Rails3 and Ruby 1.8.7

I am running a linux instance. My question is the same as LoadError running Mongrel with Rails3 and Ruby 1.9.2 except for the fact that I am running Ruby 1.8.7 and I am using Linux. Here is the contents of the mongrel_cluster.log: ** Starting Rails…
0
votes
1 answer

using mongrel cluster

Can someone explain to me what is the purpose of using a mongrel cluster for a single application? If you have three instances of mongrel running, I assume that you use apache to load balance and the user connects to a single instance. But is…
user385948
  • 867
  • 2
  • 8
  • 10
0
votes
2 answers

Mongrel Cluster fails to start

I have an issue with Mongrel cluster start-up, when I start the cluster I am getting the following error: /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in 'gem_original_require': no such file to load --…
Govind N
  • 153
  • 2
  • 7
0
votes
1 answer

Mongrel not detecting changes in Rails classes?

I have a Rails app installed on a Slicehost server running Apache 2 and Ubuntu LTC 10.04. Things have worked beautifully up until now: I edit a file, do a quick mongrel_rails cluster::restart, and the changes are reflected in production. However,…
NudeCanalTroll
  • 2,266
  • 2
  • 19
  • 43
0
votes
1 answer

How to balance load in a Apache + Mongrel application

I was wondering if someone can explain how can a rails application be balanced. Two questions: Does it even help having separate rails applications reading from the same database in the same dedicated server? I understand Apache can balance load…
Will
  • 271
  • 1
  • 3
  • 12
0
votes
3 answers

ruby on rails error while starting mongrel :: no such file to load -- svn/core (MissingSourceFile)

I am using rails 2.3.8 ...i have the following gems installed abstract (1.0.0) actionmailer (2.3.8) actionpack (2.3.8) activemodel (3.2.8) activerecord (2.3.8) activeresource (3.2.8, 2.3.8) activesupport (2.3.18, 2.3.8) ar-extensions (0.9.5) arel…
nnm
  • 1,335
  • 5
  • 18
  • 32
0
votes
1 answer

Using Chef to restart Mongrel cluster via init.d script

I'm using Chef to manage deployments of a Rails application running with Mongrel cluster. My init.d file is very simple. Here's the case for a restart: restart) sudo su -l myuser -c "cd /path/to/myapp/current && mongrel_rails cluster::restart" …
user1454117
0
votes
1 answer

Does Mongrel do IPv6 well?

I'm using mongrel + apache 2.2 + mod_proxy_balancer. apache2.2 is IPv6 well http://httpd.apache.org/docs/2.2/en/bind.html#ipv6 Does Mongrel do IPv6 well? Platform:RHEL ruby:1.8.6
freddiefujiwara
  • 57,041
  • 28
  • 76
  • 106
0
votes
4 answers

Cannot start Mongrel Server

I can't start mongrel server. When I have a look at log file, it tells me that the address that I wanted to use is not available. I tried to check if there were some services using that address, but I could not find any. The error message in log…
user143482
  • 2,341
  • 3
  • 15
  • 7
0
votes
1 answer

How can I be sure each process in my mongrel_cluster is handling requests?

I have a rails application that takes a while to process certain requests (as it processes image uploads). I currently have three mongrel processes in a cluster, and I expect one of the other two to handle a second request if the first one is busy.…
pkaeding
  • 36,513
  • 30
  • 103
  • 141
0
votes
1 answer

mongrel_rails cluster::start does not work, looks for daemons/daemonize

I'm having a mongrel_cluster.yml file with the below content: cat mongrel_cluster.yml --- port: "8000" servers: 2 pid_file: tmp/pids/mongrel.pid log_file: log/mongrel.log cwd: /home/directory When i try to start mongrel_rails cluster::start it…
user1455116
  • 2,034
  • 4
  • 24
  • 48
1
2