quando eu uso o node mysql, aparece um erro entre 12h00 e 2h00 que a conexão TCP foi desligada pelo servidor. Esta é a mensagem completa:
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)
Essa é a solução . Porém, depois de tentar dessa forma, o problema também apareceu. agora não sei como fazer. Alguém conhece esse problema?
Aqui está o jeito que escrevi seguir a solução:
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; }
. Você executar oif()
bloco se for nãoPROTOCOL_CONNECTION_LOST
e ainda a mensagem diz que é esse erro ... provavelmente muito confuso.