我使用以下代码与PyMongo连接到副本集(根据official documentation):
from pymongo import MongoClient
client = MongoClient(
['1.1.1.1:27017', '2.2.2.2:27017', '3.3.3.3:27017'],
username="user",
password="password",
)
我可以使用以下代码连接到SSL enabel单个MongoDB实例(根据official documentation):
from pymongo import MongoClient
client = MongoClient('example.com',
ssl=True,
ssl_certfile='/path/to/client.pem'
)
使用PyMongo连接到启用(CA)SSL的副本集的最简洁方法是什么?
Python版本:3.6, MongoDB版本:3.6, PyMongo版本:3.6.1