Step 2: Start Redis locally

Teradata Developer Guides

ft:locale
en-US
ft:lastEdition
2026-08-18

We'll use Docker for simplicity. Run the following command:

docker run -d --name redis-events -p 6379:6379 redis:7-alpine

This starts a Redis container on localhost:6379.

If you prefer to use an existing Redis installation, ensure it's running and accessible on port 6379.

Verify Redis is running:

docker exec redis-events redis-cli ping 

You should see PONG in response.