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 […]

keystores and truststores for websphere

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 creation.

Imagine if you have two or more applications running on the same application server profile, Then we can use this feature if any application needs […]

gskcmd command

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 […]

fix pack on WebSphere Application Server ND 7 and IBM HTTP Server (IHS)

Steps to apply fix pack on WebSphere Application Server ND 7 and IBM HTTP Server (IHS)

 

 

ollowing steps will guide you to upgrade the WAS ND from 7.0.0.9 to 7.0.0.25 version and IHS server using silent installation on Solaris environment.

Following files are required for the upgrade and they can be downloaded from […]

There was an error while opening the file store file “WLS_DIAGNOSTICS000000.DAT

Error Message : <Critical> <WebLogicServer> <marsvca1> <AdminServer> <main> <<WLS Kernel>> <> <> <1352125428677> <BEA-000362> <Server failed. Reason: weblogic.diagnostics.lifecycle.DiagnosticComponentLifecycleException: weblogic.store.PersistentStoreException: java.io.IOException: [Store:280021]There was an error whi le opening the file store file “WLS_DIAGNOSTICS000000.DAT” [Store:280021]There was an error while opening the file store file “WLS_DIAGNOSTICS000000.DAT” Error from fcntl() for file locking, Resource temporarily unavailable, errno=11 Why is […]

Caused by : java.lang.NoSuch Method Error:javax.xml.ws.WebFault.MessageName()Ljava/lang/string;

Issue:

This error is seen when the JAX-WS libraries are missing.

Solution:

When deploying webservice project to the tomcat server, Tomcat do not implement the entire java EE sepcifications and it needs the JAX-WS libraries deployed to support the project.

add the jars in the endorsed directory.

By default the endorsed directory will be […]

sticky sessions between Apache and tomcat app

Why sticky sessions? Imagine you have a Apache server which load balances between two tomcat servers(tomcat1 and tomcat2) in the backend, With the use of sticky sessions, When the user sends the first request, If apache routes it to tomcat1, It will keep on sending the other requests made by the same user to the […]