With recent changes to Java licensing provided by Oracle, and with my own inability to find an alternative non-licensed option to provide java, I am curious if the Jira package (.tar.gz) now comes with Java prepackaged within it to install, or if this is still an external requisite for the server?
In the case of the latter, alternatives are most welcome as well.
Hi @admin admin ,
Atlassian provides the AdoptOpen JDK in its installer and officially supports it. If you're using the .tar.gz package, you can simply download AdoptOpen JDK here, and then install it on your server.
As AdoptOpenJDK does not have a repo as yet, I have run the following script on my CentOS-7 server to provide automation to the update process;
{
cat <<EOF > /etc/yum.repos.d/adoptopenjdk.repo
[AdoptOpenJDK]
name=AdoptOpenJDK
baseurl=http://adoptopenjdk.jfrog.io/adoptopenjdk/rpm/centos/7/$(uname -m)
enabled=1
gpgcheck=1
gpgkey=https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public
EOF
}
I can then run a yum update and install adoptopenjdk;
sudo yum update
sudo yum install adoptopenjdk-11-openj9
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.