I’m not sure I understand the difference between connecting to one of the nodes in a replica set:
mongo --port 27003 -u m103-admin -p m103-pass
and connecting specifying the replica set name:
mongo --host “m103-example/m103.mongodb.university:27011” -u “m103-admin” -p “m103-pass” --authenticationDatabase “admin”
In both cases I connect to the host and port I specify - what does adding the name of the replica set to the connection string actually do?