Azure CLI 시도
4836 단어 Azure
1. Azure CLI란
공식 참조
Azure 명령줄 인터페이스(Azure CLI)를 쉽게 설치하면 명령줄 케이스의 소스 오픈 명령을 사용하여 Microsoft Azure의 리소스를 만들고 관리할 수 있습니다.몇 가지 방법이 있다.제공된 모든 설치 패키지를 사용하여 운영 체제에 Azure CLI 또는 Node를 설치합니다.js와 npm를 사용하여 CLI를 설치하거나 Azure CLI를 Docker 호스트의 컨테이너로 설치합니다.추가 옵션 및 배경 정보는 GitHub 프로젝트 저장소를 참조하십시오.
2. 설정
세 가지 모드가 있어요.
2-1. 사전 준비
node.js와 npm를 넣으세요.
2-2. Azure CLI 설치
설치가 간단합니다(준비된 Docker image를 사용하면 더 빠를 수 있습니다.)
$ sudo npm install azure-cli -g
확인해 봐.$ azure -v
0.9.19
3. Azure CLI 사용 시도
브라우저를 사용하려면 주의하십시오. (명령줄만 사용해야 하나요?)
3-1. Azure 로그인
$ azure login
info: Executing command login
/info: To sign in, use a web browser to open the page https://aka.ms/devicelogin. Enter the code XXXXXXXXX to authenticate.
/
콘솔이 여기서 중지되므로 클라이언트 브라우저에서 열림https://aka.ms/devicelogin콘솔에 "Enter the code XXXXXX"코드 입력
icrosoft 계정으로 로그인
완료 후 브라우저 닫기
그러면 방금 중지된 콘솔이 시작되고 로그인한 Microsoft Account와 연결된 Subscription이 표시됩니다.
$ azure login
info: Executing command login
/info: To sign in, use a web browser to open the page https://aka.ms/devicelogin. Enter the code G7ZZNGDD9 to authenticate.
/
info: Added subscription aaaaaaaaaa
info: Added subscription bbbbbbbbbb
info: Added subscription cccccccccc
info: Added subscription dddddddddd
info: Setting subscription "aaaaaaaaaa" as default
+
info: login command OK
3-2. 계정 목록 확인
$ azure account list
info: Executing command account list
data: Name Id Current State
data: ------------------------- ------------------------------------ ------- -------
data: aaaaaaaaaa xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxa true Enabled
data: bbbbbbbbbb xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb false Enabled
data: cccccccccc xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxc false Enabled
data: dddddddddd xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxd false Enabled
info: account list command OK
3-3. 현재 계정 세트
Name 및 ID 모두 설정 가능
$ azure account set xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb
3-4. 가상 일치 정보 가져오기
V1의 정보 획득, 표시 예는 잊어버려서 사랑을 끊는다
$ azure config mode asm
asm
$ azure vm list
V2의 정보 획득, 표시 예는 잊어버려서 사랑을 끊는다$ azure config mode arm
asm
$ azure vm list
이것 괜찮아요?4. 참조
Reference
이 문제에 관하여(Azure CLI 시도), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/miyamiya/items/6c1baf00b1c02cc70fa0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)