If we are not getting connected to our instance, then there must be some below-mentioned issues:
- Username and password issue
- IGW Mapping
- Ports enable or disable on Security Group
- VNIC (Virtual Network Interface Card)
- OS Firewall
- RDP Service
Troubleshoot to get access when not able to get access of EC2 instance remotely.
Steps we need to follow:
- Create a VPC named 'webshack-vpc'
- Launch a Windows instance in the VPC, created by you
- Login to Web Server and close RDP connection
- Launch a temporary instance (in same AZ)
- Login to the temporary instance
- Detach root volume of Web Server
- Attach this root volume to the temporary instance
- Download EC2Rescue Software
- Detach secondary volume and attach it back to the web server
- Login to the original web server instance and verify its access using RDP
![]() |
Fig: Recover the Instance When RDP is Not Working |
Step 1: Create a VPC named 'webshack-vpc':
https://redhatpanacia.blogspot.com/2019/06/create-amazon-virtual-private-cloud.html
Step 2: Launch a Windows instance in the VPC, created by you:
AWS âž” Services âž” EC2 âž” Instances âž” Launch Instance âž” Select 'Free tier only' âž” Select 'Microsoft Windows Server 2008 R2 Base' AMI âž” Next âž” In Configure Instance Details: Select number of instances: '1'âž” Select Network: 'webshack-vpc' âž” Subnet: select public subnet âž” Next âž” Next âž” Click to add a Name tag âž” Name: webshack-web-server âž” Next âž” Review and Launch âž” Launch âž” Choose an existing key pair or create a new one âž” Launch Instances âž” Vie Instances.Decrypt password and save in a safe place.
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance 'webshack-web-server' âž” Actions âž” Get Windows Password âž” Browse âž” Provide Private Key âž” Decrypt Password âž” Copy password to notepad and save it to a safe place.
Step 3: Login to Web Server and close RDP connection:
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance âž” From Description copy Public IP âž” Go to Run âž” type 'mstsc' âž” paste Public IP âž” Connect âž” Username: Administrator âž” Password: <paste from notepad> âž” Connect.Now, we will disallow RDP connection for a practical purpose:
In this RDP connection âž” Right click on My Computer âž” Properties âž” Remote Settings âž” Click on 'Don't allow connections to this computer' âž” Apply.
Now we are not able to do any work on this instance and we need to close this RDP connection.
TROUBLESHOOTING:
Suppose, we are not aware of what the issue is, then we need to do some troubleshooting:[1] Try to do a ping to the Web Server:
Go to Run âž” type 'cmd' âž” type 'ping <IP of your instance> âž” Hit Enter.
We can see, we are getting reply. So, it means there is no issue in networking.
[2] Do telnet on the Web Server:
Syntax:
telnet <Server ip> <port_no> 3389
Example:
telnet 11.1.2.3 3389
Here also we are able to get a response.
This means there could be either a firewall or RDP issue.
NOTE: In some cases, Telnet service is disabled by default. So, we need to enable that first.
Go to Run âž” Type 'control' âž” OK âž” Programs and features âž” turn windows features on âž” enable telnet client âž” OK. Now try to do telnet.
Now, by troubleshooting, as we know that there is some Firewall or RDP issue. So, we need to use EC2Rescue software to rectify this issue. For this, we need to launch a temporary instance. Then attach root volume of web server to this temporary instance and run EC2Rescue software.
Step 4: Launch a temporary instance (in same AZ):
Before launching any instance make sure if you are launching an instance for detaching and attaching purpose, the instance must be created in same AZ and you should use different AMI as compared to the original instance.
AWS âž” Services âž” EC2 âž” Instances âž” Launch Instance âž” Select 'Free tier only' âž” Select 'Microsoft Windows Server 2012 Base' AMI âž” Next âž” In Configure Instance Details: Select number of instances: '1'âž” Select Network: 'webshack-vpc' âž” Subnet: select same AZ âž” Next âž” Next âž” Click to add a Name tag âž” Name: win-temp âž” Next âž” Review and Launch âž” Launch âž” Choose an existing key pair or create a new one âž” Launch Instances âž” View Instances.
Decrypt password and save in a safe place.
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance 'win-temp' âž” Actions âž” Get Windows Password âž” Browse âž” Provide Private Key âž” Decrypt Password âž” Copy password to notepad and save it to a safe place.
Step 5: Login to the temporary instance:
AWS âž” Services âž” EC2 âž” Instances âž” Select Temporary Instance âž” from Description copy Public IP âž” Go to Run âž” type 'mstsc' âž” paste Public IP âž” Connect âž” Username: Administrator âž” Password: <paste from notepad> âž” Connect.In Device manager, we can see that there is only one Disk is available, which is the root volume of temporary instance and is Online.
Step 6: Detach root volume of Web Server:
Before detaching root volume we need to make sure about two things:- We should stop the instance and
- Copy path of root volume in a piece of paper, which is /dev/sda1
AWS âž” Services âž” EC2 âž” Volumes âž” Select root volume of web server âž” Actions âž” Detach Volume âž” Yes, Detach.
Now, this volume is in available state.
Step 7: Attach this root volume to the temporary instance:
AWS âž” Services âž” EC2 âž” Volumes âž” Select root volume of web server âž” Actions âž” Attach Volume âž” Select temp-inst instance âž” Device: <as we are attaching as secondary volume, there is no need to change path> âž” Attach.In Device Manager, we can see that there are two disks available. One if the root volume of temporary instance, which is Online and another is offline, which is secondarily attached to the temporary instance.
Step 8: Download EC2Rescue Software:
In RDP of temporary instance, open Browser âž” Search 'ec2rescue aws' OR directly paste below-mentioned link âž” Save.URL: https://s3.amazonaws.com/ec2rescue/windows/EC2Rescue_latest.zip?x-download-source=kc
In some cases, internet explorer could not download any file from the internet. Don't bother, just open Internet Options and do:
Go to Run âž” type command 'inetcpl.cpl' âž” Security âž” Internet âž” Custom Level âž” Navigate to Downloads âž” Click on Enable âž” OK.
Now try to download the file.
Right Click on Downloaded file âž” Extract All âž” Navigate to Extracted Folder âž” Run EC2Rescue.exe âž” Agree License âž” Next âž” Offline Instance âž” Select Offline Disk âž” Next âž” Verify: Yes âž” OK âž” Diagnose and Rescue âž” In Summary, we can see that 'Remote Desktop Connections' is disabled âž” Next âž” Select Remote Desktop Connections option âž” Next âž” Rescue âž” Proceed: OK âž” Next âž” Finish âž” OK.
Note: Sometimes in one shot this does not happen. Don't panic, just do this exercise once again and then verify.
Step 9: Detach secondary volume and attach it back to the web server:
As this disk is already Offline, there is no need to unmount this, just detach the volume from AWS console:AWS âž” Services âž” EC2 âž” Volumes âž” Select root volume of Web Server instance âž” Actions âž” Detach Volume âž” Yes, Detach.
As its state converts from 'in use' to 'available', we will attach to its original instance:
AWS âž” Services âž” EC2 âž” Volumes âž” Select root volume of Web Server instance âž” Actions âž” Attach Volume âž” Instance: Select original instance, which is still in stopped state âž” Device: (now provide the path which you copied) /dev/sda1 âž” Attach.
Step 10: Login to the original web server instance and verify its access using RDP:
AWS âž” Services âž” EC2 âž” Volumes âž” Select Web server Instance âž” Actions âž” Instance State âž” Start âž” Yes, Start.Now login to this instance using RDP:
Go to Run âž” type 'mstsc' âž” Copy public IP from Dashboard > Connect > Username: administrator > Password: Copy from Notepad > Connect.
Yaayyy!
We are through…
No comments:
Post a Comment