对于我们的Node.js到Redis连接,我们使用的是Redis npm模块。
有一段时间,我们收到以下错误,
message: read ECONNRESET, stack: Error: read ECONNRESET
at exports._errnoException (util.js:1020:11)
at TCP.onread (net.js:568:26)
Redis设置是, 内联网中的一个redis服务器和2个节点js服务器,每个服务器在DMZ中运行8个PM2实例。节点服务器和Redis服务器之间有一个防火墙。
NODE版本 - 6.11.2 REDIS版本 - 3.2.9 PM2版本 - 2.4.6
我们也进行了TCP转储。 TCP转储显示一些RST / ACK数据包。 TCP Dump
在nodeJS中,我们正在创建一个redis连接,并尝试对所有请求使用相同的redis连接。
const Redis = require('redis');
const Config = require('../../config');
const Logger = require('../helpers/logger');
const redisClient = (function() {
// Start with a fake client so that we have a client that works
// even when Redis server is down
let client = {
get: function(key, callback) {
callback(null, null);
},
setex: function(key, time, value) {
Logger.info('Value:',value);
// Do nothing in particular
}
};
// Attempt to create a new instance of an actual redis client
const redisConfig = Config.get('/redis');
const tempClient = Redis.createClient(redisConfig.port,redisConfig.host, {
//eslint-disable-next-line
// console.log('[redis]','Creating the retry strategy');
retry_strategy: function(options) { //eslint-disable-line
//eslint-disable-next-line
console.log('[redis]','Creating the retry strategy');
if (options.error && options.error.code === 'ECONNREFUSED') {
// End reconnecting on a specific error and flush all commands with
// a individual error
//eslint-disable-next-line
console.log('[redis,error]','Connection refused error');
return new Error('The server refused the connection');
}
if (options.error && options.error.code === 'NR_CLOSED') {
//eslint-disable-next-line
console.log('[redis,error]','Connection closed error');
return new Error('The server closed the connection');
}
if (options.attempt > 5) {
// End reconnecting with built in error
//eslint-disable-next-line
console.log('Exceeded attempts');
return undefined;
}
if (options.total_retry_time > 1000 * 60 * 60) {
// End reconnecting after a specific timeout and flush all commands
// with a individual error
//eslint-disable-next-line
console.log('Retrial time:' + options.total_retry_time);
return 1000;
}
// reconnect after
return Math.min(options.attempt * 100, 3000);
}
});
// Set the "client" variable to the actual redis client instance
// once a connection is established with the Redis server
tempClient.on('ready', () => {
client = tempClient;
});
tempClient.on('error', (error) => {
Logger.info(['redis','error'],'Redis client error:', error);
if (error.code === 'NR_CLOSED') {
tempClient.end();
client = Redis.createClient(redisConfig.port,redisConfig.host, {
retry_strategy: function(options) { //eslint-disable-line
if (options.error && options.error.code === 'NR_CLOSED') {
Logger.info(['redis','error'],'Connection closed error');
return new Error('The server refused the connection');
}
}
});
}
});
/**
* Get a redis client
* @return {Object} client - eventually a proper redis client object
* (if redis is up) or a fake client object (if redis is down)
*/
const getClient = function() {
Logger.info('Getting the client ' + client);
return client;
};
return {
getClient: getClient
};
}());
module.exports = redisClient;
我们想知道究竟是什么导致连接问题以及原因和解决方案是什么。
答案 0 :(得分:0)
我在使用Google Firebase Cloud Functions时遇到了同样的问题。问题是最新版本的Redis可以使连接永远存活。如果像在我们使用Cloud Functions的情况一样,调用Redis的过程在调用Redis之后不久结束,则必须将timeout
设置设为不同于默认值0的值。
您可以通过更改Redis配置文件redis.conf
文档说您还可以在不重新启动实例的情况下设置超时设置,如果您的Redis实例受到保护,则无法通过redis-cli运行CONFIG SET timeout 15
之类的操作,这将导致以下错误:
(错误)ERR未知命令
CONFIG
答案 1 :(得分:0)
在 /etc/redis/redis.conf 文件中,
<块引用>用绑定 0.0.0.0 替换绑定 127.0.0.1 将protected-mode yes 替换为protected-mode no
然后使用 ufw allow 6379 和 ufw allow 6379/tcp 允许端口 6379
iptables -A 输入 -p tcp --dport 6379 -j 接受 iptables -A 输入 -p udp --dport 6379 -j 接受
终于
sudo systemctl 停止 redis 须藤 systemctl 启动 redis