เมื่อฉันใช้ node mysql ข้อผิดพลาดจะปรากฏขึ้นระหว่างเวลา 12:00 ถึง 02:00 น. ว่าการเชื่อมต่อ TCP ถูกปิดโดยเซิร์ฟเวอร์ นี่คือข้อความฉบับเต็ม:
Error: Connection lost: The server closed the connection.
at Protocol.end (/opt/node-v0.10.20-linux-x64/IM/node_modules/mysql/lib/protocol/Protocol.js:73:13)
at Socket.onend (stream.js:79:10)
at Socket.EventEmitter.emit (events.js:117:20)
at _stream_readable.js:920:16
at process._tickCallback (node.js:415:13)
มีเป็นวิธีการแก้ปัญหา อย่างไรก็ตามหลังจากลองทำตามวิธีนี้ปัญหาก็ปรากฏขึ้นเช่นกัน ตอนนี้ไม่รู้จะทำอย่างไร มีใครเจอปัญหานี้บ้าง?
นี่คือวิธีที่ฉันเขียนตามแนวทางแก้ไข:
var handleKFDisconnect = function() {
kfdb.on('error', function(err) {
if (!err.fatal) {
return;
}
if (err.code !== 'PROTOCOL_CONNECTION_LOST') {
console.log("PROTOCOL_CONNECTION_LOST");
throw err;
}
log.error("The database is error:" + err.stack);
kfdb = mysql.createConnection(kf_config);
console.log("kfid");
console.log(kfdb);
handleKFDisconnect();
});
};
handleKFDisconnect();
if (err.code !== 'PROTOCOL_CONNECTION_LOST') { console.log("PROTOCOL_CONNECTION_LOST"); throw err; }
โปรดทราบว่าในรหัสของคุณคุณมีข้อความถูกต้อง: คุณดำเนินการif()
บล็อกหากยังไม่PROTOCOL_CONNECTION_LOST
ได้รับข้อความแจ้งว่าเป็นข้อผิดพลาดนั้น ... อาจสับสนมาก