What should I do in case of disconnection from TencentDB for MongoDB?
What should I do if the message "Remote server has closed the connection" is displayed in TencentDB for MongoDB?
WiredTiger 3.2 has the problem of table lock. Is TencentDB for MongoDB affected by the same issue?
It depends on the specific situation. For example, a global lock is required to create indexes by default, and a lock is also needed when you execute the fsynclock
command.
Lock is a feature of databases, and is used to deal with the problems of concurrent access. Generally, a lock is required, as long as it does not affect the operation of your business.
Which version of the driver should be used in MongoDB?
We recommend that you use the latest version, for example, mongo-1.6 or later for PHP.
Which programming languages can be used to connect to MongoDB?
Which programming language clients are supported by TencentDB for MongoDB?
TencentDB for MongoDB provides the same compatibility as MongoDB. TencentDB for MongoDB supports any client that is supported by the official MongoDB. For example: C, C++, C#, Java, Node.js, Python, PHP, and Perl. For more information, see Start Developing with MongoDB. How do I connect to TencentDB for MongoDB in shell?
What URIs in service applications can be used to connect to MongoDB?
What should I do if I cannot connect to TencentDB for MongoDB using meteor and other types of frameworks and class libraries?
This is usually caused by incorrect connection method or URI. Check and verify the cause first.
How do I set the maximum number of connections to MongoDB in PHP?
MongoDB driver can control the number of connections by configuring the maxPoolSize
parameter in the URL connection.
In the MongoDB driver, you can set the connection count through the Mongo::setPoolSize()
method. What is the limit on the number of connections to MongoDB?
How do I reconnect to MongoDB manually?
Instead of simply allowing you to access mongod, TencentDB for MongoDB database service provides a load balancer IP for access. You can use this IP to connect to a range of route access layers similar to mongos.
The client driver establishes a persistent connection with an access server using a load balancer IP. If the connection is active for a long period of time, Tencent Cloud will not impose an intervention on this status. However, if the persistent connection is inactive for more than one day (this period will be adjusted with optimized version), the route access layer will terminate the connection.
Generally, the client driver will implement an automatic reconnection. However, this process cannot be implemented by some language drivers. For the language drivers that cannot implement automatic reconnection, if you attempt to communicate with the TencentDB for MongoDB service using a terminated connection, an error message such as "Remote server has closed the connection" will be returned. So manual reconnection is required. Here is a demo for PHP reconnection.
Reconnection based on PHP mongo driver How do I use mongoose to connect to TencentDB for MongoDB?
Here are the parameters for mongoose to connect to TencentDB for MongoDB:
var dbUri = " mongodb:// " + user + " : " +password + " @ " +host + ":" +port + " / " + dbName;
var opts = {
auth: {
authMechanism : ' MONDODB-CR'
}
};
var connection = mongodb.createConnection(dbUri, opts);
Can I connect to MongoDB from a public network?
TencentDB for MongoDB can only be connected over the private network. For more information, see Connecting to TencentDB for MongoDB Instance.
Connection through a public network is not supported. To connect to MongoDB locally, you can implement port forwarding using the server within the same private network under the same MongoDB account.
Was this page helpful?