Wednesday, January 24, 2024

Install Tomcat 9 on Ubuntu 22.0.4 | Setup Tomcat 9 on Ubuntu 22.0.4 in AWS EC2 | Setup Tomcat on Ubuntu

Tomcat is one of the popular web containers for deploying Java applications. Tomcat is an open source web container. Click here to learn more about Tomcat. Let's see how to install Tomcat on Ubuntu 22.0.4.



Tomcat is both Web server and web container


Please follow below steps to install Tomcat 9 on Ubuntu 22.0.4.

Pre-requisites:
  • Create new EC2 instance first for setting up Tomcat. 
  • Also open port 8080 in security firewall rules for EC2 instance in AWS.
Tomcat Installation
Tomcat is a web server or web container where java web application can be deployed by developers. You can learn more about by clicking this URL.  Tomcat can be installed by executing below commands:

Change Host Name to Tomcat
sudo hostnamectl set-hostname Tomcat

Update to Latest packages
sudo apt update

Install Tomcat9
sudo apt install tomcat9 tomcat9-docs tomcat9-admin -y

Perform below command for setting up tomcat admin app
sudo cp -r /usr/share/tomcat9-admin/* /var/lib/tomcat9/webapps/ -v

Setup an user in tomcat 
Open the tomcat-users.xml file by executing below command
sudo nano /var/lib/tomcat9/conf/tomcat-users.xml

We need to edit this file.
We need to add tomcat user and assign to manager-script role.
Scroll down all the way to the end of the file,
Add the below lines in second last line above (above </tomcat-users>)

<role rolename="manager-script"/>
<user username="tomcat" password="password" roles="manager-script"/>


Press Control O and enter for saving the file. 
Press Control + X for exiting the file after saving.

Now restart tomcat to take the changes in effect
sudo systemctl restart tomcat9

Verify if tomcat9 is working fine
sudo systemctl status tomcat9

Now press q for quitting from that window. Now open the browser to access Tomcat, enter
You should see a page that says.

That's it. You have setup Tomcat successfully!!

Watch steps in YouTube channel:
 

No comments:

Post a Comment

DevOps Interview Preparation Useful real time tips | Crack DevOps Interviews | How to clear DevOps Interviews

Are you failing in DevOps Interviews? Are you not be able to next round in the Interview process?  Let's find out how to fix this:   Fir...