I'm trying new GUI of MongoDB called Compass.
However, my MongoDB server is on the Azure virtual machine which has private IP only.
All Azure servers in our virtual subnet are accessible via one server called monitoring Server which has public IP and one haproxy is installed on it and all requests are directed to concern servers accordingly.
So how do I access MongoDB from my desktop(centos) using Compass?
I have made following changes on haproxy and still not able to access mongodb using Compass.
listen cc-mongo-1 <public ip of monitoring server>:27017
mode tcp
balance roundrobin
server cc-mongo-1 <private ip of mongodb>:27017
Or can we do like I installed it on server directly and then try to open GUI from local machine?