active questions tagged mongrel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:56:06Zhttp://stackoverflow.com/feeds/tag/mongrelhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1792181/ruby-interpreter-crashes-with-a-certain-word0Ruby Interpreter crashes with a certain wordG. Martin2009-11-24T18:58:53Z2009-11-24T22:05:38Z
<p>Ok, this one's a little ridiculous, and I'm almost afraid no one will believe me. But here it goes:</p>
<p>I have written a Ruby Rails application that handles content for tons of domains. Now I know this breaks the cardinal rule of Rails, but each domain has all of its information housed in a config file. I know this is probably wrong, but it is how it is setup right now, and it won't too soon (though it will). Anyway, the name of the domain you want to view is passed in as a parameter (at least in development). This parameter is used to open up the config file of the same name. This means that if I want to view the content for domain xxx, I need to enter (with a Mongrel server active) <a href="http://localhost:3000?name=xxx" rel="nofollow">http://localhost:3000?name=xxx</a>. Rails will refer to xxx.xml, and pull out the necessary info.</p>
<p>This has worked fine for all of the domains so far. It has been easy to generate config files and change them accordingly. Except, now there is a domain that, when I try to view it, crashes the Ruby Interpreter. After testing it, the only thing that causes a problem is the actual domain name, which is pumarunningshoes.com. When I changed the word puma to luma, it worked fine. When I changed it back, everything crashed again. So, I must conclude that Rails, or Mongrel, hates the word "puma". Why is this? Is it a reserved word, or function I do not know about?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1778784/phusion-vs-mongrel-for-rails-application-vps1Phusion vs Mongrel for Rails application VPSLailson Bandeira2009-11-22T14:01:02Z2009-11-23T20:52:29Z
<p>I'm working on a Rails application and it is currently hosted on a shared hosting. However, it is getting a lot of features that requires reasonable processing and I'm thinking of move it to a VPS, clouded server.
I have no experience on server management, but, since it is a simple application, I'd like to manage it myself. Googling a bit, I've found a couple of setup options:</p>
<ul>
<li><strong>Phusion Passenger + Apache</strong>. This seems to be the default option today.</li>
<li><strong>Phusion Passenger + Nginx</strong>. Nginx presents itself as lighter option to Apache, but the latter has much more modules and support.</li>
<li><strong>Mongrel + Apache</strong>. I don't know what to think about Mongrel; the discussions I've found seem to be outdated, but there is a <a href="http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/" rel="nofollow">nice article</a> about a cluster of Mongrels with Apache.</li>
</ul>
<p>So what do you recommend? The application has a light traffic, but performs a lot of processing-intensive operations and serves only a few static files. Memory consumption is important, because on VPS they bill accordingly the memory you need. And, as I am a beginner, documentation and ease of configuration is crucial. It would be nice too if the server had some kind of <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">Comet/server-pushing</a> support; I'm planning to add it soon (I cannot stand the nasty idea of pooling).</p>
http://stackoverflow.com/questions/149060/what-are-your-favorite-ruby-on-rails-books-and-why3What are your favorite Ruby on Rails books and why?levi rosol2008-09-29T15:02:26Z2009-11-23T14:14:20Z
<p>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. </p>
<p>Some topics of interest are:</p>
<ul>
<li>REST - considering using Amazon's SimpleDB</li>
<li>Using RSpec effectively</li>
<li>memcached - server architecture and code implementation</li>
<li>mongrel - server architecture</li>
<li>MySQL</li>
</ul>
http://stackoverflow.com/questions/1728978/recommendations-and-differences-between-different-ruby-on-rails-production-web2Recommendations (and Differences) between different Ruby on Rails Production Web ServersAsh2009-11-13T12:37:13Z2009-11-13T18:43:46Z
<p>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 provider.</p>
<p>The provider allows for Mongrel, Thin, Passenger & FastCGI web servers, which seems very flexible, but I honestly don't know the differences between them. I have looked into them some, but it all gets a bit much when they start talking about features and maximum simultaneous requests - and that this data seems to vary depending on who's publishing it.</p>
<p>I have looked at Passenger (on the surface) - which does seem very appealing to me - but I was under the impression that Passenger wasn't the actual webserver, and instead was more like a layer on top of Apache or nginx and managed spawned instances of the application (like a Mongrel cluster).</p>
<p>Can anyone please set me straight with the differences in layman's terms so as I can choose wisely (because anyone who's seen <em>Indiana Jones and the Last Crusade</em> knows what happens if you choose poorly). </p>
http://stackoverflow.com/questions/1528964/does-mongrel-do-ipv6-well0Does Mongrel do IPv6 well?ffffff2009-10-07T00:56:56Z2009-11-10T13:31:35Z
<p>I'm using
mongrel + apache 2.2 + mod_proxy_balancer.</p>
<p>apache2.2 is IPv6 well
<a href="http://httpd.apache.org/docs/2.2/en/bind.html#ipv6" rel="nofollow">http://httpd.apache.org/docs/2.2/en/bind.html#ipv6</a></p>
<p>Does Mongrel do IPv6 well?</p>
<p>Platform:RHEL
ruby:1.8.6</p>
http://stackoverflow.com/questions/1546025/when-to-use-mongrel-as-web-server-for-rails-application2When to use Mongrel as web server for Rails application?Darth2009-10-09T21:01:17Z2009-11-09T13:54:30Z
<p>When I started my first <em>bigger</em> Rails application, I chose to use <strong>Apache</strong> (with Passenger), because I already had some experience with it with PHP, but I don't have any deep knowledge of deploying Rails applications.</p>
<p>How would one choose web server for a Rails app?</p>
<p><strong>Are there any main differences between Apache and Mongrel?</strong><br />
Or is it just a matter of taste?</p>
http://stackoverflow.com/questions/1690951/how-do-i-pass-the-http-username-from-apache-to-mongrel-rails0How do I pass the HTTP username from Apache to Mongrel/Rails?Lemming2009-11-06T22:32:55Z2009-11-08T17:49:36Z
<p><strong>The goal:</strong> running a Rails application on Mongrels, allowing access through Apache after doing basic HTTP Authentication</p>
<p><strong>The problem:</strong> reading the supplied username from within Rails</p>
<p>Apache:</p>
<pre><code><Proxy balancer://mongrel_cluster>
BalancerMember http://127.0.0.1:4001
# ...
Order deny,allow
Deny from all
AuthType Basic
AuthName "<realm>"
AuthUserFile "<users-file>"
AuthGroupFile "<groups-file>"
Require group <group>
Satisfy Any
</Proxy>
RewriteEngine On
# ...
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ balancer://mongrel_cluster%{REQUEST_URI} [P,QSA,L]
</code></pre>
<p>That works just fine, Apache forces the user to authenticate and forwards to Rails if successful. I omitted a few lines for handling static files and such, and triggering authentication for them as well.</p>
<p>The environment variables from Rails' perspective contain the usual entries and additionally <code>HTTP_X_FORWARDED_HOST</code>, <code>HTTP_X_FORWARDED_SERVER</code> and <code>HTTP_X_FORWARDED_FOR</code>. I was unable to pass custom environment variables by adding them to the rewrite rule:</p>
<pre><code>RewriteRule ... [P,QSA,L,E=foo:bar]
</code></pre>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1403658/ruby-on-rails-getting-http-500-with-no-error-logged-hosted-on-media-temple0Ruby on Rails getting HTTP 500 with no error logged (hosted on Media Temple)Goro2009-09-10T06:26:12Z2009-11-08T12:48:36Z
<p>Hi,</p>
<p>I am trying to deploy my Ruby on Rails application on Media Temple. The application starts fine (Mongrel starts up fine) but I keep on getting a HTTP 500 error. </p>
<p>The problem is that nothing gets written to the log, so I do now know what might be causing this problem. </p>
<p>I have 256M of memory available so I do not believe memory is an issue.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1671303/does-rails-2-0-do-ipv6-well1Does Rails 2.0 do IPv6 well?ffffff2009-11-04T01:57:36Z2009-11-04T15:25:09Z
<p>I'm using mongrel + apache 2.2 + mod_proxy_balancer.</p>
<p>apache2.2 is IPv6 well <a href="http://httpd.apache.org/docs/2.2/en/bind.html#ipv6" rel="nofollow">http://httpd.apache.org/docs/2.2/en/bind.html#ipv6</a></p>
<p>Does Mongrel do IPv6 well?</p>
<p>Platform:RHEL ruby:1.8.6</p>
<p>/actionpack-2.0.5/lib/action_controller/request.rb </p>
<p>which is worried about the particularly .</p>
http://stackoverflow.com/questions/1638920/sending-usr2-to-mongrelrails-sometimes-results-in-an-address-already-in-use-on0Sending USR2 to mongrel_rails sometimes results in an "Address already in use" on the restartBen2009-10-28T17:48:11Z2009-10-28T17:48:11Z
<p>We have a rolling-restart mode for our mongrel cluster that sends a USR2 signal to each running process.</p>
<p>This works great, most of the time. But very occasionally the mongrel process will shutdown, and then fail to restart, with the following error:</p>
<pre><code>/usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/tcphack.rb:12:in
`initialize_without_backlog': Address already in use - bind(2) (Errno::EADDRINUSE)
from /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/tcphack.rb:12:in `initialize'
from /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel.rb:93:in `new'
from /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel.rb:93:in `initialize'
from /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/configurator.rb:139:in `new'
from /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/configurator.rb:139:in `listener'
</code></pre>
<p>Looking though the mongrel source, the USR2 handler calls a synchronous stop on the running server, so it ought to block until the socket has been released.</p>
<p>Has anyone seen this error? </p>
<p>Does anyone have any ideas what might cause it?</p>
http://stackoverflow.com/questions/1581175/capistrano-not-restarting-stopping-but-update-is-working0capistrano not restarting, stopping but update is workingDan Donaldson2009-10-17T01:52:24Z2009-10-26T19:53:33Z
<p>I recently changed machines, and had a few rough spots updating Rails. The server itself stayed as it was. Everything seemed to be fine, but not capistrano. When I make changes and update SVN, running </p>
<pre><code>cap deploy
</code></pre>
<p>the correct new version of the repository is placed on the server. The logging in the terminal running capistrano shows nothing out of the ordinary, but evidently no restart actually takes place because the server continues to run. Running </p>
<pre><code>cap deploy:restart
</code></pre>
<p>Produces </p>
<pre><code>Dans-iMac:rebuild apple$ cap deploy:restart
* executing `deploy:restart'
* executing `accelerator:smf_restart'
* executing `accelerator:smf_stop'
* executing "sudo -p 'sudo password: ' svcadm disable /network/mongrel/urbanistica-production"
servers: ["www.urbanisti.ca"]
Password:
[www.urbanisti.ca] executing command
command finished
* executing `accelerator:smf_start'
* executing "sudo -p 'sudo password: ' svcadm enable -r /network/mongrel/urbanistica-production"
servers: ["www.urbanisti.ca"]
[www.urbanisti.ca] executing command
command finished
* executing `accelerator:restart_apache'
* executing "sudo -p 'sudo password: ' svcadm refresh svc:/network/http:cswapache2"
servers: ["www.urbanisti.ca"]
[www.urbanisti.ca] executing command
command finished
</code></pre>
<p>But no evident change takes place. What might be going on? The Mongrel log on the server shows no changes whatever: it's still running the older version that predates the update.</p>
http://stackoverflow.com/questions/855335/problem-starting-development-server-ruby-on-rails0Problem starting development server - ruby on rails2009-05-12T23:09:18Z2009-10-16T04:00:15Z
<p>Hi</p>
<p>I've recently upgraded to Rails 2.3.2 with Ruby 1.8.7. Whenever I start the server like this:</p>
<pre><code>cd /myproject
script/server
</code></pre>
<p>It hangs. After I cancel it the only error information that I see is:</p>
<pre><code>^C/Users/timstephenson/.gem/ruby/1.8/gems/activesupport-2.3.2/lib/active_support/core_ext/load_error.rb:32:in `new': Interrupt
</code></pre>
<p>The error began after upgrading. Looking in the server log in the project logs folder, nothing is written. Also nothing is in the development log. </p>
<p>I'm using Mac OSX 10.5</p>
<p>I updated all the gems and cleaned out old gems. All old items came from and old computer with a PPC chip and Tiger. Before upgrading to 1.8.7 of Ruby and 2.3.2 of Rails, things were working even though ruby seemed to be compiled for PPC instead of i686.</p>
<p>I can use script/console and interact with the models in my project successfully.</p>
<p>Any suggestions would be appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1574651/ruby-on-rails-application-and-mongrel-failing-to-start0Ruby on Rails Application and Mongrel Failing to StartWalter Lockhart2009-10-15T19:51:44Z2009-10-15T23:12:15Z
<p>Hi Group,</p>
<p>I have a Ruby on Rails (Rails v2.0.2) application which I have developed using Netbeans 6.1 on Mac OS X.</p>
<p>When I tried to run this application this evening (it was working fine this morning) I get the error:</p>
<p>'could not connect to the web server - cannot show <a href="http://localhost:3000" rel="nofollow">http://localhost:3000</a>'</p>
<p>When I try to run the application from terminal using: ./script/server</p>
<p>I get the following error:</p>
<p>=> Booting Mongrel (use 'script/server webrick' to force WEBrick)
=> Rails application starting on <a href="http://0.0.0.0:3000" rel="nofollow">http://0.0.0.0:3000</a>
=> Call with -d to detach
=> Ctrl-C to shutdown server
** Starting Mongrel listening at 0.0.0.0:3000
** Starting Rails with development environment...
nil
Exiting</p>
<p>Can anyone please help me resolve this issue.</p>
<p>Thanks in advance.</p>
<p>Kind Regards</p>
<p>Walter</p>
http://stackoverflow.com/questions/1469725/cannot-start-mongrel-server0Cannot start Mongrel Serverungsophy2009-09-24T04:08:52Z2009-10-10T02:23:43Z
<p>Hi everyone,</p>
<p>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.</p>
<p>The error message in log file:</p>
<p>`initialize_without_backlog': Cannot assign requested address - bind(2) (Errno::EADDRNOTAVAIL)</p>
<p>Any help is appreciated.</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/1502817/apache2-2-x-mongrel-proxy-error0apache2.2 x mongrel proxy errorffffff2009-10-01T09:06:19Z2009-10-03T17:56:29Z
<p>I user apache2.2 mod_proxy_balancer + mongrel + rails2.3
Following error is occured.
"proxy: Error reading from remote server returned by"</p>
<p>I set this my httpd.conf</p>
<pre><code>SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</code></pre>
<p>What's wrong?</p>
http://stackoverflow.com/questions/986934/how-do-i-set-up-a-load-balanced-rails-web-server-using-mongrel-lighttpd-and-iis0how do i set up a load balanced Rails web server using mongrel, lighttpd and iis on windows 2003unknown (google)2009-06-12T14:29:34Z2009-09-24T19:00:02Z
<p>I understand that this is not the perfect environment for doing this but please stick with me and help if you can...</p>
<p>The set up I want to achieve is to have my rails application running on a windows 2003 server, using a pack of mongrels with lighttpd acting as the load balancer and IIS in front of it all passing client requests to lighttpd.</p>
<p>first of all i've followed these instructions:
<a href="http://www.mightyinteractive.com/ruby-on-rails/deploying-to-iis-on-windows/" rel="nofollow">deploying to iis on windows</a></p>
<p>And I've managed to get the application to run, <em>BUT</em> if the client clicks on a link button the app bombs out with a 500 server error.</p>
<p>If I just run against one of the mongrel servers, the the app behaves ok, so I think its lightpd.</p>
<p>Its almost as if the lighttpd gets confused with multiple GET requests (i.e. multiple clicks) and bombs out.</p>
<p>Any help on why i'm getting 500 errors would be helpful, thanks.</p>
http://stackoverflow.com/questions/1420183/should-i-user-apache-or-nginx-passenger-or-mongrel-for-my-rails-application1Should I user Apache or Nginx & Passenger or Mongrel for my Rails applicationTam2009-09-14T07:45:42Z2009-09-14T14:03:26Z
<p>Hello,</p>
<p>I have a Ruby on Rails application that will be a CMS in way which means it's mostly DB intensive. I expect it to have decent amount of traffic so before designing I'm choosing what servers to use. Most important for me is performance.</p>
<p>I heard good things about Nginx and many developers in the Rails community recommends it my only concern about it was that its version is 0.8 which is Beta I believe so I was concerned about potential problems. What is your say?</p>
<p>Also, I want to decide between using Mongrel cluster or Phusion Passenger. What do you think?</p>
<p>I'm planning to user Ruby 1.9 as it has better performance that Ruby 1.8 and I will be using VPS to host my website.</p>
<p>My main things is performance even if it takes longer to setup one over the other.</p>
<p>Your opinion is highly appreciated.</p>
<p>Thanks,</p>
<p>Tam</p>
http://stackoverflow.com/questions/1376208/how-to-ensure-swf-is-cached-by-the-browser-the-first-time-it-is-downloaded-when-s0How to ensure SWF is cached by the browser the first time it is downloaded when serving via HTTP and Mongrel cluster?Intelekshual2009-09-03T22:03:08Z2009-09-03T23:57:20Z
<p>We have a Rails app that instantiates a SWF object 16 times (it has to do this, it's just the nature of the application). Instead of being downloaded once, it is being downloaded 16 times.</p>
<p>How can we ensure this SWF is cached by the browser the first time it is downloaded? It's being served directly from Apache - can we modify the HTTP headers to accomplish this?</p>
<p><strong>Some information:</strong></p>
<ul>
<li><p>Browser caching the resources with
code 304.</p></li>
<li><p>Domain points to cluster and traffic
is forwarded to two servers(.3 and
.4) in the cluster.</p></li>
<li><p>Each server has own copy of the code
with different timestamp of the
files.</p></li>
<li><p>If there are any subsequent requests to the SWF then chances are that .3 or .4 may
serve and browser treats image as modified on the server since image file timestamp is different.</p></li>
</ul>
<p>Any help would be appreciated, as it would greatly improve the app's performance after the initial load.</p>
http://stackoverflow.com/questions/125730/why-do-i-get-an-error-when-starting-ruby-on-rails-app-with-mongrelrails1Why do I get an error when starting ruby on rails app with mongrel_railsTobias2008-09-24T06:44:49Z2009-08-19T18:47:08Z
<p>Why do I get following error when trying to start a ruby on rails application with <pre>mongrel_rails start</pre>?</p>
<pre>
C:\RailsTest\cookbook2>mongrel_rails start
** WARNING: Win32 does not support daemon mode.
** Daemonized, any open files are closed. Look at log/mongrel.pid and log/mongr
el.log for info.
** Starting Mongrel listening at 0.0.0.0:3000
c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../lib/mongrel/t
cphack.rb:12:in `initialize_without_backlog': Only one usage of each socket addr
ess (protocol/network address/port) is normally permitted. - bind(2) (Errno::EAD
DRINUSE)
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel/tcphack.rb:12:in `initialize'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel.rb:93:in `new'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel.rb:93:in `initialize'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel/configurator.rb:139:in `new'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel/configurator.rb:139:in `listener'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon
grel_rails:99:in `cloaker_'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel/configurator.rb:50:in `call'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel/configurator.rb:50:in `initialize'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon
grel_rails:84:in `new'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon
grel_rails:84:in `run'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../
lib/mongrel/command.rb:212:in `run'
from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon
grel_rails:281
from c:/ruby/bin/mongrel_rails:19:in `load'
from c:/ruby/bin/mongrel_rails:19
</pre>
http://stackoverflow.com/questions/350789/can-apaches-proxyremote-be-used-to-proxy-https-requests-to-mongrel-for-processin1Can apache's ProxyRemote be used to proxy HTTPS requests to mongrel for processing?doranxenos2008-12-08T20:34:44Z2009-08-17T00:00:01Z
<p>So I have a custom proxy that is written in ruby using mongrel to handle some fairly complex caching logic. This works great for both http and ftp requests, however since mongrel is not designed to handle https requests, I wish to front the whole thing with apache and make use of the ProxyRemote command to pass through to mongrel for https requests.</p>
<p>This sort of thing is easily accomplished to mirror certain site directory structures via the ProxyPass and ProxyPassReverse commands in apache, but I don't see a way to do this using ProxyRemote.</p>
<p>The problem is that mongrel does not handle CONNECT requests which are made to establish a secure request. So while I am able to handle https requests within the proxy itself, actually using the proxy with an https request directly is not supported.</p>
<p>It seems that the simplest solution would be to have apache handle the https request and then simply pass the http request itself (minus the CONNECT) to mongrel and have it handle it appropriately and return it to apache and then to the client.</p>
<p>So my question is, Is there a way to make ProxyRemote work the same way that ProxyPass does with HTTP requests (i.e. pass an unencrypted request to mongrel)?</p>
http://stackoverflow.com/questions/1141554/how-to-implement-a-progress-bar-in-ruby1How to implement a progress bar in Ruby?Aditya2009-07-17T05:42:46Z2009-08-09T05:21:52Z
<p>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 to implement a progress bar that exactly replicate the file upload process.</p>
<p>Can you please help us with this?</p>
http://stackoverflow.com/questions/1220400/installing-rails-w-mongrel-cluster-on-media-temple-dv-server0Installing rails w/ mongrel cluster on Media Temple DV ServerElliot2009-08-03T01:46:08Z2009-08-03T04:37:47Z
<p>First, I'm a complete newb to rails - I've been trying to get my feet wet, but ran into some trouble here.</p>
<p>I've followed <a href="http://kb.mediatemple.net/questions/279/Ruby+on+Rails+using+Mongrel+Clusters" rel="nofollow">http://kb.mediatemple.net/questions/279/Ruby+on+Rails+using+Mongrel+Clusters</a> to install rails, everything worked except one of the last steps:</p>
<p>"cp /var/www/vhosts/testapp.mt-example.com/rails/testapp/public/.htaccess /var/www/vhosts/testapp.mt-example.com/rails/testapp/public/.htaccess.old && echo 'ErrorDocument 500 "Application error Rails application failed to start properly"' > /var/www/vhosts/testapp.mt-example.com/rails/testapp/public/.htaccess"</p>
<p>It returns: "
cp: cannot stat `/var/www/vhosts/myurl.com/rails/myapp/public/.htaccess': No such file or directory
"</p>
<p>When I access the domain, rails seems to work - but when I click "about your application's environment" i get "
We're sorry, but something went wrong.</p>
<p>We've been notified about this issue and we'll take a look at it shortly."</p>
<p>I then setup some quick scaffolds just to see what was going on, received the same messages when accessing those pages from the browser.</p>
<p>Thanks in advance for any help!</p>
http://stackoverflow.com/questions/1073841/gem-install-of-mongrel0gem install of mongrelatlantis2009-07-02T11:31:19Z2009-07-28T17:39:22Z
<p>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 because </p>
<ol>
<li>script/server starts webrick by default</li>
<li>'which mongrel' returns nothing</li>
<li>'locate mongrel' returns lots of entries like</li>
</ol>
<p>.</p>
<pre><code>/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1
/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib
/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel
.
.
.
/usr/local/bin/mongrel_rails
/usr/local/lib/ruby/gems/1.9.1/cache/mongrel-1.1.5.gem
/usr/local/lib/ruby/gems/1.9.1/doc/actionpack-2.3.2/rdoc/files/lib/action_controller/vendor/rack-1_0/rack/handler/evented_mongrel_rb.html
/usr/local/lib/ruby/gems/1.9.1/doc/actionpack-2.3.2/rdoc/files/lib/action_controller/vendor/rack-1_0/rack/handler/mongrel_rb.html
/usr/local/lib/ruby/gems/1.9.1/doc/actionpack-2.3.2/rdoc/files/lib/action_controller/vendor/rack-1_0/rack/handler/swiftiplied_mongrel_rb.html
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-2.3.2/lib/action_controller/vendor/rack-1.0/rack/handler/evented_mongrel.rb
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-2.3.2/lib/action_controller/vendor/rack-1.0/rack/handler/mongrel.rb
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-2.3.2/lib/action_controller/vendor/rack-1.0/rack/handler/swiftiplied_mongrel.rb
/usr/local/lib/ruby/gems/1.9.1/gems/mongrel-1.1.5
.
.
.
</code></pre>
<p>Does look like I have mongrel installed (both the default installation and my custom install). So why doesn't which mongrel return something.</p>
<p>Also trying to reinstall mongrel using 'gem install mongrel' returns throws its own set of exceptions :</p>
<pre><code>Building native extensions. This could take a while...
ERROR: Error installing mongrel:
ERROR: Failed to build gem native extension.
/usr/local/bin/ruby extconf.rb install mongrel
checking for main() in -lc... yes
creating Makefile
make
gcc -I. -I/usr/local/include/ruby-1.9.1/i386-darwin9.7.0 -I/usr/local/include/ruby-1.9.1/ruby/backward -I/usr/local/include/ruby-1.9.1 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -fno-common -D_XOPEN_SOURCE=1 -O2 -g -Wall -Wno-parentheses -fno-common -pipe -fno-common -o http11.o -c http11.c
http11.c: In function 'http_field':
http11.c:77: error: 'struct RString' has no member named 'ptr'
http11.c:77: error: 'struct RString' has no member named 'len'
http11.c:77: warning: left-hand operand of comma expression has no effect
http11.c:77: warning: statement with no effect
http11.c: In function 'header_done':
http11.c:172: error: 'struct RString' has no member named 'ptr'
http11.c:174: error: 'struct RString' has no member named 'ptr'
http11.c:176: error: 'struct RString' has no member named 'ptr'
http11.c:177: error: 'struct RString' has no member named 'len'
http11.c: In function 'HttpParser_execute':
http11.c:298: error: 'struct RString' has no member named 'ptr'
http11.c:299: error: 'struct RString' has no member named 'len'
make: *** [http11.o] Error 1
</code></pre>
http://stackoverflow.com/questions/1183261/starting-and-stopping-another-process-when-mongrel-rails-starts0Starting and Stopping Another Process when Mongrel Rails startsnixterrimus2009-07-25T22:42:13Z2009-07-26T00:41:43Z
<p>I would like to start another process when mongrel rails starts up. Is there a way to do this? I am looking to start lighttpd which acts as a media server on my project every time rails starts and stop it every time rails stops.</p>
http://stackoverflow.com/questions/1157767/cant-get-value-paramsuser-first-request-using-mongrelrails-start0Can't get value params[:user] first request using mongrel_rails start?Samnang2009-07-21T07:41:11Z2009-07-21T08:27:19Z
<p>I get nil from params[:user] in create action of my controller for the first request when I start my mongrel server by using mongrel_rails start. After that for second and third time are ok. In addition, if I start my Mongrel by using script/server, it doesn't have any problems at all. It is different by starting mongrel server between script/server and mongrel_rails start? Have you ever faced this problem?</p>
<p>Here my code in controller:</p>
<pre><code>def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
flash[:notice] = 'User was successfully created.'
format.html { redirect_to(@user) }
format.xml { render :xml => @user, :status => :created, :location => @user }
else
format.html { render :action => "new" }
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
end
end
end
</code></pre>
<p>And I use Poster add-on to test and post in xml format.</p>
http://stackoverflow.com/questions/1131560/running-sinatra-app-with-mongrel-on-windows1Running Sinatra app with Mongrel on WindowsNick2009-07-15T13:54:59Z2009-07-20T21:16:47Z
<p>I'd like to start a Sinatra app from Mongrel on Windows, rather than Sinatra starting Mongrel in the background.</p>
<p>Is there a simple way to use Mongrel for Sinatra? It's looking for a rails app by default.</p>
<p>Edit: Suggested solution is to simply run a VMWare or SunBox with real Linux and deal with the corporate issues that way.</p>
http://stackoverflow.com/questions/1145552/rails-not-refreshing-code0Rails not refreshing codeunknown (google)2009-07-17T20:33:57Z2009-07-18T11:10:25Z
<p>While developing a Rails app, I usually leave the dev server running locally (mongrel) as I work on the code. Changes in the code take affect after a quick refresh. EXCEPT changes havent been taking effect for a class I've been writing in the Lib in folder. Is this in any way a known problem? What could be causing this? It is very frustrating to work on a problem for a while, having no solutions work, only to find out none of those solutions even had a chance to work.</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1117107/how-to-run-rails-website-permanently-on-mac-os-x0How to run rails website permanently on Mac OS XMichal2009-07-12T22:38:15Z2009-07-12T23:55:19Z
<p>Hello guys,
i've developed small web app for personal use with Ruby on Rails. Now when i want to use it I open Terminal and run ruby script/server to run mongrel then i go to Safari and type localhost:3000 to see my app.</p>
<p>I'd like to have this site start automatically on startup of mac and possibly to use some other URL.. preferably just <a href="http://myapp/" rel="nofollow">http://myapp/</a></p>
<p>I come from C#/asp.net world and don't know much about apache/mongrel stuff. </p>
<p>Do you know any step by step tutorial how to configure rails/mongrel/apache on mac os x leopard to work together and run after startup, please? (I have apache running, which was done just by checking checkbox in system preferences/sharing)</p>
http://stackoverflow.com/questions/1110506/rails-http-status-always-returns-200-in-development0Rails HTTP Status always returns 200 in developmentJames Pierce2009-07-10T16:11:21Z2009-07-10T16:18:53Z
<p>I'm using Mongrel in development mode for my rails app. I noticed that regardless of the what the actual HTTP status should be, it is being returned as 200 to the browser. In production mode, the status is correct.</p>
<p>For example, when the record it is not found, the app displays the correct (not found) view, but the status sent to the browser is 200 (and to the layout view if I use request.status). Even when there is a 500 error, the status is also 200. In production mode, everything works correctly. The output of mongrel in Terminal displays the correct status, but it doesn't make it to the browser or layout views. </p>
<p>Is there a setting for the development configuration that changes this?</p>
<blockquote>
<p>I'm using Mongrel on Mac 10.5.7
(tested on two different machines).
On my production server, I'm using
Apache / Passenger on Ubuntu. I'm
using Rails 2.2.2.</p>
</blockquote>
http://stackoverflow.com/questions/463235/monitoring-mongrel-queue-length0Monitoring Mongrel queue lengthSanjay2009-01-20T21:37:47Z2009-06-27T12:00:00Z
<p>I have a Apache + Haproxy + Mongrel Cluster setup. I want to receive alerts whenever my Mongrel queue length gets too high. </p>
<p>How to I get the current Mongrel Queue length and make it available for alerting tools such as Monit and Nagios?</p>
<p>I know that Haproxy has the information about Mongrel queue as it intelligently sends requests to least busy Mongrel in the cluster. I wonder how it finds out? I need a similar mechanism to generate alerts and/or restart mongrels when such a condition arrives.</p>