DataDiva
DataDiva

Reputation: 1

Error installing Open Source Redis server on ec2

I am installing Open Source Redis server on ec2. I have successfully connected to ec2 using my pem. I have downloaded Redis. Issued the following commands:

tar xvzf redis-stable.tar.gz > cd redis-stable.

The next step: make && make install is not working.

I am getting the following error:

~/redis-stable$ make && make install The program 'make' can be found in the following packages: * make * make-guile Try: sudo apt install [email protected]:~/redis-stable$

What is the need to continue with this installation process? I need to complete this installation/build process. I tried the sudo command as well, that is getting an error.

Upvotes: 0

Views: 935

Answers (2)

Nans
Nans

Reputation: 779

Any specific reason why you would want to compile and install redis? If not, you can simply execute below.

sudo apt-get install redis-server

Upvotes: 1

shahin
shahin

Reputation: 3655

Give the following command to install the required Dependencies

sudo apt-get update
sudo apt-get install build-essential

After that you can continue the installation with

make && make install

Upvotes: 0

Related Questions