尝试插入MongoDB,但遇到错误。
使用pymongo == 3.9.0
from pymongo import MongoClient
client = MongoClient("localhost:8080",username='admin',password='mypass',tz_aware=True,connect=False)
db = client['hello']
print(db.name) #Worksfine here
db.test.insert({
'email' : "hello",
'msg' : "Hello buddy"
})
错误: pymongo.errors.ServerSelectionTimeoutError:本地主机:8080:[Errno 111]连接被拒绝
我不知道怎么了。