I can connect to replica set using following command from mongo shell version 3.2.11. But the same does not works with mongo shell v3.4.1.
mongo --host \
"replicaSet1/10.10.10.15:27001,10.10.10.16:27002,10.10.10.17:27000" mydbname \
-u root -p root \
--authenticationDatabase admin
[main] Error: Failed to parse mongodb:// URL: mongodb://replicaSet1/10.10.10.15:27001,10.10.10.16:27002,10.10.10.17:27000/mydbname :
I have read here that replica set address format has not changed since v 3.4.1 release.
Why cant I connect to db ? What is the parse error, as per new format(if its there).