1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
2020-02-28 15:58:55 -05:00

701 B

Redis is an in-memory key-value store which NetBox employs for caching and queuing. This section entails the installation and configuration of a local Redis instance. If you already have a Redis service in place, skip to the next section.

Ubuntu

# apt-get install -y redis-server

CentOS

# yum install -y redis

You may wish to modify the Redis configuration at /etc/redis.conf or /etc/redis/redis.conf, however in most cases the default configuration is sufficient.

Verify Service Status

Use the redis-cli utility to ensure the Redis service is functional:

$ redis-cli ping
PONG