redis-server command not found

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

Introduction

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

redis-server: command not found

or when using sudo you get the following error message

sudo: redis-server: command not found

Solutions to redis-server: command not found

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

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

redis-server is:

Redis is a key-value database in a similar vein to memcache but the dataset is non-volatile. Redis additionally provides native support for atomically manipulating and querying data structures such as lists and sets.

The dataset is stored entirely in memory and periodically flushed to disk.

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

sudo apt-get -y install redis-server

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

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

sudo apt -y install redis-server

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

sudo aptitude install redis-server

Summary

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