Install Jarsigner
Windows
To download the JDK from Oracle:
- Navigate to Oracle > JDK 11 > Windows.
- Download the x64 MSI installer.
- Run the jdk-11_windows_x64_bin.msi file that was downloaded.
- Follow the instructions in the wizard to complete the installation.
Jarsigner.exe should be located in the file path: C:\Program Files\Java\jdk-11\bin.
Alternatively, you can download and install the JDK from OpenJDK.
Linux
On Debian and Ubuntu Linux distributions:
- Open the Terminal application.
- To install Java, run:
sudo apt install -y default-jdk - To verify the Java version, run:
java --version
On RHEL, CentOS, and Fedora Linux distributions:
- Open the Terminal application.
- To install Java, run:
yum install java-1.8.0-openjdk.x86_64 - To verify the Java version, run:
java -version