Redis runs as a background process that listens to a specific port (6379 by default) for incoming requests from clients. Running multiple instances requires a separate conf file and a new init script. The conf file specifies details for the new instance, and the init script handles starting/stopping of the instance background process.
Make a copy of the redis.conf file at C:\Program Files\Redis\Conf and give it a new name redis-s1.conf. Leave both files in the same directory C:\Program Files\Redis\Conf
Open the redis-s1.conf with your favorite text editor (e.g. notepad ) and change the following:
PID File
Port
Log File
Data Directory (don’t forget to create that directory)
For replication only : If you planning to use this instance as a slave in master-slave replication setting (where 127.0.0.1 is the master instance IP, 6379 in the master instance port)
To start the new instance
To connect to the new instance
Now you can have multiple Redis instances on the same server like any other DBMS.