How To Install libapache2-mod-proxy-uwsgi on Ubuntu 20.04

In this tutorial we learn how to install libapache2-mod-proxy-uwsgi on Ubuntu 20.04. libapache2-mod-proxy-uwsgi is transitional package transitional package transitional package

Introduction

In this tutorial we learn how to install libapache2-mod-proxy-uwsgi on Ubuntu 20.04.

What is libapache2-mod-proxy-uwsgi

libapache2-mod-proxy-uwsgi is:

This is a transitional package to apache2 for users of libapache2-mod-proxy-uwsgi. It can be safely removed after the installation is complete.

Package: libapache2-mod-proxy-uwsgi Architecture: amd64 Version: 2.4.41-4ubuntu3.3 Priority: extra Section: universe/web Source: apache2 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Apache Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 10 Depends: apache2 (= 2.4.41-4ubuntu3.3) Filename: pool/universe/a/apache2/libapache2-mod-proxy-uwsgi_2.4.41-4ubuntu3.3_amd64.deb Size: 1180 MD5sum: 2e9c2541d8f02824f15bece663af02bf SHA1: fd31b54b7f343d63f42e4a2b7bb78ccbd055d591 SHA256: 61f6907bbd5f83fd518c22134fcdb9304ffedad52588838d47844d2b9bfe480f SHA512: ee93aa689180712c0d020c73e188493d19255b32aa6dff8363d93a19e8ef536f698e894658b67ded7b155f5cf93c56ac295dd3c27da40281a33d969d25cceaba Homepage: https://httpd.apache.org/ Description-en: transitional package This is a transitional package to apache2 for users of libapache2-mod-proxy-uwsgi. It can be safely removed after the installation is complete.

Package: libapache2-mod-proxy-uwsgi Architecture: amd64 Version: 2.4.41-4ubuntu3 Priority: extra Section: universe/web Source: apache2 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Apache Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 10 Depends: apache2 (= 2.4.41-4ubuntu3) Filename: pool/universe/a/apache2/libapache2-mod-proxy-uwsgi_2.4.41-4ubuntu3_amd64.deb Size: 1180 MD5sum: fe58ea40034362428148048be0e17aac SHA1: b1dfbf0bba4f95103ab0bad907ae84dba1d402f8 SHA256: 28d72e16675bce952b6cb411ce7544ef20e6be45f4d2dba5d8e35e6f06a177fe Homepage: https://httpd.apache.org/ Description-en: transitional package This is a transitional package to apache2 for users of libapache2-mod-proxy-uwsgi. It can be safely removed after the installation is complete.

There are three methods to install libapache2-mod-proxy-uwsgi 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 libapache2-mod-proxy-uwsgi Using apt-get

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

sudo apt-get update

After updating apt database, We can install libapache2-mod-proxy-uwsgi using apt-get by running the following command:

sudo apt-get -y install libapache2-mod-proxy-uwsgi

Install libapache2-mod-proxy-uwsgi Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libapache2-mod-proxy-uwsgi using apt by running the following command:

sudo apt -y install libapache2-mod-proxy-uwsgi

Install libapache2-mod-proxy-uwsgi 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 libapache2-mod-proxy-uwsgi using aptitude by running the following command:

sudo aptitude -y install libapache2-mod-proxy-uwsgi

How To Uninstall libapache2-mod-proxy-uwsgi on Ubuntu 20.04

To uninstall only the libapache2-mod-proxy-uwsgi package we can use the following command:

sudo apt-get remove libapache2-mod-proxy-uwsgi

Uninstall libapache2-mod-proxy-uwsgi And Its Dependencies

To uninstall libapache2-mod-proxy-uwsgi and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libapache2-mod-proxy-uwsgi

Remove libapache2-mod-proxy-uwsgi Configurations and Data

To remove libapache2-mod-proxy-uwsgi configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libapache2-mod-proxy-uwsgi

Remove libapache2-mod-proxy-uwsgi configuration, data, and all of its dependencies

We can use the following command to remove libapache2-mod-proxy-uwsgi configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libapache2-mod-proxy-uwsgi

References

Summary

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