Wednesday, May 31, 2023

Sitecore Next JSS - Configure the Redis server in XP0 topology

 This blog can help you to work with Sitecore CMS and guide you to configure the Redis server in XP0 topology. 

The following steps will be helpful for you to make the changes in the XP0 docker-compose.override.yml file. These guidelines are applicable to Sitecore 10.3. 

1. Create the project solution by referring to the following blog. You can name your solution anything you like.

https://sitecoreknowledgehub.blogspot.com/2023/03/sitecore-jss-next-jss-local-environment.html


2. Navigate to the path -\run\sitecore-xp0 and update the file - docker-compose. override.yml with the following configurations.


# Redis
  redis:
    image: ${REGISTRY}${COMPOSE_PROJECT_NAME}-redis:${VERSION:-latest}
    build:
      context: ../../docker/build/redis
      args:
        PARENT_IMAGE: ${SITECORE_DOCKER_REGISTRY}redis:3.2.100-${EXTERNAL_IMAGE_TAG_SUFFIX}




3. Navigate to the path -\run\sitecore-xp0 and run the docker-compose up -d. It should bring up the new Redis server container as shown below.





4. Verify the Redis connection. Navigate to the Redis container and run the following commands,







                                                                 Happy Learning!

No comments:

Post a Comment

How to Create a Public Link Using the Sitecore Content Hub REST API

Creating a public link using the Sitecore Content Hub REST API is a straightforward process that enables you to share content externally whi...