Solution :- export LIBS=-ldl
Configure: error : Error, SSL/TLS libraries were missing or unusable
ss:
Install SSL Certificates on IHS using gskcmd command line utility in solaris, unix and linux The following instructions will guide you to create csr and import the signed crt in the default kdb of IHS. Step 1: Finding the Kdb The default Kdb will be present in the IHS … Read More
SSL0223E: SSL Handshake Failed, No certificate. Error: [Date and Time stamp] [error] [client ip] [ds0] [789] SSL0223E: SSL Handshake Failed, No certificate. The above error is seen when the imported server certi… Read More
How to add SAN(subject alternative name) value to the SSL certificate while creating a CSR in IHS7 In IHS7, we don't get the option to add a SAN (subject alternative name) value while creating the csr from ikeyman gui tool. However, If you are using a old version and you still … Read More
Configure custom keystores and truststores in websphere application server at cluster level This post will guide you on how to create and configure custom keystores and truststores instead of using the default keystores and truststores that are created during the profile… Read More
SSL0166E: Failure attempting to load GSK library (libgsk7ssl.so) Configuration Failed The following error will be displayed in the error_log while starting the Apache webserver after enabling the SSL module. Error: [Tue Dec 09 00:00:18 2014] [notice] (2019)DSO loa… Read More
Hi there,
ReplyDeleteI too was experiencing this ERROR.
It can be solved by recompiling OPENSSL with shared option and exporting LD value
and then compile APACHE with OPENSSL
ERROR MITIGATION INCASE IF YOU GET ERROR, TLS/SLS FILE NOT FOUND OR UNUSABLE
----------------------------------------------------------------------------
1.Should recompile OPENSSL with shared option
./config shared --prefix=/usr/local/openssl --openssldir=/usr/local/openssl
make
make test
make install
2.Export LD_LIBRARY_PATH
nano /etc/ld.so.con
LD_LIBRARY_PATH=/usr/local/openssl/lib
export LD_LIBRARY_PATH=/usr/local/openssl/lib
3.Now Compile Apache with SSL :-)
LDFLAGS=-L/usr/local/openssl/lib CPPFLAGS=-I/usr/local/openssl/include ./configure --prefix=/usr/local/apache --enable-ssl --with-ssl=/usr/local/openssl/
--with-included-apr --with-pcre=/usr/local/pcre/bin/pcre-config --enable-ssl-staticlib-deps --enable-mods-static=ssl
make && make install
4.Further if the problem persists, please check for OPENSSL and APACHE compatiability.
-KRIS