Skip to content

Cleanup old locomotive sessions

Stéphane Bidoul edited this page Dec 7, 2023 · 1 revision

Shopinvader on locomotive accumulates sessions forever.

In monogdb there is a session collection that can grow very large.

You can clean it up with a query like this:

db.getCollection("sessions").deleteMany({"updated_at": {$lt: ISODate("2023-12-06")}})

Clone this wiki locally