从本地连接到使用NLB的DocumentDB的程序

连接到通过NLB连接的Amazon DocumentDB时的程序备忘录。
原始参考文章在下方?

 

成果

直连连接=true

const { MongoClient } = require('mongodb');

const client = new MongoClient(
  'mongodb://<userName>:<PassWord>@<NLBのドメイン名>:27017',
  {
    tlsCAFile: '****.pem',
    tls: true,
    tlsAllowInvalidCertificates: true,
    tlsAllowInvalidHostnames: true,
    retryWrites: false,
+   directConnection: true,
  }
);

提示

 

若要使用SSH隧道連接MongoDB Compass,請將直接連接激活並關閉副本集連接。詳細信息請參閱MongoDB網站上的「啟用直接連接」。

只需要一种选择。

 

广告
将在 10 秒后关闭
bannerAds