MongoDB分片集群实例分别提供Mongos、Shard、ConfigServer节点单独的连接地址,以及适用于应用程序连接的高可用ConnectionStringURI地址。本文介绍分片集群实例连接地址的获取方式和连接说明。
获取数据库连接地址
连接地址说明
项目 | 说明 |
---|---|
地址类型 |
|
节点连接地址 | Mongos、Shard、ConfigServer节点分别提供Primary、Secondary节点的连接地址,其中Shard节点还提供只读节点(ReadOnly)连接地址。上述连接地址的格式如下。 <host>:<port>
示例:
s-bp1c010266f6****.mongodb.rds.aliyuncs.com:3717
说明
|
ConnectionstringURI连接地址 | ConnectionstringURI连接地址格式如下。 mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
示例:
mongodb://root:****@s-bp1c010266f6****.mongodb.rds.aliyuncs.com:3717,s-bp1773180e38****.mongodb.rds.aliyuncs.com:3717,s-bp10e3b0d02f****.mongodb.rds.aliyuncs.com:3717/admin
说明
|