Instance reachability check failed after performing In-place upgrade from Windows Server 2012 r2 to 2019

0

I was upgrading my Windows and I followed the instructions in the documentations here: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/os-inplaceupgrade.html But I updated SSM agent, replaced ec2launch instead of ec2config, updated PV driver, attached the upgrade volume and started the upgrade by running .\setup.exe /auto upgrade /dynamicupdate disable. I missed updating ENA driver and enabling enhanced networking. My EC2 instance type is m4, now it's been 3 days and I'm just getting (Instance status checks: Instance reachability check failed). I can't connect to the instance via RDP or System Manager. What shall I do?

질문됨 3달 전281회 조회
1개 답변
0

Hello

Your instance type supports enhanced networking, therefore this attribute should be enabled.

You can run this commands on Cloud-shell on your AWS Dashboard , Ensure you are on the correct region where the instance is hosted.

Run the below AWS CLI command, insert the instance Id under the "instance_id" field.

aws ec2 describe-instances --instance-ids instance_id --query "Reservations[].Instances[].EnaSupport"

It Should give an output of "False"

Modify-instance-attribute by running the below AWS CLI command :

aws ec2 modify-instance-attribute --instance-id instance_id --ena-support

Run the first command AWS CLI command to describe the instances, The output should show as "True"

Reboot your instance, it should be back online

If the issue persists, suggest you restore your instance from your backup that you took before the upgrade. You can follow the step by step process from the start.

Resources

https://aws.amazon.com/ec2/instance-types/

https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/enhanced-networking-ena.html

https://docs.aws.amazon.com/prescriptive-guidance/latest/backup-recovery/restore.html

AWS
답변함 2달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠