Skip to content

Instantly share code, notes, and snippets.

@romualdr
Forked from rtfpessoa/java-8-ami.md
Last active January 27, 2016 16:46
Show Gist options
  • Save romualdr/eb8b87204cdadedc946e to your computer and use it in GitHub Desktop.
Save romualdr/eb8b87204cdadedc946e to your computer and use it in GitHub Desktop.
[Guide] Install Sun Java 8 on Amazon EC2 Ami

First verify the version of Java being used is not Sun Java 8 SDK

java -version

Get the Sun Java 8 SDK from Oracle

wget --no-cookies --header "Cookie: gpw_e24=xxx; oraclelicense=accept-securebackup-cookie;" "http://download.oracle.com/otn-pub/java/jdk/8u72-b15/jre-8u72-linux-x64.rpm"

Install Sun Java 8

sudo rpm -i jre-8u72-linux-x64.rpm

Check if the default java version is set to Sun Java 8 SDK

java -version

If not then lets create one more alternative for Sun Java 8 SDK

sudo /usr/sbin/alternatives --install /usr/bin/java java /usr/java/jdk1.8.0_72/bin/java 20000

Set the Sun Java 8 SDK 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