sql >> Database teknologi >  >> NoSQL >> MongoDB

Hvordan forbinder du til et replikasæt fra en MongoDB-skal?

For at oprette forbindelse til et replikasæt Primary skal du bruge mongo-skallen --host mulighed:

mongo --host replicaSetName/host1[:porthost1],host2[:porthost1],host3[:porthost3],etc

For eksempel:

$ mongo --host rs1/john.local:27019,john.local:27018
MongoDB shell version: v3.4.9
connecting to: mongodb://john.local:27019,john.local:27018/?replicaSet=rs1
2017-10-12T14:13:03.094+0000 I NETWORK  [thread1] Starting new replica set monitor for rs1/john.local:27019,john.local:27018
2017-10-12T14:13:03.096+0000 I NETWORK  [thread1] Successfully connected to john.local:27019 (1 connections now open to john.local:27019 with a 5 second timeout)
2017-10-12T14:13:03.096+0000 I NETWORK  [thread1] Successfully connected to john.local:27018 (1 connections now open to john.local:27018 with a 5 second timeout)
rs1:PRIMARY> db
test
rs1:PRIMARY>

Bemærk: Fra version 3.4.2 til 3.4.10 var der en fejl (SERVER-28072), som forhindrede angivelse af db efter ved brug af --host eller --port.



  1. Azure Cache/DataCache stil regioner i Redis

  2. Deadlock ved hjælp af Aggregator + Redis

  3. MongoDB omvendt regex

  4. Bedste måde at udføre en fuldtekstsøgning i MongoDB og Mongoose