zaqar-sql-db-manage command not found

In this troubleshooting guide we learn how to fix zaqar-sql-db-manage command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

zaqar-sql-db-manage: command not found

or when using sudo you get the following error message

sudo: zaqar-sql-db-manage: command not found

Solutions to zaqar-sql-db-manage: command not found

How To Fix zaqar-sql-db-manage: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu zaqar-sql-db-manage is provided by python3-zaqar package.

python3-zaqar is:

Zaqar is a multi-tenant cloud messaging service for web developers. It combines the ideas pioneered by Amazon’s SQS product with additional semantics to support event broadcasting.

The service features a fully RESTful API, which developers can use to send messages between various components of their SaaS and mobile applications, by using a variety of communication patterns. Underlying this API is an efficient messaging engine designed with scalability and security in mind.

Other OpenStack components can integrate with Zaqar to surface events to end users and to communicate with guest agents that run in the “over-cloud” layer. Cloud operators can leverage Zaqar to provide equivalents of SQS and SNS to their customers.

This package contains the Python libraries that are part of Zaqar.

To fix this problem, we can install more using the command below.

sudo apt-get -y install python3-zaqar

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install python3-zaqar.

sudo apt -y install python3-zaqar

Or if you have aptitude installed you can use the following command.

sudo aptitude install python3-zaqar

Summary

In this tutorial we learn how to fix zaqar-sql-db-manage command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.