Redis Configuration

If you installed redis on your local environment on port 6379, you don't need to change configuration unless you need to set additional option.

Steps to Change Redis Configuration

You can set host or port by changing config.json file.

  1. Navigate and open '/engine/system/redis/config/config.json'

  2. Enter redis URL and save file

{ 
    "url": "redis://alice:foobared@awesome.redis.server:6380"
}

GeneralURL format is 'redis[s]://[[username][:password]@][host][:port][/db-number]'

You can set addtional options like discrete parameters, UNIX sockets, and TLS. Please visit below link for more information.

https://github.com/redis/node-redis/blob/HEAD/docs/client-configuration.md

Last updated