> I am not sure if journalling is enabled for my Mongo server. How do I go
> about doing that? I haven't been able to locate a command which details
> settings of a running server instance.
Hi Mark,
If you run db.serverStatus() from the mongo shell you should see a
'dur' section if journaling is enabled:
http://www.mongodb.org/display/DOCS/serverStatus+Command
Journaling should be enabled by default for 64-bit platforms as of
MongoDB 1.9.2 (or 2.0.0 stable):
http://www.mongodb.org/display/DOCS/Journaling
> If it isn't enabled can I enable it through a command without having to take the server down?
No, you need to restart mongod to change the journal setting.
Cheers,
Stephen