From: Kevin Brown Date: 2006-01-15T16:35:43+09:00 Subject: More DRb Fun I'm not sure why I'm having so much fun with DRb, really: kevin@itzamna:~/drb$ ./server.rb /usr/lib/ruby/1.8/drb/drb.rb:837:in `getaddrinfo': getaddrinfo: Name or service not known (SocketError) from /usr/lib/ruby/1.8/drb/drb.rb:837:in `open_server_inaddr_any' from /usr/lib/ruby/1.8/drb/drb.rb:860:in `open_server' from /usr/lib/ruby/1.8/drb/drb.rb:756:in `open_server' from /usr/lib/ruby/1.8/drb/drb.rb:754:in `each' from /usr/lib/ruby/1.8/drb/drb.rb:754:in `open_server' from /usr/lib/ruby/1.8/drb/drb.rb:1335:in `initialize' from /usr/lib/ruby/1.8/drb/drb.rb:1624:in `new' from /usr/lib/ruby/1.8/drb/drb.rb:1624:in `start_service' from ./server.rb:9 kevin@itzamna:~/drb$ cat server.rb #!/usr/bin/env ruby # simple_service.rb # A simple DRb service # load DRb require 'drb' # start up the DRb service DRb.start_service nil, [] # We need the uri of the service to connect a client puts DRb.uri # wait for the DRb service to finish before exiting DRb.thread.join This is on a fresh install of Debian Sarge, and I'm pretty sure I've grabbed all the Debian Ruby portions off of apt-get... Any ideas why I'm having this trouble?