I'am starting with Mongodb atlas and i trying to connect my laravel/jenssegers project to the cluster i config my conf/database
'mongodb' => [
'driver' => 'mongodb',
'host' => env('DB_HOST'),
'port' => env('DB_PORT', '27017'),
'database' => env('DB_DATABASE'),
'username' => env('DB_USERNAME'),
'password' => env('DB_PASSWORD'),
'options' => [
'database' => 'admin' // sets the authentication database required by mongo 3
]
],
And my .env file
DB_HOST="xxxx-shard-00-00-uggj0.mongodb.net"
DB_PORT=27017
DB_DATABASE=xxx
DB_USERNAME=xxx
DB_PASSWORD=xxx
And i get this error
No suitable servers found (
serverSelectionTryOnce
set): [connection closed calling ismaster on 'xxxx-shard-00-00-uggj0.mongodb.net:27017'
I cold conect with Mongodb Compass without problem.
My Atlas Ip Whitelist is open (0.0.0.0/0).
Am I missing something?