How to Install Java on AWS Linux

Java remains a popular choice for developing and running applications on various platforms, including AWS Linux.

In this blog post, we’ll walk you through the process of installing Java on AWS Linux, providing step-by-step instructions and explanations for each command, including the use of ‘sudo’ and alternatives for configuring Java.

Prerequisites

Before we begin, ensure that you have:

  • An AWS account
  • Access to an AWS Linux AMI instance
  • Sudo privileges on the instance

Step 1: Update Your System

First, connect to your AWS Linux instance using SSH. Once logged in, it’s a good practice to update your system to the latest packages. Use the following command:

Bash
sudo dnf update

This command will fetch the latest available updates and rebuild the DNF package index cache.

Step 2: Install Corretto (Amazon’s Distribution of OpenJDK)

Amazon Linux 2023 comes with Corretto, Amazon’s production-ready distribution of the Open Java Development Kit (OpenJDK), available through the default system repository. To install Java without adding any extra repository, use the following commands:

For Java 8

To install the Java Runtime Environment (JRE):

Bash
sudo dnf install java-1.8.0-amazon-corretto
how to install java on aws linux

To install the Java Development Kit (JDK):

Bash
sudo dnf install java-1.8.0-amazon-corretto-devel

For Java 11

For JRE 11:

Bash
sudo dnf install java-11-amazon-corretto
how to install java on aws linux

For JDK 11:

Bash
sudo dnf install java-11-amazon-corretto-devel

Step 3: Verify Java Installation

After installation, verify that Java has been installed correctly by checking the version:

Bash
java -version
how to install java on aws linux

This command will display the installed Java version, confirming a successful installation.

Step 4: Configure Java Alternatives

If you have multiple Java versions installed and need to switch between them, use the alternatives command to configure the default Java version:

Bash
sudo alternatives --config java
how to install java on aws linux

You’ll be presented with a list of installed Java versions. Type the selection number of the Java version you want to set as the default and hit the Enter key.

Important Java Configurations on AWS Linux

When working with Java on AWS Linux, you’ll encounter several important configuration files. Here are some of the key files and their typical locations:

Configuration FileDetails
/usr/lib/jvm/Directory containing installed JVM and JDK versions.
~/.aws/config and ~/.aws/credentialsAWS shared config and credentials files used by AWS SDKs and CLI tools, located in the .aws directory in the user’s home.
/etc/alternatives/javaSymbolic link pointing to the default Java installation, managed by the alternatives system.
/usr/java/latestSymbolic link that points to the latest installed version of Java.
JAVA_HOME Environment VariableAn environment variable pointing to the Java installation directory, often set in ~/.bash_profile or ~/.bashrc.
/etc/profile.d/jdk.shScript that sets Java-related environment variables like JAVA_HOME and PATH upon user login.
/etc/environmentFile for setting system-wide environment variables, including JAVA_HOME.

Final Thoughts

Installing Java on AWS Linux 2023 is straightforward, thanks to the inclusion of Amazon Corretto in the default repository. By following these steps, you can set up Java for your development or production needs.

Remember to choose the appropriate Java version for your applications and keep your system updated for security and performance.

Bharath Adigopula
Bharath Adigopulahttps://www.bharathwick.com
Deep interest in the world of technology, particularly in the areas of Cloud Computing, Internet, Gadgets, Security, Linux, Windows, and DevOps.

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Follow Me

0FansLike
0FollowersFollow
28FollowersFollow

Latest Articles