Skip to content

Commit 5f954e1

Browse files
author
Bob Grabar
committed
DOCS-538 verify connectivity: minor edits
1 parent 0c5409b commit 5f954e1

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

source/administration/replica-sets.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,11 @@ Test the Connection Between Each Member
664664
There must be connectivity from every :term:`replica set` member to
665665
every other member in order for replication to work. Problems with
666666
network or firewall rules can prevent this connectivity and prevent
667-
replication from working. To test the connection from every member to
667+
replication from working. Network topologies and firewalls might allow a
668+
connection in one direction but not the other. Therefore you must make
669+
sure to verify that the connection works in both directions.
670+
671+
To test the connection from every member to
668672
every other member, in both directions, consider the following example:
669673

670674
.. example:: Given a replica set with three members running on three separate
@@ -679,19 +683,16 @@ every other member, in both directions, consider the following example:
679683

680684
.. code-block:: sh
681685

682-
mongo --host m2.example.net --port 27017"
686+
mongo --host m2.example.net --port 27017
683687

684-
mongo --host m3.example.net --port 27017"
688+
mongo --host m3.example.net --port 27017
685689

686690
#. Test the connection from ``m2.example.net`` to the other two
687691
hosts by running similar appropriate operations from ``m2.example.net``.
688692

689-
This means you have now tested the connection between
693+
You have now tested the connection between
690694
``m2.example.net`` and ``m1.example.net`` twice, but each time
691-
from a different direction. This is important to verifying
692-
connectivity. Network topologies and firewalls might allow a
693-
connection in one direction but not the other. Therefore you must
694-
make sure to verify that the connection works in both directions.
695+
from a different direction.
695696

696697
#. Test the connection from ``m3.example.net`` to the other two
697698
hosts by running the operations from ``m3.example.net``.

source/tutorial/deploy-replica-set.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ Deploy a Development or Testing Replica Set
4949

5050
The examples in this procedure create a new replica set named ``rs0``.
5151

52-
1. Before creating your replica set, verify there is full connectivity
53-
between all the hosts to be in the replica set, as described in
52+
1. Before creating your replica set, verify that every member can
53+
successfully connect to every other member. The connection between
54+
any two members must work in both directions. To test the connection
55+
from each member to every other member, see
5456
:ref:`replica-set-troubleshooting-check-connection`.
5557

5658
#. Start three instances of :program:`mongod` as members of a replica
@@ -190,8 +192,10 @@ deployment described above, with the following differences:
190192

191193
To deploy a production replica set:
192194

193-
1. Before creating your replica set, verify there is full connectivity
194-
between all the hosts to be in the replica set, as described in
195+
1. Before creating your replica set, verify that every member can
196+
successfully connect to every other member. The connection between
197+
any two members must work in both directions. To test the connection
198+
from each member to every other member, see
195199
:ref:`replica-set-troubleshooting-check-connection`.
196200

197201
#. On each system start the :program:`mongod` process by issuing a

0 commit comments

Comments
 (0)