Websphere 8/9 jdk installation method and switch.

websphere8 integrates the jdk of each platform into one, so the installation is slow.
This article solves the situation that the jdk that has already been requested by the customer has been installed on other machines, and performs a quick tar package installation.
First of all a customer needs to tar version on an existing machine and then placed in the same directory as jdk existing websphere
then put on an existing machine to transfer the following three files to the same directory jdk need to switch the
scp _setupsdk1.7_64. sh [email protected]:/washome/IBM/WebSphere/AppServer/bin/sdk/
scp _setupsdk1.7_64.sh [email protected]:/washome/IBM/WebSphere/AppServer/bin/sdk/
scp 1.7_64.properties [email protected]:/washome/IBM/WebSphere/AppServer/properties/sdk/
Performed on the machine you need to install the jdk
./managesdk.sh -listavailable
find jdk have 1.6 / 1.7 are two versions of
executed jdk you can switch the switch
下面是切换语法
task :  [ -enableProfile | -enableProfileAll ]
       -enableProfile -sdkName <sdk_name>
                      -profileName <profile_name>
                     [-enableServers]
                     [-user <user_name> -password <password>]
       -enableProfileAll -sdkName <sdk_name>
                        [-enableServers]
example
./managesdk.sh -enableProfile  -profileName AppSrv02 -sdkName 1.7_64


Guess you like

Origin blog.csdn.net/VoiceRoom/article/details/80562639