gpt4 book ai didi

【AzureCacheforRedis】PythonDjange-Redis连接AzureRedis服务遇上(104,'Connectionresetbypeer')

转载 作者:我是一只小鸟 更新时间:2023-02-03 22:33:50 25 4
gpt4 key购买 nike

问题描述

使用Python连接Azure Redis服务,因为在代码中使用的是Djange-redis组件,所以通过如下的配置连接到Azure Redis服务:

                          CACHES =
                          
                             {
    
                          
                          
                            "
                          
                          
                            default
                          
                          
                            "
                          
                          
                            : {
        
                          
                          
                            "
                          
                          
                            BACKEND
                          
                          
                            "
                          
                          : 
                          
                            "
                          
                          
                            django_redis.cache.RedisCache
                          
                          
                            "
                          
                          
                            ,
        
                          
                          
                            "
                          
                          
                            LOCATION
                          
                          
                            "
                          
                          : 
                          
                            "
                          
                          
                             redis 
                            ://xxxxxxxxx.redis.cache.chinacloudapi.cn:6380/1
                          
                          
                            "
                          
                          
                            ,
        
                          
                          
                            "
                          
                          
                            OPTIONS
                          
                          
                            "
                          
                          
                            : {
            
                          
                          
                            "
                          
                          
                            CLIENT_CLASS
                          
                          
                            "
                          
                          : 
                          
                            "
                          
                          
                            django_redis.client.DefaultClient
                          
                          
                            "
                          
                          
                            ,
        }
    }
}
                          
                        

但是当部署到AKS中后,发现一直报错 [ERROR][testdjangeredis.py:109]Error while reading from xxxxxxxxx.redis.cache.chinacloudapi.cn:6380 : (104, 'Connection reset by peer') 。

  。

问题解答

查看Django-redis的官方文档,对 cache backend 中Location的介绍为:

URL 格式举例 。

  1. redis://[:password]@localhost:6379/0
  2. rediss://[:password]@localhost:6380/0
  3. unix://[:password]@/path/to/socket.sock?db=0

支持三种 URL scheme

  • redis://: 普通的 TCP 套接字连接
  • rediss://: SSL 包裹的 TCP 套接字连接
  • unix://: Unix 域套接字连接

指定数据库数字的方法

  • db 查询参数, 例如: redis://localhost?db=0
  • 如果使用 redis:// scheme, 可以直接将数字写在路径中, 例如: redis://localhost/0

  。

在仔细对比配置,发现连接Azure Redis的时候使用SSL 6380端口,而Djange-Redis的配置中 scheme 还继续使用的 redis://,而不是rediss://,所以导致 Connection reset.

为了解决以上问题,直接修改Location设置为:redis s ://xxxxxxxxx.redis.cache.chinacloudapi.cn: 6380 /1 即可! 。

                          CACHES =
                          
                             {
    
                          
                          
                            "
                          
                          
                            default
                          
                          
                            "
                          
                          
                            : {
        
                          
                          
                            "
                          
                          
                            BACKEND
                          
                          
                            "
                          
                          : 
                          
                            "
                          
                          
                            django_redis.cache.RedisCache
                          
                          
                            "
                          
                          
                            ,
        
                          
                          
                            "
                          
                          
                            LOCATION
                          
                          
                            "
                          
                          : 
                          
                            "
                          
                          
                             rediss 
                            ://xxxxxxxxx.redis.cache.chinacloudapi.cn:6380/1
                          
                          
                            "
                          
                          
                            ,
        
                          
                          
                            "
                          
                          
                            OPTIONS
                          
                          
                            "
                          
                          
                            : {
            
                          
                          
                            "
                          
                          
                            CLIENT_CLASS
                          
                          
                            "
                          
                          : 
                          
                            "
                          
                          
                            django_redis.client.DefaultClient
                          
                          
                            "
                          
                          
                            ,
        }
    }
}
                          
                        

  。

  。

附录一:在机器人ChatGPT中寻求 djange_redis 配置答案

问题一:如何配置djange_redis:

  。

  。

问题二:如何设置Djange_redis的超时时间

问题三:如何设置djange_redis的keep_alive

  。

  。

问题四:如何启用djange_redis SSL

  。

  。

  。

问题五:启用django-redis的SSL并通过6380端口连接示例

  。

  。

参考资料

django-redis 中文文档: https://django-redis-chs.readthedocs.io/zh_CN/latest/index.html 。

 

最后此篇关于【AzureCacheforRedis】PythonDjange-Redis连接AzureRedis服务遇上(104,'Connectionresetbypeer')的文章就讲到这里了,如果你想了解更多关于【AzureCacheforRedis】PythonDjange-Redis连接AzureRedis服务遇上(104,'Connectionresetbypeer')的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com