In many cases, it is necessary to disable prerequisite
checking in the WebSphere Application Server Installation.
Each WebSphere Application Server fix pack JAR file contains an
Extractor class. This class is invoked using:
java -jar NameOfJar [Arguments]
One of the available arguments is "-SkipVer". This will disable all
prerequisite checking.
There are multiple installs in the install.sh script. The one that
invokes the Extractor for was35_adv_ptf_4.jar includes the environment
variable $DELTA_JAR (it is set to "was35_adv_ptf_4.jar").
Modify the one line below:
java -jar $DELTA_JAR -TargetDir $WAS_DIR -backupJar $WAS_DIR/$BACKUP_JAR
-log $WAS_DIR/logs/$LOG_FILE
to include -SkipVer:
java -jar $DELTA_JAR -TargetDir $WAS_DIR -backupJar
$WAS_DIR/$BACKUP_JAR -log $WAS_DIR/logs/$LOG_FILE -SkipVer
Notes:
|