CLI와 GetConsoleOutput 함께 사용 - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

CLI와 GetConsoleOutput 함께 사용

다음 코드 예제는 GetConsoleOutput의 사용 방법을 보여 줍니다.

CLI
AWS CLI

예제 1: 콘솔 출력을 가져오려면

다음 get-console-output 예제에서는 지정된 Linux 인스턴스에 대한 콘솔 출력을 가져옵니다.

aws ec2 get-console-output \ --instance-id i-1234567890abcdef0

출력:

{ "InstanceId": "i-1234567890abcdef0", "Timestamp": "2013-07-25T21:23:53.000Z", "Output": "..." }

자세한 내용은 Amazon EC2 사용 설명서인스턴스 콘솔 출력을 참조하세요.

예제 2: 최신 콘솔 출력을 가져오려면

다음 get-console-output 예제에서는 지정된 Linux 인스턴스에 대한 최신 콘솔 출력을 가져옵니다.

aws ec2 get-console-output \ --instance-id i-1234567890abcdef0 \ --latest \ --output text

출력:

i-1234567890abcdef0 [ 0.000000] Command line: root=LABEL=/ console=tty1 console=ttyS0 selinux=0 nvme_core.io_timeout=4294967295 [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' ... Cloud-init v. 0.7.6 finished at Wed, 09 May 2018 19:01:13 +0000. Datasource DataSourceEc2. Up 21.50 seconds Amazon Linux AMI release 2018.03 Kernel 4.14.26-46.32.amzn1.x

자세한 내용은 Amazon EC2 사용 설명서인스턴스 콘솔 출력을 참조하세요.

  • API 세부 정보는 AWS CLI 명령 참조GetConsoleOutput를 참조하세요.

PowerShell
for PowerShell 도구

예제 1:이 예제는 지정된 Linux 인스턴스에 대한 콘솔 출력을 가져옵니다. 콘솔 출력이 인코딩됩니다.

Get-EC2ConsoleOutput -InstanceId i-0e19abcd47c123456

출력:

InstanceId Output ---------- ------ i-0e194d3c47c123637 WyAgICAwLjAwMDAwMF0gQ29tbW...bGU9dHR5UzAgc2Vs

예제 2:이 예제는 인코딩된 콘솔 출력을 변수에 저장한 다음 디코딩합니다.

$Output_encoded = (Get-EC2ConsoleOutput -InstanceId i-0e19abcd47c123456).Output [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($Output_encoded))
  • API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조GetConsoleOutput를 참조하세요.