View Single Post
  #3 (permalink)  
Old 03-21-2004
peter.s peter.s is offline
Registered User
 
 
Join Date: Mar 2004
Posts: 12
first i recompiled everything without optimizations

after setting ld_library_path to the correct path, i tried the exception test on the ppc (which worked like before) and then tried to start the IceStorm service like described in the README file of the IceStorm demo:

Code:
demo/IceStorm/clock$ ../../../bin/icebox --Ice.Config=config_service
error: ServiceManager: exception while starting service IceStorm:
../../include/IceUtil/Handle.h:44: IceUtil::NullHandleException

on the alpha the exception tests worked after compiling in debug mode, the icestorm problem occured on this architecture too, but with the following message:
Code:
demo/IceStorm/clock$ ../../../bin/icebox --Ice.Config=config_service
error: ServiceManager: Network.cpp:357: Ice::SocketException:
socket exception: Cannot assign requested address
i strace-d the program and this is the part which - i think - is relevant for this error
Code:
open("/etc/hosts", O_RDONLY)            = 3
fcntl(3, F_GETFD)                       = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=365, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2000001a000
read(3, "127.0.0.1\tlocalhost\n128.131.167."..., 8192) = 365
read(3, "", 8192)                       = 0
close(3)                                = 0
munmap(0x2000001a000, 8192)             = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
pipe([536866384, 1])                    = 3
clone(child_stack=0x120032e70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND) = 6793
write(4, "\260\327\0\0\0\2\0\0\5\0\0\0\0\2\0\0\250\364\377\37\1\0"..., 168) = 168
osf_sigprocmask(0x1, 0, 0x11fffef08)    = 2147483648
write(4, "@\200J\0\0\2\0\0\0\0\0\0\0\0@@\0\0\0\0\0\0\0\0008\307D"..., 168) = 168
osf_sigprocmask(0x1, 0, 0x11fffee20)    = 2147483648
sigsuspend([ABRT BUS SEGV SYS ALRM TERM URG STOP TSTP CONT CHLD TTIN TTOU IO XCPU XFSZ VTALRM PROF WINCH INFO] <unfinished ...>
--- SIGRT_0 (Unknown signal 32) @ 0 (0) ---
<... sigsuspend resumed> )              = -1 EINTR (Interrupted system call)
sigreturn()                             = ? (mask now [])
osf_sigprocmask(0x1, 0, 0x11ffff178)    = 2147500035
write(4, "@\200J\0\0\2\0\0\0\0\0\0\0\0@@\0\0\0\0\0\0\0\0\274\356"..., 168) = 168
osf_sigprocmask(0x1, 0, 0x11ffff090)    = 2147500035
sigsuspend([TRAP FPE PIPE ALRM TERM URG STOP TSTP CONT CHLD TTIN TTOU IO XCPU XFSZ VTALRM PROF WINCH INFO] <unfinished ...>
--- SIGRT_0 (Unknown signal 32) @ 0 (0) ---
<... sigsuspend resumed> )              = -1 EINTR (Interrupted system call)
sigreturn()                             = ? (mask now [HUP INT TERM])
osf_old_open(0x2, 0x1, 0x6, 0, 0)       = -1 ENONET (Machine is not on the network)
osf_syscall(0x5, 0x6, 0x1, 0, 0x4, 0)   = -1 ENONET (Machine is not on the network)
osf_syscall(0x5, 0xffff, 0x8, 0, 0x4, 0) = 92
fork()                                  = 92
osf_syscall(0x5, 0x4, 0x6, 0, 0x4, 0)   = -1 ENONET (Machine is not on the network)
osf_syscall(0x5, 0xffff, 0x4, 0, 0x4, 0) = 104
osf_getlogin(0x5, 0x12002d870, 0x10, 0x1, 0x4) = -1 ENXIO (No such device or address)
osf_syscall(0x5, 0x12002d870, 0x10, 0, 0x4, 0) = 4
eexit(2)                                 = ?
rror: ServiceManager: Network.cpp:357: Ice::SocketException:
socket exception: Cannot assign requested address
--- SIGRT_0 (Unknown signal 32) @ 0 (0) ---
_exit returned!
) = ? (mask now [HUP INT TERM])
is there any special capability the network interface must have for icestorm to connect? (i am not running this as root)
Reply With Quote