Maurizio Turatti

Results 17 comments of Maurizio Turatti

in your `docker-compose.yml` your`MONGO_URI` has a starting `:` that you should remove ``` MONGO_URI: :mongodb://rest:123456@mongodb:27017/sdk?authSource=sdk ``` It should be: ``` MONGO_URI: mongodb://rest:123456@mongodb:27017/sdk?authSource=sdk ```

Your logs indicate the issue: `Unable to check if MongoDB is configured as replica set. The MongoDB user cannot execute replSetGetStatus() command. Tip: add to the MongoDB user the built-in...

@crawfordma that should be a problem with the docker network configuration, AFAIK the bind_ip should be a static IP address configured in the network section of your docker-compose.yml. For example,...

@ujibang is this in the 7.x release yet?

Image 22.0.2-graalce is now available. `docker pull softinstigate/graalvm-maven:22.0.2-graalce`

There are few things I am sure of in life, one of them is that RESTHeart fully supports the `mongodb+srv` connection string, as most of our projects are running with...

The error message you're encountering, `not authorized on catalyst to execute command`, indicates that the user you are using to connect to the MongoDB Atlas cluster does not have the...

Closing this. Please re-open when you'll have additional information.

At first, we should look at RESTHeart's logs, as here we can only see the ECS lifecycle events, which provide little information. For example, have you set up the ECS...

Ok, I missed the part when you wrote no errors in logs, but do you know if RESTHeart receives big payloads? It could be that some requests are creating CPU...