[20:31:34] <Exterminador> hello folks. I don't know if anyone here is able to answer my question. I have a Rocket.chat instance (Slack/Discord alike) and it uses mongodb as database.
[20:32:11] <Exterminador> on their Rocket.chat systemd example, they have a line like this one: Environment=MONGO_URL=mongodb://localhost:27017/rocketchat?replicaSet=rs01 MONGO_OPLOG_URL=mongodb://localhost:27017/local?replicaSet=rs01 ROOT_URL=http://localhost:3000/ PORT=3000
[20:33:32] <Exterminador> I was wondering that if I spin up another Rocket.chat instance and change that line to `Environment=MONGO_URL=mongodb://localhost:27017/rocketchat2?replicaSet=rs01 MONGO_OPLOG_URL=mongodb://localhost:27017/local?replicaSet=rs01 ROOT_URL=http://localhost:3002/ PORT=3002` would be any kind of conflicts
[20:35:07] <Exterminador> my biggest concern here is the part `MONGO_OPLOG_URL=mongodb://localhost:27017/local?replicaSet=rs01` which would be "shared" by both instances
[20:35:37] <Exterminador> or is there a way to create more "replicas" in one mongodb instance?
[20:36:04] <Exterminador> if anyone know the answer, I'd be very grateful for some input. TIA