tarantoolctl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tarantoolctl: command not found
or when using sudo you get the following error message
sudo: tarantoolctl: command not found
Solutions to tarantoolctl: command not found
How To Fix tarantoolctl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tarantoolctl is provided by tarantool-common package.
tarantool-common is:
Tarantool is an in-memory database and Lua application server. This package provides scripts to work with tarantool configuration and log files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tarantool-common
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tarantool-common.
sudo apt -y install tarantool-common
Or if you have aptitude installed you can use the following command.
sudo aptitude install tarantool-common
Summary
In this tutorial we learn how to fix tarantoolctl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.