oplog enable on standalone mongod not for replicaset

mongodb

Solution

I got a reply from the MongoDb Team, and it's working fine.

To enable `oplog` on a standalone server, start `mongo` with `master` options.

On command line start `mongod --master`.

For conf file append the following line:

master=true

More details here.

Problem

I am running mongod as standalone server .now i want to enable oplog for it ,i want to know whether it is possible or not ? I knew I can do this by creating single node ReplicaSet ,but I want to do this without replica set .

Original source