我尝试配置与mongobd的连接(使用副本集并启用安全性x.509)进行环回。 Loopback具有以下连接选项:
{
"db": {
"host": "",
"port": 27017,
"url": ""
"database": "",
"username": "",
"password": "",
"name": "db",
"connector": "mongodb"
}
}
我知道我需要填写“url”字段,但我还没有想法如何添加有关证书的信息。
我的网址不起作用:"mongodb://example1.host.com:11111,example2.host.com:11111,example2.host.com:11111/some_db?replicaSet=replica_set_0&readPreference=primary&authSource=$external&ssl=true&authMechanism=MONGODB-X509&clientCertPath=/usr/...../user.pem&rootCAPath=/usr/.../mongodb-CA-cert.crt"
请提供真正有效的配置。