Since Tencent Cloud does not support external client tools to access the mongodb database it must be managed on their own cvm-linux. Are there any suitable client tools?
Using the mongo tool, the mongo program is a command line interactive client. You can directly use host to specify the host where the mongodb database you want to access is located, and use port to specify the open port of the host where the mongodb database is located. As long as the server where the mongo tool is located and the server where the mongodb database is located are connected to each other. As shown in the following command.
1. Common practice: Most cloud vendors support opening service network ports. For example, you can set network rules to open MongoDB’s 27017 port;
2. If only SSH port 22 is supported, this is rare; however, SSH Tunnel can be used for port forwarding.
For reference.
Love MongoDB! Have Fun!
Using the mongo tool, the mongo program is a command line interactive client. You can directly use host to specify the host where the mongodb database you want to access is located, and use port to specify the open port of the host where the mongodb database is located. As long as the server where the mongo tool is located and the server where the mongodb database is located are connected to each other. As shown in the following command.
I have been using robomongo and ubuntu14.04 locally. I don’t know if it can be used in your environment