通过ssh隧道连接到集群Redis

时间:2019-03-24 11:14:58

标签: python redis node-redis py-redis

script ...将python连接到redis并将密钥发送到redis(来自python字典)我使用库py-redis写了connecgion connection_pool = redis.ConnectionPool(主机='本地主机',端口= 6379) redisConnection = redis.Redis(连接池=连接池) 然后将其发送到localhost redis和其他环境-dev redis 但稍后在开发redis中-创建具有2个redis实例的redis集群-2个节点 并从此时间通过ssh隧道连接到redis。 我通过ssh sth添加到我的脚本连接中: ssh -f -N -L6379:redis.aps1.cache.amazonaws.com:6379 ubuntu@58.12.73.10 一种 从那以后,当我将脚本发送到localhost时,一切正常,密钥在Redis中,而dev-密钥不进入redisa。 ssh隧道连接正确但 没有东西落入redis 可能是什么原因?

0 个答案:

没有答案