docker problem: Could not connect to Redis at redis-server:6379: Name or service not known

在使用docker运行redis时,客户端连接失败,出现了如下错误:

# 开启redis服务器
$ docker run --name some-redis -d redis 
# 客户端连接
$ docker run --it --rm redis redis-cli -h some-redis
Could not connect to Redis at redis-server:6379: Name or service not known

使用docker的容器互联技术作为解决方案,将客户端连接修改成:

$ docker run --it --rm --link some-redis:redis redis redis-cli -h some-redis

此时可以正常连接。

转载于:https://www.cnblogs.com/luoheng23/p/11121301.html

你可能感兴趣的:(docker problem: Could not connect to Redis at redis-server:6379: Name or service not known)