abed3k
Explore posts from serversDEPLOY logs showing Error: getaddrinfo ENOTFOUND redis.railway.internal
Use case: I am trying to deploy the backend server from an open-source project. One of the server requirements is a Redis host. I deployed a Redis project in the same environment and followed the guide (adding the
REDISHOST, REDISUSER, REDISPORT, REDISPASSWORD, REDIS_URL
environment variables). The build works but my deploy logs keep showing the error getaddrinfo ENOTFOUND redis.railway.internal
. I tried adding a sleep 3
to my start command and that did not work. I also tried adding ?family=0
to my redis_url environment variable but that did not work. What is causing this deploy log issue and how can I fix it?
For reference if needed: the open source project is https://github.com/twentyhq/twenty and the backend server is in the directorypackages/twenty-server.
This is the website where they mention the required environment variables for self hosting https://twenty.com/developers/section/self-hosting/self-hosting-var14 replies