Sponsored Content
Operating Systems Solaris Upgrade java version on solaris 10 SPARC Post 302557934 by prash358 on Thursday 22nd of September 2011 11:26:09 AM
Old 09-22-2011
I have followed the below procedure to point it to java 1.6


>ls -la /usr/java
lrwxrwxrwx 1 root other 15 Oct 19 2009 /usr/java -> jdk/jdk1.5.0_04

>cd /usr
>sudo rm -rf java
Password:

>sudo ln -s jdk/jdk1.6.0_27 java

>ls -la /usr/java
lrwxrwxrwx 1 root root 15 Sep 22 15:02 /usr/java -> jdk/jdk1.6.0_27

>java -version
java version "1.6.0_27"
Java(TM) SE Runtime Environment (build 1.6.0_27-b07)
Java HotSpot(TM) Server VM (build 20.2-b06, mixed mode)


I do have below in my /usr/jdk directory

drwxr-xr-x 5 root bin 512 Sep 22 14:44 .
drwxr-xr-x 46 root sys 1024 Sep 22 15:13 ..
lrwxrwxrwx 1 root root 27 Oct 19 2009 entsys-j2se -> /usr/jdk/instances/jdk1.5.0
drwxr-xr-x 3 root bin 512 May 20 2009 instances
lrwxrwxrwx 1 root other 7 May 20 2009 j2sdk1.4.2_11 -> ../j2se
-rwxr-xr-x 1 root root 90228204 Sep 22 14:26 jdk-6u27-solaris-sparc.sh
-rwxr-xr-x 1 root root 12831072 Sep 22 14:26 jdk-6u27-solaris-sparcv9.sh
lrwxrwxrwx 1 root other 18 Oct 19 2009 jdk1.5.0_04 -> instances/jdk1.5.0
drwxr-xr-x 10 root root 512 Sep 22 14:45 jdk1.6.0_27
lrwxrwxrwx 1 root other 11 Oct 19 2009 latest -> jdk1.5.0_04
drwxr-xr-x 7 root bin 512 May 20 2009 packages


Please correct me if i am wrong.

Last edited by prash358; 09-22-2011 at 12:42 PM..
 

8 More Discussions You Might Find Interesting

1. Solaris

what is the command to see the java version in solaris 8 and solaris 10

what is the command to see the java version in solaris 8 and solaris 10 (1 Reply)
Discussion started by: tv.praveenkumar
1 Replies

2. Solaris

Solaris ASR - Update JAVA version

Hi, all I wish to implement ASR for a SUN server in my production. currently the version of JAVA for this SUN server is root@procyon # java -version java version "1.5.0_12" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04) Java HotSpot(TM) Server VM (build 1.5.0_12-b04,... (3 Replies)
Discussion started by: SmartAntz
3 Replies

3. Solaris

Solaris 10 Java version

I have an issue here setting up ASR with a server. In order to have the SASM service runnning/enabled, the required java version is 1.6 U18(latest). My OS came with JDK 1.5 I downloaded and installed 1.6 But when I did java -version , its still showing 1.5 I captured the below from another... (4 Replies)
Discussion started by: incredible
4 Replies

4. Solaris

upgrade solaris mysql version...

hi i need to upgrade my solaris mysql version.. can u guide me the upgrade steps.. my current version is 4.0.31-log i need to upgrade to 5.0 .. thanks.. ---------- Post updated at 12:04 PM ---------- Previous update was at 11:28 AM ---------- my solaris version is 10.. ----------... (2 Replies)
Discussion started by: senkerth
2 Replies

5. UNIX for Advanced & Expert Users

Advanced Search * View * Edit JAVA version to WORK in GLASSFISH Forum topic JAVA version

Would like to confirm the ff. I got confused actually with the version I needed to download that will work on glassfish 3.0.1 a. Debian Squeeze (HP DL360). Need to use java version6 On Debian, I did apt-get install sun-java6-jdk. So when I check it's java version "1.6.0_22" Java(TM) SE... (1 Reply)
Discussion started by: lhareigh890
1 Replies

6. Solaris

Upgrade Apache to new version? Solaris 10, goal:PHP

Hello, I have been searching on unix.com and google in general. I can't find what I am looking for. Maybe too dumb of a question. I've downloaded and installed the sunfreeware package for PHP 5.3.6 and made sure all dependencies are satisfied. Apache 2.2.8 is currently installed and... (2 Replies)
Discussion started by: CSLibrary
2 Replies

7. Shell Programming and Scripting

Upgrade Perl version on Solaris machine

Hi, Can you please assist in upgrading perl from 5.8.x to 5.10? Right now i am running the below verison on my Solaris SPARC machine. Thanks in advance (8 Replies)
Discussion started by: prash358
8 Replies

8. Solaris

How to read this Solaris version:-Solaris 8 HW 5/03 s28s_hw2wos_06a SPARC?

Hi Guys, Could you please tell me how to read this Solaris version:- Solaris 8 HW 5/03 s28s_hw2wos_06a SPARC Thanks. (3 Replies)
Discussion started by: manalisharmabe
3 Replies
GZEXE(1)						      General Commands Manual							  GZEXE(1)

NAME
gzexe - compress executable files in place SYNOPSIS
gzexe name ... DESCRIPTION
The gzexe utility allows you to compress executables in place and have them automatically uncompress and execute when you run them (at a penalty in performance). For example if you execute ``gzexe /usr/bin/gdb'' it will create the following two files: -rwxr-xr-x 1 root root 1026675 Jun 7 13:53 /usr/bin/gdb -rwxr-xr-x 1 root root 2304524 May 30 13:02 /usr/bin/gdb~ /usr/bin/gdb~ is the original file and /usr/bin/gdb is the self-uncompressing executable file. You can remove /usr/bin/gdb~ once you are sure that /usr/bin/gdb works properly. This utility is most useful on systems with very small disks. OPTIONS
-d Decompress the given executables instead of compressing them. SEE ALSO
gzip(1), znew(1), zmore(1), zcmp(1), zforce(1) CAVEATS
The compressed executable is a shell script. This may create some security holes. In particular, the compressed executable relies on the PATH environment variable to find gzip and some standard utilities (basename, chmod, ln, mkdir, mktemp, rm, sleep, and tail). BUGS
gzexe attempts to retain the original file attributes on the compressed executable, but you may have to fix them manually in some cases, using chmod or chown. GZEXE(1)
All times are GMT -4. The time now is 06:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy