Code Monkey home page Code Monkey logo

Comments (4)

oraliuhui avatar oraliuhui commented on June 12, 2024

The same error when added mechanism, the parameters is correct, I used them in Robot3T:

let mut client_options =
            ClientOptions::parse(format!("mongodb://{}:{}", prop.host, prop.port))
                .await
                .unwrap();
let credential: Credential = Credential::builder()
    .username(prop.username)
    .password(prop.password)
    .mechanism(Some(AuthMechanism::ScramSha1))
    .build();
client_options.credential = Some(credential);
let client = Client::with_options(client_options).unwrap();
for db_name in client.list_database_names(None, None).await.unwrap() {
      println!("{}", db_name);
}

from mongo-rust-driver.

patrickfreed avatar patrickfreed commented on June 12, 2024

So a server selection error often indicates that the driver couldn't connect to the deployment for one reason or another, and such an error shouldn't have anything to do with authentication. This could mean that it's not accessible (e.g. due to a firewall) or down. To help us debug this further, could you post the full error output that you see?

e.g. it should look something like this

Server selection timeout: No available servers. Topology: { Type: Unknown, Servers: [ { Address: localhost:27017, Type: Unknown, Error: Connection refused (os error 111) }, ] }

This example tells us that the server is refusing our connection because it's down.

Also, could you provide some details about your deployment. Is it a standalone/replicaset/sharded cluster? Is it on Atlas? Is it running on your local machine? Are you using TLS? What version of the server are you using? These details may further help us get to the bottom of this.

from mongo-rust-driver.

github-actions avatar github-actions commented on June 12, 2024

There has not been any recent activity on this ticket, so we are marking it as stale. If we do not hear anything further from you, this issue will be automatically closed in one week.

from mongo-rust-driver.

github-actions avatar github-actions commented on June 12, 2024

There has not been any recent activity on this ticket, so we are closing it. Thanks for reaching out and please feel free to file a new issue if you have further questions.

from mongo-rust-driver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.