Skip to main content

View database cluster information

The cluster detail page is where you find the connection endpoint and credentials your application needs, alongside the cluster's current state and resource configuration.

Open the detail page​

Log in to the Console Portal, then navigate to Database Platform → All Database or Non-Relational Database. Select the Cluster ID and open the Overview tab.

Cluster Overview tab

What each section shows​

SectionInformation
Overview (header)Cluster ID, status, current vCPU–RAM–Storage, engine type, engine version, creation time
Basic InformationCluster name, database type, version, endpoint (domain/IP), port, network/subnet, architecture type
Service InformationEnabled state of the Backup and Monitoring services
Engine InformationDefault database name and the default account credentials (username and password)
Data Nodes ConfigurationStorage policy, node count, and current resource configuration per node
List InstancesEvery node in the cluster — name, role (Primary/Replica), resources, status, creation and last-update times

Basic Information and Engine Information together give you everything needed for a connection string: endpoint, port, database name, username, and password.

note

Architecture type on this page reads Single for a one-node cluster, while the provisioning wizard calls the same option Standalone. Two labels, one architecture.

The Overview tab is not read-only. The pencil icon next to Quantity in a node configuration section opens the scale-out control — see Scale out a database cluster.

Reading the instance list​

For a Replica Set, the Role column identifies which node is currently Primary. This changes on failover — it is a live view, not a fixed assignment. A Standalone cluster has one entry and no meaningful role.

The column prints True / False rather than Primary / Secondary. True is the Primary.

A Sharded Cluster detail page​

A Sharded Cluster is shown differently enough to be worth its own walkthrough.

Overview tab of a Sharded Cluster, showing the Mongos, Shard, and ConfigServer sections with their instance tables

What differs from the header down​

Standalone / Replica SetSharded Cluster
Type in the headerMongodbMongodb Sharding, with a Beta badge beside the cluster ID
Header fieldsIncludes High availabilityNo High availability field
TabsOverview, Backup, Resource, Maintenance, Notification, Monitoring, Action logsOverview, Backup, Resource, Notification, Action logs — no Maintenance and no Monitoring tab
Basic InformationHas Editions and Architecture type rowsNeither row; Type carries the distinction
Node configurationOne Data Nodes Configuration section with one instance listThree sections, each with its own instance table

The connection endpoint​

The Domain endpoint lists the mongos routers, and unlike a Replica Set it carries no ?replicaSet= parameter:

mongodb://10.0.0.11:27017,10.0.0.12:27017,10.0.0.13:27017/admin

That is the intended way in. Clients talk to mongos, never to a shard directly, so the shard topology stays invisible to your application.

The three configuration sections​

Each section repeats the same four fields — Storage policy, Quantity, Node configuration, and an instance table — for its own group:

SectionQuantity readsNode configurationInstance table
Mongos configuration3 nodesvCPU and RAM only, no storageMongos instances — every row shows Role True
Shard configuration2 shards x 3 nodesvCPU, RAM, and storage per nodeShard instances — has an extra Shard column
ConfigServer Configuration3 nodesvCPU, RAM, and storage per nodeConfigServer Instances

The Shard column is the one to read carefully. It groups the rows by shard (Shard 0, Shard 1, …), and within each shard exactly one row shows Role True — that shard's Primary. A 2-shard cluster therefore lists six rows and two True values, one per shard, because each shard elects its own Primary independently.

Warnings on this page​

The detail page surfaces conditions that need your action. The most common is a restart requirement after compute scale-down: reducing vCPU or RAM restarts the engine automatically, but some changes wait for a manual restart before taking effect.

note

Viewing the administrative password requires the FDE service-type permission. If credentials appear masked, your role does not grant it — see Configure IAM.

Next steps​