Redis random connection errors

I have a redis (single server), single pod runnning on a kubernetes cluster. I have setup TLS using openssl certificates and here is my
Redis.conf

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> cluster-enabled no
protected-mode no
dir /data
port 6
requirepass "SOMEPASSWORD"
tls-port 6379
tls-cert-file /tls/redis.crt
tls-key-file /tls/redis.key
tls-ca-cert-file /tls/ca.crt
tls-auth-clients no
</code>
<code> cluster-enabled no protected-mode no dir /data port 6 requirepass "SOMEPASSWORD" tls-port 6379 tls-cert-file /tls/redis.crt tls-key-file /tls/redis.key tls-ca-cert-file /tls/ca.crt tls-auth-clients no </code>
    cluster-enabled no
    protected-mode no
    dir /data
    port 6
    requirepass "SOMEPASSWORD"
    tls-port 6379
    tls-cert-file /tls/redis.crt
    tls-key-file /tls/redis.key
    tls-ca-cert-file /tls/ca.crt
    tls-auth-clients no

I am running a nodejs server and connecting using the redis package like this

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>const { Emitter } = require("@socket.io/redis-emitter");
const redis = require('redis');
const fs = require('fs');
const path = require('path');
const pubClient = redis.createClient({
host: process.env.redisHost,
port: process.env.redisPort,
password: process.env.redisPassword,
connectTimeout: 60 * 60 * 1000,
tls: {
servername: process.env.redisHost,
rejectUnauthorized: false,
ca: [fs.readFileSync(path.resolve(__dirname,'./conf-redis/ca.crt'))]
}
});
pubClient.on("connect", function (val) {
console.error("ws | redis connected ",val);
});
pubClient.on("error", function (err) {
console.error("ws | redis error--", err);
});
const ioemitter = new Emitter(pubClient);
</code>
<code>const { Emitter } = require("@socket.io/redis-emitter"); const redis = require('redis'); const fs = require('fs'); const path = require('path'); const pubClient = redis.createClient({ host: process.env.redisHost, port: process.env.redisPort, password: process.env.redisPassword, connectTimeout: 60 * 60 * 1000, tls: { servername: process.env.redisHost, rejectUnauthorized: false, ca: [fs.readFileSync(path.resolve(__dirname,'./conf-redis/ca.crt'))] } }); pubClient.on("connect", function (val) { console.error("ws | redis connected ",val); }); pubClient.on("error", function (err) { console.error("ws | redis error--", err); }); const ioemitter = new Emitter(pubClient); </code>
const { Emitter } = require("@socket.io/redis-emitter");
const redis = require('redis');
const fs = require('fs');
const path = require('path');

const pubClient = redis.createClient({
  host: process.env.redisHost,
  port: process.env.redisPort,
  password: process.env.redisPassword,
  connectTimeout: 60 * 60 * 1000,
  tls: {
    servername: process.env.redisHost,
    rejectUnauthorized: false,
    ca: [fs.readFileSync(path.resolve(__dirname,'./conf-redis/ca.crt'))]
  }
});

pubClient.on("connect", function (val) {
  console.error("ws | redis connected ",val);
});   
pubClient.on("error", function (err) {
  console.error("ws | redis error--", err);
}); 

const ioemitter = new Emitter(pubClient);

ISSUE
I keep getting the “ws | redis error–” logs randomly, no apparent pattern. But it reconnects immediately after.

Here is these error logs i keep seeing in the redis pod logs.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>1:M 27 Jul 2024 03:49:46.318 # Error accepting a client connection: error:0A000126:SSL routines::unexpected eof while reading (conn: fd=18)
1:M 27 Jul 2024 03:49:52.631 # Error accepting a client connection: error:0A00010B:SSL routines::wrong version number
1:M 27 Jul 2024 03:49:58.096 # Error accepting a client connection: error:0A000126:SSL routines::unexpected eof while reading
1:M 27 Jul 2024 03:49:58.319 # Error accepting a client connection: error:0A00009C:SSL routines::http request (conn: fd=18)
1:M 27 Jul 2024 03:49:58.780 # Error accepting a client connection: error:0A00010B:SSL routines::wrong version number (conn: fd=18)
1:M 27 Jul 2024 03:50:01.575 # Error accepting a client connection: error:0A00018C:SSL routines::version too low (conn: fd=18)
</code>
<code>1:M 27 Jul 2024 03:49:46.318 # Error accepting a client connection: error:0A000126:SSL routines::unexpected eof while reading (conn: fd=18) 1:M 27 Jul 2024 03:49:52.631 # Error accepting a client connection: error:0A00010B:SSL routines::wrong version number 1:M 27 Jul 2024 03:49:58.096 # Error accepting a client connection: error:0A000126:SSL routines::unexpected eof while reading 1:M 27 Jul 2024 03:49:58.319 # Error accepting a client connection: error:0A00009C:SSL routines::http request (conn: fd=18) 1:M 27 Jul 2024 03:49:58.780 # Error accepting a client connection: error:0A00010B:SSL routines::wrong version number (conn: fd=18) 1:M 27 Jul 2024 03:50:01.575 # Error accepting a client connection: error:0A00018C:SSL routines::version too low (conn: fd=18) </code>
1:M 27 Jul 2024 03:49:46.318 # Error accepting a client connection: error:0A000126:SSL routines::unexpected eof while reading (conn: fd=18)
1:M 27 Jul 2024 03:49:52.631 # Error accepting a client connection: error:0A00010B:SSL routines::wrong version number
1:M 27 Jul 2024 03:49:58.096 # Error accepting a client connection: error:0A000126:SSL routines::unexpected eof while reading
1:M 27 Jul 2024 03:49:58.319 # Error accepting a client connection: error:0A00009C:SSL routines::http request (conn: fd=18)
1:M 27 Jul 2024 03:49:58.780 # Error accepting a client connection: error:0A00010B:SSL routines::wrong version number (conn: fd=18)
1:M 27 Jul 2024 03:50:01.575 # Error accepting a client connection: error:0A00018C:SSL routines::version too low (conn: fd=18)

Could you please help me understand the problem or if something is wrongly configured, Thanks.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật