Changes between Version 1 and Version 2 of Nmm2022/Agenda/Netbox


Ignore:
Timestamp:
Jun 1, 2022, 1:45:08 PM (2 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nmm2022/Agenda/Netbox

    v1 v2  
    2727}}}
    2828Do not use the password from the example. Choose a strong, random password to ensure secure database authentication for your NetBox installation.
     29
     30Once complete, enter ''' \q ''' to exit the PostgreSQL shell.
     31
     32=== Redis Installation ===
     33
     34Redis 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.
     35Redis v4.0 or later required.
     36{{{
     37# sudo apt install -y redis-server
     38}}}
     39
     40Before continuing, verify that your installed version of Redis is at least v4.0:
     41{{{
     42# redis-server -v
     43}}}
     44You 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.