skip to Main Content

Error E11000 in creating MongoDB unique index

I have a MongoDB(v 5.0.6) collection with the following data: [{ "_id": { "$oid": "63bc06e6aa310000d6004a68" }, "key": "title", "label": "title", "type": "text", "searchable": 0 },{ "_id": { "$oid": "63bc06e6aa310000d6004a69" }, "key": "attribution", "label": "attribution", "type": "text", "searchable": 0 },{ "_id":…

VIEW QUESTION

How to connect to mongodb replicaset (k8s) using compass

I installed mongodb as a replicaset with 3 replicas on my k8s cluster using the bitnami helm chart. So I get these pods: mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017 mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017 mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017 Now I would like to get access using mongodb compass. I set a port…

VIEW QUESTION
Back To Top
Search