Champlain College Classes
HomeTech JournalsPersonal ProjectsSysadmin Wiki
SYS-360: Cloud Admin
SYS-360: Cloud Admin
  • SYS-360: Cloud Admin
  • Breakdown
    • Course Overview
  • Labs
    • Lab 1-1: Accessing the AWS Sandbox
    • Lab 1-2: AWS Learner-Lab Set-Up
    • Lab 2-1: Getting Started with Amazon EC2
    • Lab 2-2: EC2 Web Server
    • Lab 2-3: IAM Console
    • Lab 3-1: AWS with CLI
    • Lab 3-2: AWS EC2 with CLI - Lab 2
    • Lab 4-1: S3 Server-side Encryption
    • Lab 4-2: S3 SSE - Client Provided Keys
    • Lab 4-3: Working with EBS
    • Lab 5-1: LAMP Stack in AWS - Part 1
    • Lab 5-2: LAMP Stack in AWS Part 2
    • Lab 5-3: Setting up WordPress on LAMP
    • Assignment 5-1 Protecting Data in Your Application
Powered by GitBook
On this page
  • Submit Screenshot: Use the describe-instances command to just output the instance-ids of running instances
  • Submit Screenshot: Use the describe-instances command to just output the instance-ids and public IP address of running instances
  • Submit Screenshot: Use the describe-instances command to just output the instance-ids and public IP address of only Windows
  • Connect Windows Instance (RDP)
  1. Labs

Lab 3-2: AWS EC2 with CLI - Lab 2

PreviousLab 3-1: AWS with CLINextLab 4-1: S3 Server-side Encryption

Last updated 1 year ago

Submit Screenshot: Use the describe-instances command to just output the instance-ids of running instances

aws ec2 describe-instances --filters "Name=instance-state-name,Values=running" --query 'Reservations[*].Instances[*].{InstanceId:InstanceId}'

Submit Screenshot: Use the describe-instances command to just output the instance-ids and public IP address of running instances

aws ec2 describe-instances --filters "Name=instance-state-name,Values=running" --query 'Reservations[*].Instances[*].{InstanceId:InstanceId, IP:PublicIpAddress}'

Submit Screenshot: Use the describe-instances command to just output the instance-ids and public IP address of only Windows

aws ec2 describe-instances --filters "Name=platform,Values=windows" --query 'Reservations[*].Instances[*].{InstanceId:InstanceId, IP:PublicIpAddress, OS:PlatformDetails}'

Connect Windows Instance (RDP)

Get the password of the windows instance

aws ec2 get-password-data --instance-id i-0047b8aa669bc50ff --priv-launch-key .\Paul-360.pem

Username for windows rdp is administrator (Make sure to open rdp in security group)