MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

mangusta emette l'errore Errore:connessione chiusa

Questo è un problema comune quando le connessioni in pool in applicazioni con esecuzione più lunga restituiscono connection closed .

La documentazione della mangusta consiglia di aggiungere keepAlive all'oggetto opzioni che passi in connect funzione.

Ecco un esempio (puoi rimuovere replset se non lo stai usando),

// include keep alive for closing connections,
// http://tldp.org/HOWTO/TCP-Keepalive-HOWTO/overview.html
var mongoOptions =
{
    db: {safe: true},
    server: {
        socketOptions: {
            keepAlive: 1
        }
    },
    replset: {
        rs_name: 'myReplSet',
        socketOptions: {
            keepAlive: 1
        }
    }
};

mongoose.connect( YOUR_URI, mongoOptions );

mongoose.connection.on('error', function(err) {
    console.log('Mongo Error:\n');
    console.log(err);
}).on('open', function() {
    console.log('Connection opened');
});