Proxy_Pool 代理池与Redis配置的常见问题
董飞
2023-12-01
问题1:ERROR redis connection error: Error 10061 connecting to 127.0.0.1:6379. 由于目标计算机积极拒绝,无法连接。
解决:下载并安装Redis-x64-3.0.504.msi或zip都行,地址:https://github.com/MicrosoftArchive/redis/releases
问题2:redis中redis.exceptions.AuthenticationError: Authentication required
解决:redis.windows.conf中搜requirepass,在新的一行添加requirepass pwd,pwd为proxy_pool文件夹中setting.py设置的密码,两者须一致。设置完后在命令行运行 D:\Redis\redis-server.exe redis.windows.conf
问题3:windows 无法将“redis-server.exe”项识别为 cmdlet、函数、脚本文件或可运行程序的名称
解决:D:\Redis\redis-server.exe redis.windows.conf 运行的命令必须加redis-server.exe的完整路径,即包括红色字体部分