Yann,

Yann Nong wrote:
Hi all,

I am using Sun iPlanet Web Server v6.0 in production. Recently, we
encountered some problems with the web server and found the following
message in the errors logs:

<code>
[29/Aug/2004:00:55:04] info ( 7420): Crash occurred in function
FREEBL_GetVector from module
/usr/iplanet/servers/bin/https/lib/libfreebl_hybrid_3.so
</code>

I am hoping someone can help me shed some light on this issue. I've
tried searching on the Sun forums but didn't get any information.

Thanks in advance
Yann Nong


You should be using the regular Sun support channels for iPlanet web server, not Mozilla .

That said, your problem sounds like an installation issue with the NSS libraries. The function FREEBL_GetVector just returns the address of a variable, and cannot crash :

const FREEBLVector *
FREEBL_GetVector(void)
{
  return &vector;
}

However, this symbol gets loaded on-demand from either libfreebl_pure32_3.so or libfreebl_hybrid_3.so, depending on the Sparc chip architecture you are using. The problem might be that the library isn't getting loaded. Please check your LD_LIBRARY_PATH to see if both libraries can be loaded.
_______________________________________________
mozilla-crypto mailing list
[EMAIL PROTECTED]
http://mail.mozilla.org/listinfo/mozilla-crypto

Reply via email to