Hello, Apologize if this is a annoying faq but folks here are trying to get a cluster going and something odd is happening. When ''mongrel_rails cluster::start'' is run, the following error is getting returned: ERROR RUNNING ''cluster::start'': Plugin /cluster::start does not exist in category /commands Is this the result of a simple path issue or perhaps a broken mongrel install? Curious if anyone has seen this before or has any idea what might be the cause. TIA, js
sudo gem install mongrel_cluster --source http://mongrel.rubyforge.org/releases/ On 3/1/07, John Swift <john at swiftshire.org> wrote:> > Hello, > > Apologize if this is a annoying faq but folks here are trying to get a > cluster going and something odd is happening. When ''mongrel_rails > cluster::start'' is run, the following error is getting returned: > > ERROR RUNNING ''cluster::start'': Plugin /cluster::start does not exist in > category /commands > > > Is this the result of a simple path issue or perhaps a broken mongrel > install? Curious if anyone has seen this before or has any idea what > might be the cause. > > TIA, > js > _______________________________________________ > Mongrel-users mailing list > Mongrel-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/mongrel-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20070301/61bd756b/attachment.html
Do you have multiple gem for mongrel_cluster installed? I ran into this and uninstalling the old gems worked for me. Pat On 3/1/07, John Swift <john at swiftshire.org> wrote:> Hello, > > Apologize if this is a annoying faq but folks here are trying to get a > cluster going and something odd is happening. When ''mongrel_rails > cluster::start'' is run, the following error is getting returned: > > ERROR RUNNING ''cluster::start'': Plugin /cluster::start does not exist in > category /commands > > > Is this the result of a simple path issue or perhaps a broken mongrel > install? Curious if anyone has seen this before or has any idea what > might be the cause. > > TIA, > js > _______________________________________________ > Mongrel-users mailing list > Mongrel-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/mongrel-users >
I''ll +1 for what Patrick Berry said. do a "gem cleanup mongrel_cluster" (sudo if you need to) and that should fix it. I had the same problem and that fixed it. matte John Swift wrote:> Hello, > > Apologize if this is a annoying faq but folks here are trying to get a > cluster going and something odd is happening. When ''mongrel_rails > cluster::start'' is run, the following error is getting returned: > > ERROR RUNNING ''cluster::start'': Plugin /cluster::start does not exist in > category /commands > > > Is this the result of a simple path issue or perhaps a broken mongrel > install? Curious if anyone has seen this before or has any idea what > might be the cause. > > TIA, > js > _______________________________________________ > Mongrel-users mailing list > Mongrel-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/mongrel-users >
This worked like a charm, thanks everybody! (yes, I''m the guy John was talking about) Cheers, Kevin Lawver Corey Donohoe wrote:> sudo gem install mongrel_cluster --source > http://mongrel.rubyforge.org/releases/ >
Patrick Berry wrote:> Do you have multiple gem for mongrel_cluster installed? I ran into > this and uninstalling the old gems worked for me. > > Pat >Thanks Pat (and Corey). The install was done completely from scratch with just the following: gem install mongrel_cluster -y Starting over and trying Corey''s suggestion now. js
Corey Donohoe wrote:> sudo gem install mongrel_cluster --source > http://mongrel.rubyforge.org/releases/ >Yep, that did it. Things are copacetic. Thanks very much. js
On 3/1/07, John Swift <john at swiftshire.org> wrote:> Patrick Berry wrote: > > Do you have multiple gem for mongrel_cluster installed? I ran into > > this and uninstalling the old gems worked for me. > > > > Pat > > > > Thanks Pat (and Corey). The install was done completely from scratch > with just the following: > > gem install mongrel_cluster -y > > > Starting over and trying Corey''s suggestion now. >It should be noted that this will install a "pre-release" version of mongrel_cluster. That being said, we''re running it in production right now (what better test could you ask for, right?). We also have the luxury of having very small audiences. Pat