August 2015
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930
31  

Categories

August 2015
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930
31  

More on IHS and SSL – SSL0208E: SSL Handshake Failed, Certificate validation error

if you see: – Error 101 (net::ERR_CONNECTION_RESET): The connection was reset. in Chrome, and: – [Wed Apr 17 05:06:32 2013] [error] [client 192.168.8.1] [7f0eb40028d0] [5144] SSL0208E: SSL Handshake Failed, Certificate validation error. [192.168.8.1:52195 -> 192.168.8.162:8443] [05:06:32.584379] [Wed Apr 17 05:06:32 2013] [error] [client 192.168.8.1] [7f0eb400b3d0] [5144] SSL0208E: SSL Handshake Failed, Certificate validation error. [192.168.8.1:52196 […]

Finding the process that locked a port in AIX

Finding the process that locked a port in AIX ******************************************************************** Run the following command to check if port is in use

# netstat -an | grep <port number>

If above returns the connection, then run the following command to get the address of the port number

# netstat -Aan | grep <port number>

Once you […]

weblogic script

#!/bin/sh if [ -z “$1” ]; then echo “You must supply either start or stop command while calling this script! correct usage: weblogic_start_stop.sh start|stop” exit fi bold=`tput bold` normal=`tput sgr0` case “$1” in ‘start’) echo “Starting Management Node & Weblogic Server 10.3.6” echo “Starting NodeManager” nohup $WLS_HOME/server/bin/startNodeManager.sh > /dev/null 2>&1 & sleep 10 output=`ps […]

gsk7cmd

SSL Commands using GSK

====================== export PATH=/opt/IBMJava/bin:/usr/local/ibm/gsk7/bin:$PATH export CLASSPATH=/usr/local/ibm/gsk7/classes/cfwk.zip:/usr/local/ibm /gsk7/classes/gsk7cls.jar:$CLASSPATH

Any GSK cmd can be executed using: ================================== java com.ibm.gsk.ikeyman.ikeycmd command

Creating a new key DB with password: ==================================== gsk7cmd -keydb -create -db <filename> -pw <password> -type <cms | jks | jceks | pks12> -expire <days> -stash

Creating a new key DB without the password: […]

Decrypt IBM stash files

Decrypt IBM stash files If you are working on Websphere set of products for a while then I am sure you have been in situations where you don’t remember the password of your ssl key database file. In such a situation this perl script will help you and I am sure you will thank […]

Show information for solaris 10

#!/usr/bin/env ksh export LANG=C export PATH=${PATH}:/sbin:/usr/sbin:/usr/bin ################################################### ## Analysis for SUN by Lee Kwang Hyun ## ( Last Update. 2009.11.13 / Only Solaris 10) ################################################### DD=`date “+%y%m%d%H%M”` TMPVAR=”temp” TEMPVR=”temp” TMPTXT=/tmp/anal4sun.${DD} ROOTFS=”/dev/rdsk/c0t0d0″ ROOTDV=”c0t0d0″ TPMC=`cat /river/SYSINFO/tpmc.txt` #####################( MAIN ) main(){ OPTION=”$1″ ### hostname echo “HOST\t: $(hostname) (`hostid`)” ### model (product) prtdiag | grep “^System Configuration” | awk […]