gpt4 book ai didi

node.js - 无法连接到托管的 redis : Ready check failed: ERR operation not permitted

转载 作者:IT王子 更新时间:2023-10-29 06:03:07 24 4
gpt4 key购买 nike

我正在尝试连接到 IrisCouch 上通过 Nodejitsu 配置的托管 redis。

认为是我的 server.js 的相关部分:

var redisUrl = require('url').parse(config.REDIS_CONNECTION_URI);
var client = require('redis').createClient(redisUrl.port, redisUrl.hostname);

我还没有在我的 server.js 中与客户端进行任何交互,这就是为什么我认为它抛出“不允许的操作”很奇怪,因为基本上我唯一的操作做的是连接。我没有 redis.conf 文件,我相信我不应该需要一个,因为我自己不托管 redis 实例。

日志:

 Express server listening on port 3000

/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:504
throw callback_err;
^
Error: Ready check failed: ERR operation not permitted
at RedisClient.on_info_cmd (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:317:35)
at Command.RedisClient.ready_check.send_anyway [as callback] (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:365:14)
at RedisClient.return_error (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:500:25)
at ReplyParser.RedisClient.init_parser (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:260:14)
at ReplyParser.EventEmitter.emit (events.js:96:17)
at ReplyParser.send_error (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/lib/parser/javascript.js:293:10)
at ReplyParser.execute (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/lib/parser/javascript.js:176:22)
at RedisClient.on_data (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:476:27)
at Socket.<anonymous> (/Users/soroushhakami/dev/projects/projectx/node_modules/redis/index.js:79:14)
at Socket.EventEmitter.emit (events.js:96:17)

对可能出现的问题有什么想法吗?

最佳答案

创建客户端后需要直接调用client.auth():

var client = require('redis').createClient(redisUrl.port, redisUrl.hostname);
client.auth(PASSWORD);

令人困惑的是,当你不在 client 上调用 .auth() 但也没有别的时,你会得到一个失败的就绪检查错误。

关于node.js - 无法连接到托管的 redis : Ready check failed: ERR operation not permitted,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15848707/

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