查找云 ID

本主题介绍如何使用管理员门户或特权终结点 (PEP) 获取云 ID。 云 ID 是用于跟踪从特定缩放单元上传的支持数据的唯一 ID。 当上传诊断日志进行支持分析时,可以通过云 ID 将这些日志与该缩放单元相关联。

使用管理员门户

  1. 打开管理员门户。

  2. 选择“区域管理”。

    Screenshot of the Dashboard

  3. 选择“属性”并复制“缩放单元云 ID”。

    Screenshot of Region properties with Stamp Cloud ID

使用特权终结点

  1. 打开权限提升的 PowerShell 会话,运行以下脚本。 根据环境需要,替换 PEP VM 的 IP 地址和云管理员凭据。

    $ipAddress = "<IP ADDRESS OF THE PEP VM>" # You can also use the machine name instead of IP here.
    
    $password = ConvertTo-SecureString "<CLOUD ADMIN PASSWORD>" -AsPlainText -Force
    $cred = New-Object -TypeName System.Management.Automation.PSCredential ("<DOMAIN NAME>\CloudAdmin", $password)
    $session = New-PSSession -ComputerName $ipAddress -ConfigurationName PrivilegedEndpoint -Credential $cred -SessionOption (New-PSSessionOption -Culture en-US -UICulture en-US)
    
    $stampInfo = Invoke-Command -Session $session { Get-AzureStackStampInformation }
    if ($session) {
        Remove-PSSession -Session $session
    }
    
    $stampInfo.CloudID
    

后续步骤