Azure Stack Hub 유효성 검사 보고서

Azure Stack Hub 준비 검사 도구를 사용하여 Azure Stack Hub 환경의 배포 및 서비스를 지원하는 유효성 검사를 실행합니다. 도구는 .json 보고서 파일에 결과를 씁니다. 보고서에는 Azure Stack Hub 배포를 위한 필수 구성 요소 상태에 대한 상세하고 요약된 데이터가 표시됩니다. 보고서에는 기존 Azure Stack Hub 배포에 대한 비밀 회전에 대한 정보도 표시됩니다.

보고서를 찾을 수 있는 위치

도구가 실행되면 결과를 AzsReadinessCheckerReport.json에 기록합니다. 또한 이 도구는 AzsReadinessChecker.log라는 로그를 만듭니다. 이러한 파일의 위치는 PowerShell의 유효성 검사 결과와 함께 표시됩니다.

Azure Stack Hub 준비 검사에 대한 실행 유효성 검사 결과

두 파일 모두 동일한 컴퓨터에서 실행할 때 후속 유효성 검사 결과를 유지합니다. 예를 들어 도구를 실행하여 인증서의 유효성을 검사하고, 다시 실행하여 Azure ID의 유효성을 검사한 다음, 세 번째로 실행하여 등록의 유효성을 검사할 수 있습니다. 세 가지 유효성 검사의 결과는 결과 .json 보고서에서 사용할 수 있습니다.

기본적으로 두 파일은 모두 C:\Users\username\AppData\Local\Temp\AzsReadinessChecker\AzsReadinessCheckerReport.json에 기록됩니다.

  • -OutputPath <path> 명령줄 끝에 있는 매개 변수를 사용하여 다른 보고서 위치를 지정합니다.
  • -CleanReport 명령줄 끝에 있는 매개 변수를 사용하여 AzsReadinessCheckerReport.json에서 도구의 이전 실행에 대한 정보를 지웁니다.

보고서 보기

PowerShell에서 보고서를 보려면 보고서의 경로를 에 대한 -ReportPath값으로 입력합니다. 이 명령은 보고서의 내용을 표시하고 아직 결과가 없는 유효성 검사를 식별합니다.

예를 들어 보고서가 있는 위치에 열려 있는 PowerShell 프롬프트에서 보고서를 보려면 다음 명령을 실행합니다.

Read-AzsReadinessReport -ReportPath .\AzsReadinessReport.json

다음 예제와 유사하게 출력됩니다.

Reading All Validation(s) from Report C:\Contoso-AzsReadinessCheckerReport.json

############### Certificate Validation Summary ###############

Certificate Validation results not available.

############### Registration Validation Summary ###############

Azure Registration Validation results not available.

############### Azure Identity Results ###############

Test                          : ServiceAdministrator
Result                        : OK
AAD Service Admin             : admin@contoso.onmicrosoft.com
Azure Environment             : AzureCloud
Azure Active Directory Tenant : contoso.onmicrosoft.com
Error Details                 : 

############### Azure Identity Validation Summary ###############

Azure Identity Validation found no errors or warnings.

############### Azure Stack Hub Graph Validation Summary ###############

Azure Stack Hub Graph Validation results not available.

############### Azure Stack Hub ADFS Validation Summary ###############

Azure Stack Hub ADFS Validation results not available.

############### AzsReadiness Job Summary ###############

Index             : 0
Operations        : 
StartTime         : 2018/10/22 14:24:16
EndTime           : 2018/10/22 14:24:19
Duration          : 3
PSBoundParameters :

보고서 요약 보기

보고서의 요약을 보려면 PowerShell 명령의 끝에 매개 변수를 추가할 -summary 수 있습니다. 예:

Read-AzsReadinessReport -ReportPath .\Contoso-AzsReadinessReport.json -summary

요약은 결과가 없는 유효성 검사를 표시하고 완료된 유효성 검사에 대한 통과 또는 실패를 나타냅니다. 다음 예제와 유사하게 출력됩니다.

Reading All Validation(s) from Report C:\Contoso-AzsReadinessCheckerReport.json

############### Certificate Validation Summary ###############

Certificate Validation found no errors or warnings.

############### Registration Validation Summary ###############

Registration Validation found no errors or warnings.

############### Azure Identity Validation Summary ###############

Azure Identity Validation found no errors or warnings.

############### Azure Stack Hub Graph Validation Summary ###############

Azure Stack Hub Graph Validation results not available.

############### Azure Stack Hub ADFS Validation Summary ###############

Azure Stack Hub ADFS Validation results not available.

필터링된 보고서 보기

단일 형식의 유효성 검사에서 필터링된 보고서를 보려면 다음 값 중 하나와 함께 매개 변수를 사용합니다 -ReportSections .

  • 인증서
  • AzureRegistration
  • AzureIdentity
  • 그래프
  • ADFS
  • 작업
  • 모두

예를 들어 인증서에 대한 보고서 요약만 보려면 다음 PowerShell 명령줄을 사용합니다.

Read-AzsReadinessReport -ReportPath .\Contoso-AzsReadinessReport.json -ReportSections Certificate - Summary