How to Connect to Amazon Linux Instance from Windows Client Operating System using PUTTY? Last Updated : 28 Mar, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we will learn how to connect the Amazon Linux instances from Windows client operating system. For this we will be performing the following operations: Create a Linux instance in Amazon AWS.Using putty application connect to the Linux instance from the windows client operating system.Create a Linux instance in Amazon AWS: Follow the below steps to create a Linux instance in Amazon AWS: Click on Launch instances.Select the Linux instance.Select the type of instance.Click on launch and review.Click on launch.Create a new key pair and download the key pair and click on launch instance.Click on view instances and you will see that the instance is in a running state.By selecting instance click on the connect option then we will see the following information copy the address as shown in image.Connect to the Linux instance from the Windows client operating system using Putty: Follow the below steps to connect to the Linux instance from the Windows client operating system using putty: Install and open puttygen application and click on the load.Browse and select the keypair file i.e. .pem file and click on the save private key and a .ppk file will be saved.Open putty application and paste the host address copied from the connect to instance tab, which we have previously copied.Now click on SSH and click on auth tab and browse for the .ppk file which we have saved earlier and then click on open.You will be prompted to click on accept, click accept.Now the putty terminal will be open where we can access the EC2 install that is running on AWS servers.The sudo su command can be used to get root-level permissions. Comment More infoAdvertise with us Next Article How to Set Up Apache Web Server in AWS EC2 Linux (Ubuntu) Instance? P pulamolusaimohan Follow Improve Article Tags : Cloud Computing Cloud-Computing AWS Similar Reads How To Read File From Amazon S3 Bucket Using Node.Js ? The AWS Simple Storage Service (S3) is a cloud service provided by Amazon Web Services (AWS) to store your data securely. There are different approaches to storing and retrieving data from AWS S3; one of them is by using aws-sdk provided by Amazon Web Services. In this article, we will provide you w 5 min read Connecting an AWS EC2 Instance of a Private Subnet using Bastion Host In this article, we will see how we can connect an instance present in a private subnet with the help of an instance present in a public subnet. Let us first have look over the following mentioned Key terminologies where we will first try to understand few things (like EC2 instance and other things) 8 min read Connect MongoDB (AWS) from Local Machine using WinSCP and MongoDB Compass Pre-requisite: AWS and MongoDB In this article, we are going to connect to the Mongo database of the AWS Ubuntu Server instance using WinSCP and learn how to get connected to the server from your local machine using MongoDB Compass. If you haven't installed a MongoDB server in your AWS EC2 instance 4 min read How to Set Up Apache Web Server in AWS EC2 Linux (Ubuntu) Instance? In this article, we will look into the process of setting up Apache Web Server in AWS EC2 Linux Instance.This tutorial has been done on a system running Windows 10 Home (Version 20H2).Implementation:The steps taken to complete this tutorial are being stated below:Step 1: Go to portal.aws.amazon.com 4 min read How To Create EC2 Instances Using SDK For JAVA ? The AWS SDK for Java provides various functionalities to use AWS services using APIs. It provides support for building Java applications easily with the help of the SDK. Using the SDK makes it easier to procure AWS services directly from Java code. Creating and provisioning EC2 instances from Java i 5 min read How to Install Docker on Amazon Linux Docker is a tool which helps to automate the deployment of applications in containers to make sure that particular applications can work efficiently in different environments without any errors.It helps developers to build, ship, and run application faster and more reliable way. In this article, we 3 min read Like