skip to Main Content

MongoDB 5.0.15/4.4.19 start issue after upgrade – CentOS

Do anybody manage to start existed relicaset after MongoDB minor version upgrade from official MongoDB stable repo? On previous versions 5.0.14/4.4.18 everything works perfect. {"t":{"$date":"2023-02-24T12:22:59.994+01:00"},"s":"I", "c":"-", "id":4333218, "ctx":"LogicalSessionCacheReap","msg":"Rescheduling the next replica set monitoring request","attr":{"replicaSet":"MainRepSet","host":"10.1.0.4:27017","delayMillis":0}} {"t":{"$date":"2023-02-24T12:22:59.996+01:00"},"s":"I", "c":"REPL", "id":21783, "ctx":"BackgroundSync","msg":"Waiting for pings…

VIEW QUESTION

Can't connect to MongoDB Replica Set in Docker

I am attempting to run a MongoDB cluster locally to test transactions. I've leveraged the Bitnami docker-compose file version: '2' services: mongodb-primary: image: 'bitnami/mongodb:latest' environment: - MONGODB_ADVERTISED_HOSTNAME=mongodb-primary - MONGODB_REPLICA_SET_MODE=primary - MONGODB_ROOT_PASSWORD=password123 - MONGODB_REPLICA_SET_KEY=replicasetkey123 ports: - 27017:27017 volumes: - 'mongodb_master_data:/bitnami' mongodb-secondary:…

VIEW QUESTION
Back To Top
Search