Set up Redis in-memory data store
Redis is an open source in-memory data structure store and key–value database with optional durability. It’s used as a backend for persistent cache implementation.
1 Install
Execute on the command line:
sudo apt install redis
2 Start
Since Redis is usually used in our web apps, we want it always running and started automatically after a reboot.
2.1 Start automatically (recommended)
Execute on the command line:
sudo systemctl enable redis-server
This will start the server and set it up to start automatically after a reboot.
To stop the server and prevent it from running after a reboot, execute:
sudo systemctl disable redis-server
2.2 Start manually when needed
You can start the server manually by executing on the command line:
redis-server
The server will run in the foreground, and you can stop it when needed
with Control-C.
3 Test
To test if the Redis server is running, execute:
redis-cli ping
If correctly started, Redis should respond with PONG.