kiedy używam węzła mysql, pojawia się błąd między 12:00 a 2:00, że połączenie TCP jest zamykane przez serwer. Oto pełna wiadomość:
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)
Jest rozwiązanie . Jednak po tym, jak spróbuję w ten sposób, problem też się pojawia. teraz nie wiem, jak to zrobić. Czy ktoś napotyka ten problem?
Oto sposób, w jaki napisałem, postępuj zgodnie z rozwiązaniem:
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();