Skip to content

Creating Multiple Redis Instance Services On Windows#

Even Salvatore Sanfilippo (creator of Redis) thinks it's a bad idea to use multiple DBs in Redis. So we can install as many Redis instances as the number of DBs we need. This post will show you how to create multiple Redis instance as Windows service on the same Windows server.

Choose Redis Windows port version#

As mentioned by the official doc, due to the lack of fork on Windows system, Redis is not officially supported on Windows. For Windows port version of Redis, we can use the one from : https://github.com/MicrosoftArchive/redis , currently the latest version is v3.2.100 which was released on Jul 1, 2016.

Create single Redis service on Windows#

The official doc is good enough to get the job done. You can create the service by a simple command:

> redis-server --service-install

Or if you want to use a customized configuration:

> redis-server --service-install redis.windows.conf --loglevel verbose

BTW, if you want to use Redis in the Windows Subsystem for Linux (WSL) on Windows 10 or on Windows Server 2019, you can refer to this official doc.

Create multiple Redis services on Windows#

There's no many docs on the Internet telling you how to achieve that, in fact the doc from the Github gives the answer. We should use the magic --service-name.

# Create redis service which name is redis_6381 and listens to the port tcp 6381
> redis-server --service-install --service-name redis_6381 --port 6381

# Create redis service which name is redis_6382 and listens to the port tcp 6382
> redis-server --service-install --service-name redis_6382 --port 6382

We just created 2 Redis server services on Windows, the only difference between them is the ports they listen to. All the other configurations are the default ones. This provokes a problem. That is the rdb dump file. The default configure set the rdb file name to dump.rdb, so both the redis services are using the same dump.rdb file which creates the file conflict in case of SAVE command or BGSAVE command.

Due to above problem, we need to set each redis service uses its own rdb file. In redis config, there're two configurations to control the rdb file.

  1. rbd file folder

    # from redis-cli
    config get dir
    config set dir [new dir path]
    
  2. rdb file name

    # from redis-cli
    config get dbfilename
    config set dbfilename [new db file name]
    

Don't forget to set also the maxmemory and maxmemory-policy in order to avoid the out of memory issue. Redis' default maxmemory is set to 0 which means no limitation on used memory, and the default maxmemory-policy is set to noeviction, which means the Redis server returns errors when the memory limit was reached and the client is trying to execute commands that could result in more memory to be used.

To get Redis memory usage, use :

# from redis-cli
info memory

Comments