Doing an install on a Solaris 10 server today, and had to generate certs. Running ./cert_install.pl, and ran into this error:
ld.so.1: openssl: fatal: relocation error: file /opt/Interwoven/TeamSite/iw-webd/bin/openssl: symbol d2i_ECPKParameters: referenced symbol not found
ld.so.1: openssl: fatal: relocation error: file /opt/Interwoven/TeamSite/iw-webd/bin/openssl: symbol d2i_ECPKParameters: referenced symbol not found
binmode() on closed filehandle CERT at /opt/Interwoven/TeamSite/install/cert_install_common.pl line 278.
binmode() on closed filehandle CRL at /opt/Interwoven/TeamSite/install/cert_install_common.pl line 279.
readline() on closed filehandle CERT at /opt/Interwoven/TeamSite/install/cert_install_common.pl line 281.
readline() on closed filehandle CRL at /opt/Interwoven/TeamSite/install/cert_install_common.pl line 282.
Fix:
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/csw/lib:/usr/local/lib:/usr/sfw/lib
export LD_LIBRARY_PATH
Re-run ./cert_install.pl.