Report this

What is the reason for this report?

"No suitable servers found" connecting to MongoDB using PHP

Posted on November 2, 2021
CloudStore Support

By CloudStore Support

CloudStore Support

Hi,

I’m trying to connect from my PHP application to MongoDB instance located in FRA1, but I get this errorr: No suitable servers found (serverSelectionTryOnce set): [connection error calling hello on ‘[app]-a000d008.mongo.ondigitalocean.com:27017’]

I’m using PHP 8 with ext v.1.10, MongoDB Server is the 4.4. The strange thing I see is that the DNS of my connection string (grab from my DO Panel) is [app]-f821f828.mongo.ondigitalocean.com but the one but the error talks about [app]-a000d008.mongo.ondigitalocean.com.

No problem if I try to connect to my instance using clients like MongoDBCompass or Robot3T.

What does that error means? Thaks in advance, CloudStore



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there,

Could you share your PHP connection string that you are using? Make sure to remove any sensitive information before posting it here.

Also I would recommend trying to add +srv to your connection string as follows:

$db = new MongoDB\Client('mongodb+srv://[myapp].mongo.ondigitalocean.com', array(
    'username' => 'doadmin',
    'password' => '[password]',
    'db'       => '[database]',
    'authSource' => 'admin',
    'replicaSet' => '[replica]',
    'tls' => 'true',
    'tlsCAFile' => '/usr/share/ca-certificates/app/ca-certificate.pem'
));

Best, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.