Azure Stack Hub Multi Stamp Management
Cloud Assert HomeDocs Home
2201.1
2201.1
  • Introduction
  • Release Notes
  • Key Concepts
    • ADMIN
      • Manage Stamps
      • Updates
      • Images and Marketplace
      • Usage and Billing
      • Capacity and Infrastructure Management
      • Alerts
      • Diagnostics
      • Tenant Services
      • Email Reports
      • Offline Marketplace Download
  • INSTALLATION
    • Prerequisites
      • PKI Certificate Requirements
      • AzureStack Certification Authority certificate
      • Create SQL Server VM and necessary databases in a tenant subscription
    • Deployment
      • Validating Prerequisites
      • Install VConnect RP
      • License Activation
        • Offline Activation
      • Update Billing Resource Provider Details
      • Remove VConnect RP
      • Version Update
    • Configuration
      • Configure SMTP Settings
      • Configure Automated Emails
      • Configure Remote Machine for PowerShell Access
      • Configure Offline Marketplace Download
      • Configure a new Azure Stack Hub Stamp
        • Configure an Azure AD Stamp
        • Configure an ADFS Stamp
        • Create Service Principal from Azure Portal
  • Others
    • Troubleshooting
      • Configure VConnect PowerShell Modules
      • Stamp Connectivity
      • Stamp Syncing
      • Enable MSM VConnect Scheduled Tasks
      • Add Billing API Port To VConnect RP Network Security Group
      • Add Transaction Log Shrink Job in SQL Server
      • Update Client Secret in AzureStack Hub Connection
Powered by GitBook
On this page
  • Install CloudAssert PowerShell modules
  • Add VConnect API Connection
  • Add SQL Database Connection

Was this helpful?

  1. Others
  2. Troubleshooting

Configure VConnect PowerShell Modules

Cloud Assert PowerShell modules can help with troubleshooting and automation

PreviousTroubleshootingNextStamp Connectivity

Last updated 3 years ago

Was this helpful?

Install CloudAssert PowerShell modules

  • Copy and Paste the following command to install this package using PowerShellGet

Install-Module -Name CloudAssert.Common
Install-Module -Name CloudAssert.VConnect

Note:

Use -force to update the PowerShell Module with the latest version.

Add VConnect API Connection

Execute the following command to add VConnect RP API connection

Add-ApiConnection
Input
Description

API Connection Name

Name the API connection for the future reference. Ex: vconnect-api

API Endpoint Url

VConnect Service API Endpoint of the Resource Provider. Format: https://vconnect.<Azure Stack FAQN>:44305

API User

VConnect Service API authentication username. Ex: cloudassertadminuser

API Key

VConnect Service API athentication password

Run the following command to validate connectivity status

Get-VConnectAzsStampsHealth -endpointName [vconnect-api-connection-name] -printToConsole

Repalce the input for endpointName with the actual connection name added in the previous name.

Add SQL Database Connection

Execute the following command to add VConnect RP API connection

Add-SqlDbConnection
Input
Description

Connection Name

Name the SQL database connection for the future reference. Ex: vconnect-sql

DB Server Name

VConnect SQL Server name or IP Address. Format: 192.168.102.132

DB Server Name

VConnect Database SQL authentication username. Ex: cadbadmin

Password

VConnect Database SQL athentication password

DB Name (Optional)

VConnect Database name. Ex. CloudAssert.VConnect

More Info