Starting script/ferret_start problems

Hi - I have a fresh install of OSX, Rails, Ruby, Ferret, AAF etc …
Everything is working fine, I can start mongrel, I can start
backgroundrb, but Ferret Drb … doesn’t want to work.

RAILS_ENV=development script/ferret_start

Gives me:

env: script/runner: Permission denied

Is there a way I can debug this to figure out what is going on - or is
there another way to start Ferret Drb?

Thanks
Joerg

On Tue, Jun 12, 2007 at 03:48:06PM +0200, Joerg D. wrote:

Hi - I have a fresh install of OSX, Rails, Ruby, Ferret, AAF etc …
Everything is working fine, I can start mongrel, I can start
backgroundrb, but Ferret Drb … doesn’t want to work.

RAILS_ENV=development script/ferret_start

Gives me:

env: script/runner: Permission denied

that probably means that the runner script isn’t marked as executable.

You can correct this by doing chmod +x script/runner from your
RAILS_HOME.

Jens


Jens Krämer
webit! Gesellschaft für neue Medien mbH
Schnorrstraße 76 | 01069 Dresden
Telefon +49 351 46766-0 | Telefax +49 351 46766-66
[email protected] | www.webit.de

Amtsgericht Dresden | HRB 15422
GF Sven Haubold, Hagen Malessa

And it was that simple … Doh.

Thanks Jens!

that probably means that the runner script isn’t marked as executable.

You can correct this by doing chmod +x script/runner from your
RAILS_HOME.