mongodb://localhost:27017
mongodb://root:123456@localhost:27017/testdb?authSource=admin
1、連線本地資料庫伺服器,埠是預設的。
mongodb://localhost
2、使用使用者名稱fred,密碼foobar登入localhost的admin資料庫。
mongodb://fred:foobar@localhost
3、使用使用者名稱fred,密碼foobar登入localhost的baz資料庫
mongodb://fred:foobar@localhost/baz
4、連線 replica pair, 伺服器1為example1.com伺服器2為example2
mongodb://example1.com:27017,example2.com:27017
5、連線 replica set 三臺伺服器 (埠 27017, 27018, 和27019)
mongodb://localhost,localhost:27018,localhost:27019
原文連結:https://blog.csdn.net/studyofnet/article/details/84545021