Skip to content

Instantly share code, notes, and snippets.

@lucianenache
Forked from rtfpessoa/java-8-ami.md
Created January 27, 2016 09:00
Show Gist options
  • Save lucianenache/abe965e028c6ee1d4f54 to your computer and use it in GitHub Desktop.
Save lucianenache/abe965e028c6ee1d4f54 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/8u11-b12/jdk-8u11-linux-x64.rpm"

Install Sun Java 8

sudo rpm -i jdk-8u11-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_11/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