본문 바로가기
CLOUD/AZURE

Azure PowerShell 모듈 설치 방법 및 로그인

by Rainbound-IT 2024. 12. 7.
반응형

Azure PowerShell 모듈 설치 방법

  1. PowerShellGet 모듈 확인: 최신 버전의 PowerShellGet이 필요합니다. 확인하려면 다음 명령어를 실행합니다:
  2. powershell
    코드 복사
    Get-Module -Name PowerShellGet -ListAvailable | Select-Object Name, Version
  3. Azure PowerShell 모듈 설치:
    • -AllowClobber: 기존 모듈이 있어도 덮어씁니다.
    • -Scope CurrentUser: 현재 사용자에만 설치합니다.
  4. powershell
    코드 복사
    Install-Module -Name Az -AllowClobber -Scope CurrentUser
  5. Azure PowerShell 모듈 가져오기: 설치 후 모듈을 로드하려면 다음을 실행합니다:
  6. powershell
    코드 복사
    Import-Module -Name Az
  7. Azure 로그인: Azure 계정에 로그인하려면:
  8. powershell
    코드 복사
    Connect-AzAccount

확인 및 업데이트

  • 설치된 Azure PowerShell 모듈 버전을 확인하려면:
  • powershell
    코드 복사
    Get-Module -Name Az -ListAvailable | Select-Object Name, Version
  • 모듈을 업데이트하려면:
  • powershell
    코드 복사
    Update-Module -Name Az

추가 정보

Azure PowerShell 모듈은 PowerShell 5.1 이상에서 동작하며, Windows, macOS, Linux에서 모두 사용할 수 있습니다. Windows 10의 경우 PowerShell 5.1이 기본 제공되므로 모듈만 설치하면 됩니다.

자세한 내용은 Microsoft 공식 문서를 참고하세요.

 

로그인

# Azure 로그인
Connect-AzAccount

# Azure VM 상태 확인
Get-AzVM -ResourceGroupName "ResourceGroupName"
반응형

'CLOUD > AZURE' 카테고리의 다른 글

Azure 가상머신의 유형  (0) 2024.12.09
Azure Load Balancer  (0) 2021.07.28
azure ssh 접속 permission denied(publickey) 에러(Mac OS)  (0) 2021.07.27
Wordpress: 이중화  (0) 2021.07.26
Wordpress: 보안  (0) 2021.07.26

댓글