lorsque j'utilise le nœud mysql, une erreur apparaît entre 12h00 et 2h00 indiquant que la connexion TCP est arrêtée par le serveur. Voici le message complet:
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)
Voilà la solution . Cependant, après avoir essayé de cette manière, le problème apparaît également. maintenant je ne sais pas comment faire. Quelqu'un rencontre-t-il ce problème?
Voici comment j'ai écrit suivre la solution:
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();