Skip to content

Instantly share code, notes, and snippets.

@justinbarry
Forked from tankchintan/gist:1335220
Created December 2, 2012 11:11
Show Gist options
  • Save justinbarry/4188246 to your computer and use it in GitHub Desktop.
Save justinbarry/4188246 to your computer and use it in GitHub Desktop.
Procedure for installing and setting Sun JDK Java on Default Amazon Linux AMI
# Get the latest Sun Java SDK from Oracle http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u1-download-513651.html
wget "http://download.oracle.com/otn-pub/java/jdk/6u37-b06/jdk-6u37-linux-x64.bin"
# Install Java
sudo rpm -i jdk-6u37-linux-x64.bin
# Check if the default java version is set to sun jdk
java -version
# If not then lets create one more alternative for Java for Sun JDK
sudo /usr/sbin/alternatives --install /usr/bin/java java /usr/java/jdk1.7.0_01/bin/java 20000
# Set the SUN JDK as the default java
sudo /usr/sbin/alternatives --config java
# Verify if change in SDK was done.
java -version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment