Alguém tem algum link de guia de como fazer replicação no MongoDB pra windows? Já vi uns 5 guias, mas o pessoal só solta um monte de comandos, não dizem o que são as artes dos comandos, nem onde devem ser escritos , e todos os comandos que tento usar, só dão erro, erro e erro.Alguém tem um guia aí pra iniciante q pelo menos informe em q lugar a gente tem de digitar aqueles dez mil comandos?
--
You received this message because you are subscribed to the Google Groups "MongoDB Brasil" group.
To unsubscribe from this group and stop receiving emails from it, send an email to br-mongodb+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/br-mongodb/bc81bac3-2f9d-43ec-9e50-8d976c2c07dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
c:\Program Files\MongoDB\Server\4.0\bin> mongod --replSet myReplSet --logpath c:\temp\replSet_0\rs_0.log --dbpath c:\temp\replSet_0\ --port 27017 –smallfiles c:\Program Files\MongoDB\Server\4.0\bin> mongod --replSet myReplSet --logpath c:\temp\replSet_1\rs_0.log --dbpath c:\temp\replSet_0\ --port 27018 –smallfiles c:\Program Files\MongoDB\Server\4.0\bin> mongod --replSet myReplSet --logpath c:\temp\replSet_2\rs_0.log --dbpath c:\temp\replSet_0\ --port 27019 –smallfiles c:\Program Files\MongoDB\Server\4.0\bin>mongo --port 27017config = {_id: "myReplSet", members:[{_id:0, host:"localhost:27017"},{_id:1, host:"localhost:27018"},{_id:0, host:"localhost:27019"}]};
Ele retornou isso aqui (acredito q tenha ido tudo bem tmb):
{
"_id" : "myReplSet",
"members" : [
{
"_id" : 0,
"host" : "localhost:27017"
},
{
"_id" : 1,
"host" : "localhost:27018"
},
{
"_id" : 0,
"host" : "localhost:27019"
}
]
}
4) Inicializei, e foi onde apareceu o erro:
rs.initiate(config)--
You received this message because you are subscribed to the Google Groups "MongoDB Brasil" group.
To unsubscribe from this group and stop receiving emails from it, send an email to br-mongodb+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/br-mongodb/4468599e-ea43-41f5-b098-94411960ca68%40googlegroups.com.