DevOps/Cloud By GK
  • DevOps/Cloud Introduction
  • 🚩AWS
    • Create AWS Account
    • Launch EC2 Instance
  • 🚩Linux
    • User Managment
      • Adding the User to Sudo group
      • visudo
    • Directory / File Management
      • Vi
      • Changing Permissions (chmod)
      • Filtering IO/File
    • Memory Management
    • Process Management
    • Network Management
    • Service Management
    • Environmental Variables
      • $PATH
    • Utilities
    • SHELL PROGRAMMING
      • Hello World
      • Variables
      • Command Line arguments
      • Conditional Statements
      • Array
      • Loops
      • Functions
      • AWK
      • sed
      • Example Useful Scripts
      • Basic -> Advanced
  • 🚩git
    • Introduction
    • Creating GitHub Account
    • Installation
      • Git Bash In Windows
      • Git In VS Code
      • Git In Eclipse
      • Git CLI in Linux
  • Creating Git Remote Repository
  • Git Commands L -> R
  • Git Commands L <- R
  • Git Branch Commands
  • Using SSH (Password Less)
  • 🚩maven
    • Introduction
    • Installation
    • POM.xml
    • Goals
  • 🚩SonarQube
    • Introduction
    • Sonar Cloud
    • Creating Project In SonarCloud
    • Installing Sonar-Scanner
    • Triggering Scan
  • 🚩Nexus
    • Introduction
    • Installation of Nexus
    • Creating Repository
    • Uploading Artifacts to Repository
  • 🚩Jenkins
    • Introduction
    • Installation of Jenkins
    • First Job In Jenkins
    • Git + Jenkins
      • WebHook
    • Maven + Jenkins
    • Sonar-Scanner + Jenkins
    • Nexus + Jenkins
Powered by GitBook
On this page
  1. AWS

Launch EC2 Instance

This Document will guide you to launch EC2 Instance in AWS

  1. Log into the AWS Management Console.

  2. In the "Services" menu, select "EC2" under the "Compute" category.

  3. Click the "Launch Instance" button.

  4. Choose an Amazon Machine Image (AMI) from the list. An AMI is a pre-configured virtual machine that you can use to create your instance. You can select a free-tier eligible image, or choose one that meets your needs.

  5. Choose an instance type. The instance type determines the computing resources allocated to your instance, such as CPU, memory, and network performance.

  6. Configure the instance details. This includes setting the number of instances you want to launch, the network settings, and any additional storage volumes you want to attach to the instance.

  7. Add any additional tags to help you identify the instance in the AWS Management Console.

  8. Configure the security group settings. A security group acts as a virtual firewall for your instance, controlling inbound and outbound traffic.

  9. Review your instance configuration and click the "Launch" button.

  10. Select an existing key pair or create a new key pair to securely log in to your instance.

  11. Once your instance is launched, you can connect to it using SSH or RDP.

Note: Depending on your specific use case, some steps may require additional configuration.

PreviousCreate AWS AccountNextUser Managment

Last updated 2 years ago

🚩