gpt4 book ai didi

node.js - Redis 客户端连接到 redis 远程服务器,但无法在其上读取或写入

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

在 DegitalOcean 中,我必须管理两个服务器“Nodeserver”和一个 redis 服务器“Redisserver”,方法是使前者的 Node/快速应用程序连接成为可能,以便使用后者的数据库。

为了本地测试的目的,我还在'Nodeserver'上本地安装了另一个redis服务器'LocalRedisOnNodeServer'。

我已将“Redisserver”配置为接受外部连接,如 https://www.digitalocean.com/community/tutorials/how-to-set-up-a-redis-server-as-a-session-handler-for-php-on-ubuntu-14-04 所示。当尝试从“LocalRedisOnNodeServer”的 redis-cli 连接时,我能够访问远程“Redis_server”数据库,并且也可以通过它进行读写操作。

我仍然没有为“Redis_server”配置任何安全措施(至于编辑 iptables..),我只设置了一个密码(在 redis.conf 中要求通过),我仍然不知道是否有更多可以在此服务器上使用 SSH 进行安全身份验证(或者也为它配置我的应用程序代码)。

以下是包含 express session 和传递给 session 的 RedisStore(接收 redis 客户端作为参数)的 app.js 文件。

var express = require('express');
var app = express();
var routes = require('./routes');
var errorHandlers = require('./middleware/errorhandlers');
var log = require('./middleware/log');
var partials = require('express-partials');
var cookieParser = require('cookie-parser');
var session = require('express-session');
var RedisStore = require('connect-redis')(session);
var bodyParser = require('body-parser');
var redis = require('redis');
var config = require('./config');

app.set('view engine', 'ejs');
app.set('view options', {defaultLayout: 'layout'});

app.use(partials());
app.use(log.logger);
app.use(express.static(__dirname + '/static'));
app.use(cookieParser(config.secret));

console.log(config.redisConf);

var redisClient = redis.createClient(config.redisConf);

redisClient.on('connect', function() {
console.log('connected to redis!!');
});

redisClient.set('framework', 'AngularJS', function(err, reply) {
console.log('the framwork var was SET to AngularJS : the following is the server answer : ');
console.log(reply);
});

app.use(session({
secret: config.secret,
resave: false,
saveUninitialized: true,
store: new RedisStore({client: redisClient})

}));

// right after the session
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));

app.get('/', routes.index);
app.get('/login', routes.login);
app.post('/login', routes.loginProcess);
app.get('/chat', routes.chat);
app.get('/account/login', routes.login);

app.get('/error', function(req, res, next){
next(new Error('A contrived error'));
});

app.use(errorHandlers.error);
app.use(errorHandlers.notFound);

app.listen(config.port);
console.log("App server running on port " + config.port);

这是 config.js :

var config = {
port: 3000,
secret: 'secret',

redisConf: {
host: 'xxx.xxx.xxx.xxx.', // The redis's server ip
port: '6379',
pass: 'theredispass'
}
};
module.exports = config;

我已经测试了与本地 redis 服务器“LocalRedisOnNodeServer”的应用程序连接,并且它是成功的以及读取和写入 key (用于设置和获取......)。这证明应用程序代码没有问题。但是当我从本地 127.0.0.1 的 redis 主机 (redisConf.host) 更改为 'Redisserver' ip 时,只发生连接(redisClient.on('connect' 回调记录它'已连接到 redis!!'但是读取和写入函数(get 和 set)失败,因为它们的回调没有被触发,另一个问题是无法创建 express 的 session 并且它的值仍然未定义。

我想知道为什么在“Node_server 的 shell(redis-cli)上的本地 redis 服务器的客户端到远程服务器的连接以及读写操作都是可能的,而应用程序代码中的 redisClient 失败。

redis_6379.log 中没有提到错误

最好的问候

最佳答案

我先通过添加解决了

client.on("error", function (err) {
console.log("Error " + err);
});

所以我可以看到哪里出了问题(实际上我的错误是认为 redisClient 属于 connect-redis 模块,所以我没有在 node_redis 模块上看到所有这些可用选项..)并且添加的代码向我展示了问题就像在 this thread 中一样感谢this answer而且,我看到最好将 get 方法移到集合的回调中,因为远程服务器会异步响应..

关于node.js - Redis 客户端连接到 redis 远程服务器,但无法在其上读取或写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33123868/

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