April 2016
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

Categories

April 2016
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

SSL Handshake Failed, Specified label could not be found in the key file

This error is seen due the SSLServerCert variable defined in httpd.conf file of IHS defined under the SSL Virtual host.

Check the hostname or the common name that is mentioned next to SSLServerCert variable.

Solution: Install the self signed or signed certificate with the common name and import it to the key.kdb.

[…]

Install SSL certificate

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 installation path. Find the key.kdb and take a back up before executing the commands. Step 2: Creation of Csr Use the […]

DSO load failed: 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 load failed: SSL0166E: Failure attempting to load GSK library (libgsk7ssl.so) Configuration Failed

OS – Linux

SSL0166E: Failure attempting to load GSK library (libgsk7ssl.so) Configuration Failed

To check if […]

A+ on apache2.4 ssl

Here’s my config for apache2.4:

1) 4096 bit key: You will need to generate a 4096 bit key instead of the default 2048 bit key to get the key exchange to 100%. To do this, run letsencrypt-auto with this flag: –rsa-key-size 4096

./letsencrypt-auto –agree-dev-preview –server \ https://acme-v01.api.letsencrypt.org/directory auth –rsa-key-size 4096

2) SSL Settings: Add […]