1825803 Members
2445 Online
109687 Solutions
New Discussion

DST java patching

 
SOLVED
Go to solution
whiteSox
Frequent Advisor

DST java patching

Hi ALL,
CAn some plesae tell me how to find all versions of java that is installed on 11.0,11.11 and 11.23 .Thansks ALL for your help..
5 REPLIES 5
DCE
Honored Contributor
Solution

Re: DST java patching


The readme file in the TZUPDATER tar file gives a command to find all of the java installed on the server

You can get the file from here
http://www.hp.com/products1/unix/java/DST-US.html
Patrick Wallek
Honored Contributor

Re: DST java patching

If you installed HP's Java versions with swinstall then:

# swlist -l product |grep -i java
DCE
Honored Contributor

Re: DST java patching



The problem is that there are apps that installed java as well - swinstall will not necessarily display them.

Rick Garland
Honored Contributor

Re: DST java patching

As previously stated, the README has a command syntax to find the javas.

A command I am doing,
find / -fstype vxfs -name java -print -exec {} -version \;

Only look in vxfs filesystems (no NFS no AUTOFS), look for java, run the -version command.

whiteSox
Frequent Advisor

Re: DST java patching

Thanks swlist -l product|grep -i java worked .