Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java 7.1 in IBM Websphere

I have Java SDK 6 in IBM websphere 8.5.5.2. Where can i download Java SDK 7.1 in IBM website and update it to websphere.

I tried google and couldn't find required information to update Java SDK 7.1. Can i update it from Installation Manager or should i download any files from IBM?

like image 350
user923499 Avatar asked Aug 09 '14 21:08

user923499


People also ask

Does WebSphere 7 support Java 7?

The embedded Java SDK 6 has been replaced with Java SDK 8. Java SE 7 and 7.1 will be removed from service in WebSphere Application Server v8. 5 in July 2022. It is recommended that you use the embedded Java SDK 8.

Does WebSphere support Java 8?

Java SE 8 offers support for WebSphere applications to use the latest available Java features and standards. Attention: Starting in version 8.5. 5.11, the default versions of Java are Java SE 6 or Java SE 8.

Does WebSphere support Java 9?

The WebSphere Application Server V9 traditional runtime does not run on Java versions after 8. If you want to run on Java 11, 17 or newer then you can use WebSphere Liberty instead.


1 Answers

Download Java SDK 7.1 from WebSphere Application Server V8.5.5 Fix Pack 2. Then unzip both archives 7.1.0.0-WS-IBMWASJAVA-part1.zip and 7.1.0.0-WS-IBMWASJAVA-part2.zip to folder and use Installation Manager to install new SDK. Here are Installation instructions.
Then use managesdk command to find out sdk id and switch Java for your profile.

For example (it's from 7.0, but you will get the idea how to find it for 7.1):

C:\IBM\WebSphere\AppServer85\profiles\AppSrv1\bin>managesdk.bat -listAvailable
CWSDK1003I: Available SDKs :
CWSDK1005I: SDK name: 1.6_32
CWSDK1005I: SDK name: 1.7_32
CWSDK1001I: Successfully performed the requested managesdk task.

Then if you want to change it for one profile you invoke:

managesdk -enableProfile -profileName AppSrv01 -sdkname SDK_Name -enableServers

or for all profiles:

managesdk -enableProfileAll -sdkname SDK_Name -enableServers
like image 123
Gas Avatar answered Sep 19 '22 10:09

Gas