On Wed, Jul 25, 2007 at 02:57:58PM +0200, Izit Izit wrote: > Some more info. > > What I also find strange is that when I start Mongrel it shows: > > => Booting Mongrel (use 'script/server webrick' to force WEBrick) > => Rails application starting on http://0.0.0.0:3000 > => Call with -d to detach > => Ctrl-C to shutdown server > ** Starting Mongrel listening at 0.0.0.0:3000 > ** Starting Rails with development environment... > Using AdapterExtensions > Asked for a remote server ? false, ENV["FERRET_USE_LOCAL_INDEX"] is nil, > looks like we are not the server > Will use local index. > using index in script/../config/../index/development/mutation > default field list: [:supplier_description, :description, > :product_description, :pub_date_sort, :product_label_description, > :product_label_free, :product_product_id_supplier, > :product_description_supplier] > ** Rails loaded. > ** Loading any Rails specific GemPlugins > ** Signals ready. TERM => stop. USR2 => restart. INT => stop (no > restart). > ** Rails signals registered. HUP => reload (without restart). It might > not work well. > ** Mongrel available at 0.0.0.0:3000 > ** Use CTRL-C to stop. > > Why is it refering to AAF during startup. It only does this for the > Model I have the issue with, other models with AAF configured do not > show up during Mongrel startup. I have also check it with webrick and > some occurs.
This output should go to the log file normally, not sure why you see it on stdout. However it looks like you didn't specify :remote => true in this case (that's the "Asked for a remote server?" line). Interesting would be the output and log files from starting the DRb server. Most of the time these problems stem from the DRb server not realizing that it *is* the DRb server, resulting in aaf inside the DRb server trying to connect to another (of course non-existent) DRb server. 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 _______________________________________________ Ferret-talk mailing list [email protected] http://rubyforge.org/mailman/listinfo/ferret-talk

