Amazon Linux 2023 - tomcat versions available

0

Hello,

I would like to ask if tomcat10 available in the official repo of Amazon Linux 2023, or at least is there any way to install tomcat10 using yum?

Thanks

Maan
asked a year ago4265 views
2 Answers
1

By upgrading to AML2023 we lose automation for installing tomcat, creating the tomcat user, and adding the tomcat service? How is is this an improvement?

answered a month ago
0

You can most definitely install Tomcat 10 using DNF (which is the successor to YUM).

I trust you understand the basics of RUNNING Tomcat, but once you have SSH'd into your instance running Amazon Linux 2023, here are the basic steps of installing Tomcat 10.

  1. I always like to update the package system:

sudo dnf update

  1. Install default available Java:

sudo dnf install java

NOTE: unsure which version of Tomcat you need, and which minimum version of Java? See Apache Tomcat Versions.

  1. Check that Java successfully installed by checking version:

java -version

  1. Use **dnf ** to install wget. It should already be there on Amazon Linux 2023 but just to make sure:

sudo dnf -y install wget

  1. Change to a directory to which you have write permissions, such as /usr/tmp.

  2. Do a wget to download Tomcat 10:

wget https://archive.apache.org/dist/tomcat/tomcat-10/v10.0.23/bin/apache-tomcat-10.0.23.tar.gz

NOTE: again, if you are unsure which version you need, see Apache Tomcat Versions.

  1. Extract the TAR you just downloaded and move the files to a new directory.

tar -xvf apache-tomcat-10*.tar.gz

sudo mv apache-tomcat-10.0.23 /usr/local/tomcat

After this you'd create your Tomcat user(s), configure and run Tomcat.

Hope this helps! It worked on an Amazon Linux 2023 instance that I just spun up.

AWS
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions