[EMAIL PROTECTED] wrote on Tue, 20 Mar 2007 13:59 -0700:
> I've built and installed pvfs-2.6.2 on x86_64 (RHEL 4) with
> Cisco/Topspin cards and software stack.
> 
> topspin-ib-rhel4-3.2.0-118
> topspin-ib-mod-rhel4-2.6.9-42.ELsmp-3.2.0-118
> 
> ./configure --with-kernel=/usr/src/kernels/2.6.9-42.EL-smp-x86_64
> --with-ib=/usr/local/topspin
> --with-ib-includes=/usr/local/topspin/include/vapi
> 
> Everything builds fine and I install with
> make install
> make kmod_install
> 
> However after configuring the metadata and IO nodes, I try to start the
> server and get this in the server log.
> 
> [D 03/20 13:25] PVFS2 Server version 2.6.2 starting.
> [E 03/20 13:25] src/io/bmi/bmi.c line 1841: Error: no method available
> for bmi_ib.
> [E 03/20 13:25]         [bt] /usr/local/sbin/pvfs2-server [0x433a50]
> [E 03/20 13:25]         [bt]
> /usr/local/sbin/pvfs2-server(BMI_initialize+0x13e) [0x433f1e]
> [E 03/20 13:25]         [bt] /usr/local/sbin/pvfs2-server [0x40de0d]
> [E 03/20 13:25]         [bt] /usr/local/sbin/pvfs2-server(main+0xaa1)
> [0x40f6a1]
> [E 03/20 13:25]         [bt]
> /lib64/tls/libc.so.6(__libc_start_main+0xdb) [0x39ce01c3fb]
> [E 03/20 13:25]         [bt]
> /usr/local/sbin/pvfs2-server(aio_cancel64+0x16a) [0x40d4aa]
> [E 03/20 13:25] Error: BMI_initialize: Protocol not available
> [E 03/20 13:25] Error: Could not initialize server interfaces; aborting.
> [E 03/20 13:25] Error: Could not initialize server; aborting.

Recompile with debugging:
        make clean
        CFLAGS=-g ./configure ...
        make
        make install
and cd to where your server expects to run.  Then do:
        gdb --args pvfs2-server -d fs.conf server.conf
        b BMI_ib_initialize
        run
then use "n" to walk through the function and try to find out where
it is failing.  I would have expected an error message, but do not
see one above.

Your build and ldd output look okay.  Your fs.conf has lines like:
            BMIModules bmi_ib
            ...
            Alias myhost1 ib://myhost1:3335
or there would have been different messages, but check anyway.

If you get a bit closer, let us know and we'll figure out the
problem.

                -- Pete

P.S.  Can you get exchange to turn off html email?

_______________________________________________
Pvfs2-users mailing list
[email protected]
http://www.beowulf-underground.org/mailman/listinfo/pvfs2-users

Reply via email to