Why is PyMongo 3 giving ServerSelectionTimeoutError?

时间秒杀一切 提交于 2019-11-27 11:54:59

We're investigating this problem, tracked in PYTHON-961. You may be able to work around the issue by passing connect=False when creating instances of MongoClient. That defers background connection until the first database operation is attempted, avoiding what I suspect is a race condition between spin up of MongoClient's monitor thread and multiprocess forking.

I fixed it for myself by downgrading from pymongo 3.0 to 2.8. No idea what's going on.

   flask/bin/pip uninstall pymongo
   flask/bin/pip install pymongo==2.8

I had the same problem with Pymongo 3.5 Turns out replacing localhost with 127.0.0.1 or corresponding ip address of your mongodb instance solves the problem.

I am not sure if you are using the MongoDB paired with AWS Cloud service. But if you are, I found that you have to specify which IP Address you want MongoDB to have access to.

So what you need to do is add the IP Address of your host server to allow entry.

In MongoAtlas, this can be done at this page

I know there was already a solution to the same issue, but I didn't find a solution that helped my situation, so wanted to post this, so others could benefit if they ever face the same problem that I do.

I've come accross the same problem and finally I found that the client IP is blocked by the firewall of the mongo server.

I encountered this too.

This could be due to pymongo3 isn't fork safe.

I fix this by adding --lazy-apps param to uwsgi, this can avoid the "fork safe" problem.

seeing uwsgi doc preforking-vs-lazy-apps-vs-lazy.

Notice, no sure for this two having positive connection.

  • First set up the MongoDB environment.

  • Run this on CMD - "C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe"

  • Open another CMD and run this - "C:\Program Files\MongoDB\Server\3.6\bin\mongo.exe"

And then you can use pymongo [anaconda prompt]

import pymongo
from pymongo import MongoClient

client = MongoClient()
db = client.test_db
collection = db['test_coll']

Refer - https://docs.mongodb.com/tutorials/install-mongodb-on-windows/

maybe you can try to add your server ip address into the mongod.conf file. if you use linux(ubuntu) os,you can try my solution:

  1. modify mongod.conf file:

    vi /etc/mongod.conf
    

    and you can add mongodb server ip address behind 127.0.0.1,and save:

    net:
      port:27017
      bindIp:127.0.0.1,mongodb server ip
    
  2. in the teminal:

    sudo service mongod restart

Now,you can try to connect mongodb by using pymongo MongoClient.

That error has occurred because there is no MongoDB server running in the background. To run the MongoDB server open cmd or anaconda prompt and type this:-

"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe"

then run

import pymongo
myclient = pymongo.MongoClient()    
mydb = myclient["mydatabase"]
myclient.list_database_names()

I'm using pymongo 3.2 and I run into the same error, however it was a missconfiguration in my case. After enabling authorization, I forgot to update the port in the url which ended up in a connection timout. Probably it is worth to mention that ?authSource might be required as it is typically different than the database storing the application data.

I solved this by installing dnspython (pip install dnspython). The issue is that: "The "dnspython" module must be installed to use mongodb+srv:// URIs"

thylong

This has been fixed in PyMongo with this pull_request.

If it can help, I solved by replace :

from flask.ext.mongoengine import MongoEngine

by :

from flask_mongoengine import MongoEngine
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!