How To Install oslo-messaging-zmq-receiver on Debian 10

Learn how to install oslo-messaging-zmq-receiver on Debian 10 with this tutorial. oslo-messaging-zmq-receiver is Oslo Messaging ZeroMQ receiver daemon

Introduction

In this tutorial we learn how to install oslo-messaging-zmq-receiver on Debian 10.

What is oslo-messaging-zmq-receiver

oslo-messaging-zmq-receiver is:

The Oslo Messaging API supports RPC and notifications over a number of different messaging transports.

This package provides the ZeroMQ receiver which processes incoming messages on all servers participating in a ZeroMQ messaging cluster.

There are three methods to install oslo-messaging-zmq-receiver on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install oslo-messaging-zmq-receiver Using apt-get

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

sudo apt-get update

After updating apt database, We can install oslo-messaging-zmq-receiver using apt-get by running the following command:

sudo apt-get -y install oslo-messaging-zmq-receiver

Install oslo-messaging-zmq-receiver Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install oslo-messaging-zmq-receiver using apt by running the following command:

sudo apt -y install oslo-messaging-zmq-receiver

Install oslo-messaging-zmq-receiver 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install oslo-messaging-zmq-receiver using aptitude by running the following command:

sudo aptitude -y install oslo-messaging-zmq-receiver

How To Uninstall oslo-messaging-zmq-receiver on Debian 10

To uninstall only the oslo-messaging-zmq-receiver package we can use the following command:

sudo apt-get remove oslo-messaging-zmq-receiver

Uninstall oslo-messaging-zmq-receiver And Its Dependencies

To uninstall oslo-messaging-zmq-receiver and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove oslo-messaging-zmq-receiver

Remove oslo-messaging-zmq-receiver Configurations and Data

To remove oslo-messaging-zmq-receiver configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge oslo-messaging-zmq-receiver

Remove oslo-messaging-zmq-receiver configuration, data, and all of its dependencies

We can use the following command to remove oslo-messaging-zmq-receiver configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge oslo-messaging-zmq-receiver

Dependencies

oslo-messaging-zmq-receiver have the following dependencies:

References

Summary

In this tutorial we learn how to install oslo-messaging-zmq-receiver package on Debian 10 using different package management tools: apt, apt-get and aptitude.