- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Java 1.4.2.09 installation with keeping exisistin...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 12:30 PM
01-10-2007 12:30 PM
Java 1.4.2.09 installation with keeping exisisting java 1.4.2.06
1)Can I install Java 1.4.2.09 on a alternate path eg: /java/opt/java1.4/ without uninstalling the exisisting java 1.4.2.06.
Server Configurations:
OS B.11.11.
Currently installed SDK java versions
java 1.2 /opt/java1.2
java 1.3 /opt/java1.3
java 1.4.2.06 /opt/java1.4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 05:44 PM
01-10-2007 05:44 PM
Re: Java 1.4.2.09 installation with keeping exisisting java 1.4.2.06
i think it is possible. I never did it on HPUX, but did it on Linux and Windows.
-Ashly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 10:55 PM
01-10-2007 10:55 PM
Re: Java 1.4.2.09 installation with keeping exisisting java 1.4.2.06
Paste output for "bdf|grep -i java" command.
rgs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 11:14 PM
01-10-2007 11:14 PM
Re: Java 1.4.2.09 installation with keeping exisisting java 1.4.2.06
yes you can install your version of java, provided it into a seperate location.
Easiest way is to install 1.4.2.09 into /opt/java1.4.2.09 and then repoint your java link /opt/java to /opt/java1.4.2.09.
That way, if you have to 'fall back' to java1.4.2.06 you can just change the link /opt/java.
Please also review you PATH variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 12:11 AM
01-11-2007 12:11 AM
Re: Java 1.4.2.09 installation with keeping exisisting java 1.4.2.06
Yes,
Accessing both versions is possible by modfiying the PATH or JAVA_PATH variable.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 02:44 AM
01-11-2007 02:44 AM
Re: Java 1.4.2.09 installation with keeping exisisting java 1.4.2.06
So we came up with a standard of having versions in their own /opt trees, ie:
/opt/java1.4 -- would be the as installed version
/opt/java1.4.2_07 - rev 07
/opt/java1.4.2_11 - rev 11 (DST2007)
How do I have the HP JAVA depot install on those non-standard paths? Easy, I create them on a sandbox and create cpio archives for deployment:
On my sandbox:
1. mv /opt/java1.N /opt/java1.N_old
2. swinstall java 1.4.2_11 (this will install in /opt/java1.4)
3. rename /opt/java1.4 to /opt/java/1.4.2_11
4. Create CPIO archive
cd /opt
find ./java_1.4.2_11 -depth -print|cpio -o|gzip >/largefs/java1.4.2_11.cpio.gz
TO install the CPIO on my destination server. Simply FTP/COPY the cpio GZ archve and unpack:
cd /opt
gzcat /somewhere/java1.4.2_11.cpio.gz |cpio -idvmu
Now my client will be very happy as it does not disturb the default /opt/java1.4 installation. To use this version of java, they simply point their PATHS and other Java environmentals to this tree.