Hanchon
  • Home
  • BCH Testnet Environment
    • BCH Testnet Environment
    • BitcoinABC (bitcore patches)
    • Bitcore (insight + insight-api)
    • NOMP (mining pool)
    • CPU Miner
    • Fork the network
    • Run regtest
  • Bitprim
    • Introduction
    • Node versions
    • Requirements
    • Node installation
    • Run the node
    • Insight Installation
    • Run Insight (node + REST-API)
    • Query the insight api
  • Bitprim Node Configuration Files
    • Bitcoin Cash Testnet
    • Bitcoin Cash Mainnet
    • Bitcoin Core Testnet
    • Bitcoin Core Mainnet
    • Litecoin Testnet
    • Litecoin Mainnet
  • Bitprim Insight Configuration
    • Insight-API configuration file
  • Utils
    • Install Node Version Manager
    • Install Redis
Powered by GitBook
On this page
  • Install:
  • Run:
  • References:
  1. Utils

Install Redis

This page has the instructions to install Redis on Debian.

PreviousInstall Node Version Manager

Last updated 6 years ago

Install:

Download the stable version, compile and install it.

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make -j2
sudo make install

Run:

To start the redis server call from a terminal:

redis-server

The terminal session must be kept alive for the database, you may want to use a screen session and run the redis-server there.

screen -S redis-screen
redis-server
# Detach the session: Control + a + d

References:

  • Redis:

https://redis.io/