siridb-server command not found

In this troubleshooting guide we learn how to fix siridb-server command not found error message

Introduction

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

siridb-server: command not found

or when using sudo you get the following error message

sudo: siridb-server: command not found

Solutions to siridb-server: command not found

How To Fix siridb-server: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu siridb-server is provided by siridb-server package.

siridb-server is:

SiriDB is a scalable, robust and fast time series database. Build from the ground up SiriDB uses a mechanism to operate without a global index and allows server resources to be added on the fly. SiriDB’s query language includes dynamic grouping of time series for easy analysis over large amounts of time series.

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

sudo apt-get -y install siridb-server

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

You can also use apt command to install siridb-server.

sudo apt -y install siridb-server

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

sudo aptitude install siridb-server

Summary

In this tutorial we learn how to fix siridb-server command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.