Skip to content

Instantly share code, notes, and snippets.

@omandryk
Forked from rtfpessoa/java-8-ami.md
Last active November 26, 2015 20:20
Show Gist options
  • Save omandryk/ee172d494fa947dc940a to your computer and use it in GitHub Desktop.
Save omandryk/ee172d494fa947dc940a 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

Set Environment Variables

export JAVA_HOME=/usr/java/jdk1.8.0_66/

export JRE_HOME=/usr/java/jdk1.8.0_66/jre/

export PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin

Check PATH Variable

echo $PATH

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment