search for: mongrel_start

Displaying 11 results from an estimated 11 matches for "mongrel_start".

2006 Aug 21
1
Recommended start order when deploying with Capistrano...
When deploying with Capistrano, what''s the recommended start ordering for BackgrounDRb? mongrel_stop backgroundrb_restart mongrel_start - or - mongrel_restart backgroundrb_restart - or - backgroundrb_restart mongrel_restart Or does it matter? Cheers, Brett
2007 Oct 31
3
Mongrel breaking Merb?
Has anyone had troubles from Mongrel > 1.0.1? Just curious, because the last time I tried to run Merb it gave me some Mongrel error about the wrong number of arguments, or something like that. I can post the exact message tonight when I get home. -- Cheers, Kevin Williams http://kevwil.com/ http://www.almostserio.us/ http://kevwil.jaiku.com/
2007 Nov 06
2
what did I do?
...rel-1.1/lib/mongrel/configurator.rb:50:in `call'' /Library/Ruby/Gems/1.8/gems/mongrel-1.1/lib/mongrel/configurator.rb:50:in `initialize'' /Library/Ruby/Gems/1.8/gems/merb-0.4.0/lib/merb/server.rb:548:in `new'' /Library/Ruby/Gems/1.8/gems/merb-0.4.0/lib/merb/server.rb:548:in `mongrel_start'' /Library/Ruby/Gems/1.8/gems/merb-0.4.0/lib/merb/server.rb:477:in `run'' /Library/Ruby/Gems/1.8/gems/merb-0.4.0/bin/merb:6 /usr/bin/merb:16:in `load'' /usr/bin/merb:16 undefined method `each'' for #<Merb::MemorySession:0x20f5404> - (NoMethodError) (erubis):144...
2007 Sep 12
6
Puppet with Mongrel
...st also be run, which is no longer the case. + In my setup I changed the name of the ssl certificate to just "puppet", so that I wouldn''t need a templatized Apache configuration, and figured it''s an option that is worth mentioning. + My previous experience with mongrel_start was that it didn''t help much, because it wasn''t very good at managing the processes separately. My inclination is to remove references to it until someone investigates and does the necessary work. + State that version 0.23.1 is required, and remove stuff about running...
2006 Feb 16
9
Mongrel 0.3.4 -- Win32 Gems/Better CGIWrapper
Hello Everyone, Today''s Mongrel is the first release to sport spiffy pre-built win32 gems. This comes thanks to Wilson Bilkovich donating some Rakefile magic that does the stuff for me. Everyone who uses win32 should send Wilson a thank-you since without him you''d be a victim of my laziness for at least a few more weeks. People who are testing and trying Mongrel out should
2007 Dec 13
2
Trying to use ActiveRecord STI but fails
...b/active_support/dependencies.rb:496:in `require'' ... 8 levels... from /home/francois/src/florian-opsdb/trunk/amara/framework/merb/server.rb:262:in `initialize_merb'' from /home/francois/src/florian-opsdb/trunk/amara/framework/merb/server.rb:606:in `mongrel_start'' from /home/francois/src/florian-opsdb/trunk/amara/framework/merb/server.rb:542:in `run'' from script/merb:3 The YAML document there is the result of $stderr.puts $:.to_yaml, which I put in right before the call to Merb::Server.load_application in config/merb...
2007 Sep 21
1
RESTful route gives a 500 error when Content-Type is set
...1.0.1/lib/mongrel/configurator.rb:51:in `call'' /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:51:in `initialize'' /usr/lib/ruby/gems/1.8/gems/merb-0.4.0/lib/merb/server.rb:513:in `new'' /usr/lib/ruby/gems/1.8/gems/merb-0.4.0/lib/merb/server.rb:513:in `mongrel_start'' /usr/lib/ruby/gems/1.8/gems/merb-0.4.0/lib/merb/server.rb:442:in `run'' /usr/lib/ruby/gems/1.8/gems/merb-0.4.0/bin/merb:6 /usr/bin/merb:16:in `load'' /usr/bin/merb:16
2007 Dec 19
3
Trapping custom exceptions in merb 0.5.0
...configurator.rb:50:in `call'' /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.2/lib/mongrel/configurator.rb:50:in `initialize'' /opt/local/lib/ruby/gems/1.8/gems/merb-0.5.0/lib/merb/server.rb:619:in `new'' /opt/local/lib/ruby/gems/1.8/gems/merb-0.5.0/lib/merb/server.rb:619:in `mongrel_start'' /opt/local/lib/ruby/gems/1.8/gems/merb-0.5.0/lib/merb/server.rb:548:in `run'' /opt/local/lib/ruby/gems/1.8/gems/merb-0.5.0/bin/merb:6 /opt/local/bin/merb:16:in `load'' /opt/local/bin/merb:16 Setting up session Finalize session Time spent in Exceptions#invalid_key action: 0...
2006 Dec 04
2
Merb on Win32 Platform
I''m trying to get Merb running on Windows XP SP2 and am experiencing some difficulties. I load http://localhost:4000/posts/new in my browser expecting to see the contents of new.herb rendered. However the following error is reported: Request: PATH_INFO: /posts/new Params: {"action"=>"new", "id"=>nil, "controller"=>"posts"}
2006 Sep 01
2
Making Mongrel play well with Monit
Hi! I run a mongrel cluster with 6 mongrels in it. I want to monitor them individually for process hangs (and then restart them) and this is the solution I came up with: Here''s my configuration file for monit (/usr/local/etc/monitrc): [snipped relevant bits] ------ #check lighttpd process check process lighttpd with pidfile /var/run/lighttpd.pid start program =
2007 Sep 18
10
Routes
hi all, I want to move some routing tasks out of the router and into the controller. The goal is to make Merb feel less like mod_rewrite and give the user more control at the controller. The new Router is simple: it takes the path_info (not the whole request) then outputs a controller class and some parameters from the path matching. The rest of the routing would be done at the controller level.