Skip to main content

Viewing Store Information

You can view details about your stores using the Get-DkvStore command.

This helps you:

  • Check if a store is running
  • Inspect node configuration
  • Verify ports and instance details

Command: Get-DkvStore​

Retrieves information about one or more stores.

Syntax​

Get-DkvStore [<StoreName>]

Examples​

View All Stores​

Get-DkvStore

View Specific Store​

Get-DkvStore TestStore

What Information is Shown?​

The output typically includes:

  • Store name
  • Status (Running / Stopped)
  • Number of nodes
  • Node details (names, ports)
  • Client endpoints

Example Output (Conceptual)​

Store: TestStore
Status: Running

Nodes:
node1 β†’ ClustronPort: 7811, ClientPort: 7861
node2 β†’ ClustronPort: 7812, ClientPort: 7862

When to Use This Command​

Use Get-DkvStore to:

  • Confirm the store is running
  • Verify node count and configuration
  • Check assigned ports
  • Debug connectivity issues

Common Issues​

Store Not Found​

  • Ensure the store name is correct
  • Verify you are connected to the manager

Store is Stopped​

  • Use Start-DkvStore to start the store

What’s Next​

πŸ‘‰ Continue to Multi-Node Configuration to understand how to scale stores