Users can click the instance on the DDS console and obtain the URL to connect to the instance on the Basic Information page.
You can connect to the DDS instance via mongo + url:
mongo "<mongo url>"
It is recommended to enclose the mongo URL in double quotes ("") when connecting, otherwise the connection may fail due to special characters such as &.
If SSL is enabled, you need to download the SSL certificate and specify the corresponding parameters in the connection command, as follows:
mongo "<mongo url>" --ssl --sslCAFile=<certificate path> --sslAllowInvalidHostnames
After successful connection, you can operate the DDS through client commands.