quando utilizzo il nodo mysql, tra le 12:00 e le 2:00 viene visualizzato un errore che indica che la connessione TCP viene interrotta dal server. Questo è il messaggio completo:
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)
C'è la soluzione . Tuttavia, dopo aver provato in questo modo, appare anche il problema. ora non so come fare. Qualcuno incontra questo problema?
Ecco il modo in cui ho scritto per seguire la soluzione:
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; }
. Si esegue ilif()
blocco se è non èPROTOCOL_CONNECTION_LOST
, eppure il messaggio dice che è che l'errore ... probabilmente molto confuso.