How to Install Redis On Ubuntu Linux

preview_player
Показать описание
Redis is an open source, BSD licensed, advanced in-memory key-value store where keys can contain data structures such as strings, hashes, lists, sets, and sorted sets.
Redis Can be used as Database, a Caching layer or a Message broker. There are two ways to install Redis under Ubuntu Linux.

1. using apt-get install
----------------------------------------------------
$ sudo apt-get install redis-server

2 with following commands:
-------------------------------------------------------------
$ sudo apt-get update
$ sudo apt-get install build-essential tcl
$ mkdir redis && cd redis
$ cd redis-4.0.0
$ make
$ make test
$ sudo make install

★★★Top Online Courses From ProgrammingKnowledge ★★★

★★★ Online Courses to learn ★★★

★★★ Follow ★★★

DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help support the channel and allows us to continue to make videos like this. Thank you for the support!
Рекомендации по теме
Комментарии
Автор

You have the best installation tutorials on YouTube! Thank you!

WaldoTheWombat
Автор

Thank you very much for detailed steps

muthukumaran
Автор

clear Tutorial Thanks for share good work

tharakasamaraweera
Автор

You're awesome! Thanks a lot, mate :D

littlemike
Автор

Hi, I tried sending some commands from java to the server, but whenever I do it, they send me this message java.net.ConnectException: Connection refused: connect" That means I need to set the server to listen to the requests from Java. How can I do this?

fernandozegarra