How To Install tomcat9-user on Ubuntu 20.04

In this tutorial we learn how to install tomcat9-user on Ubuntu 20.04. tomcat9-user is Apache Tomcat 9 - Servlet and JSP engine – tools to create user instances Apache Tomcat 9 - Servlet and JSP engine – tools to create user instances

Introduction

In this tutorial we learn how to install tomcat9-user on Ubuntu 20.04.

What is tomcat9-user

tomcat9-user is:

Apache Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Oracle, and provides a “pure Java” HTTP web server environment for Java code to run.

This package contains files needed to create a user Tomcat instance. This user Tomcat instance can be started and stopped using the scripts provided in the Tomcat instance directory.

Package: tomcat9-user Architecture: all Version: 9.0.31-1 Priority: optional Section: universe/java Source: tomcat9 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Java Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 258 Depends: netcat, tomcat9-common (>= 9.0.31-1) Suggests: tomcat9 (>= 9.0.31-1), tomcat9-admin (>= 9.0.31-1), tomcat9-docs (>= 9.0.31-1), tomcat9-examples (>= 9.0.31-1) Filename: pool/universe/t/tomcat9/tomcat9-user_9.0.31-1_all.deb Size: 32684 MD5sum: 1bb1a488f1bdba8b201d696c0e0f940f SHA1: bec81ed12b335adf621863946a8539567175d0eb SHA256: b9d24073c4acf4db256df08354e62eb43d8ffe806865d5336d2908b9bba59ddc Homepage: http://tomcat.apache.org Description-en: Apache Tomcat 9 - Servlet and JSP engine – tools to create user instances Apache Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Oracle, and provides a “pure Java” HTTP web server environment for Java code to run.

This package contains files needed to create a user Tomcat instance. This user Tomcat instance can be started and stopped using the scripts provided in the Tomcat instance directory.

There are three methods to install tomcat9-user on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install tomcat9-user Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install tomcat9-user using apt-get by running the following command:

sudo apt-get -y install tomcat9-user

Install tomcat9-user Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install tomcat9-user using apt by running the following command:

sudo apt -y install tomcat9-user

Install tomcat9-user Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install tomcat9-user using aptitude by running the following command:

sudo aptitude -y install tomcat9-user

How To Uninstall tomcat9-user on Ubuntu 20.04

To uninstall only the tomcat9-user package we can use the following command:

sudo apt-get remove tomcat9-user

Uninstall tomcat9-user And Its Dependencies

To uninstall tomcat9-user and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove tomcat9-user

Remove tomcat9-user Configurations and Data

To remove tomcat9-user configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge tomcat9-user

Remove tomcat9-user configuration, data, and all of its dependencies

We can use the following command to remove tomcat9-user configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge tomcat9-user

References

Summary

In this tutorial we learn how to install tomcat9-user package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.