{"id":407,"date":"2010-05-18T00:48:01","date_gmt":"2010-05-18T05:48:01","guid":{"rendered":"http:\/\/www.migrate2cloud.com\/blog\/?p=407"},"modified":"2016-03-21T02:51:45","modified_gmt":"2016-03-21T07:51:45","slug":"resolving-the-degraded-instance-scenario-of-aws-ec2","status":"publish","type":"post","link":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/","title":{"rendered":"Resolving the degraded instance scenario of  AWS ec2"},"content":{"rendered":"<p>There are times when you might receive certain warning messages from amazon.<\/p>\n<p><em>&#8220;Hello,<\/em><\/p>\n<p><em>We have noticed that one or more of your instances are running on a host degraded due to hardware failure.<\/em><\/p>\n<p><em> i-111111<\/em><\/p>\n<p><em>The host needs to undergo maintenance and will be taken down. Your instances will be terminated at this point. We recommend that you launch replacement instances and start migrating to them.&#8221;<!--more--><\/em><\/p>\n<p>Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).<\/p>\n<p>suppose you have two instances i-111111 and i-222222 behind an ELB named TestBalancer.<br \/>\nAnd the instance i-111111 gets degraded due to an hardware faillure. At this point you won&#8217;t be able to do anything with the instance , not even a reboot will be of help.<\/p>\n<p>Remember, it is always a good practice to bundle your ami to the most latest one as you may add new applications or services to your instances quite frequently. This avoids the last minute panic of launching an instance from your old ami and updating all the recently configured services or applications in the newly launched instance. This will be very helpful if you are into <a href=\"http:\/\/aws.amazon.com\/autoscaling\/\">Autoscaling<\/a>.<\/p>\n<p><strong>1) Launch a new instance from the most latest ami , say ami-xxxxxx<\/strong><\/p>\n<p>You can launch a new instance either from Elasticfox ( Mozilla Firefox extension for managing your Amazon EC2 account ) or from the CLI as shown below.<\/p>\n<p>[shell]<br \/>\nec2-run-instances &#8211;region REGION ami-xxxxxx -k ec2-keypair -t Instance Type<br \/>\n-z Zone -g security group<br \/>\n[\/shell]<\/p>\n<p>This will create a new instance , say i-333333.<\/p>\n<p><strong>2) Deregister both the instances from the ELB.<\/strong><\/p>\n<p>[shell]elb-deregister-instances-from-lb TestBalancer &#8211;headers &#8211;instances i-111111,<br \/>\ni-222222<br \/>\n[\/shell]<\/p>\n<p><strong>3) Register the instances i-222222 and i-333333 ( the newly launched instance ) with the ELB.<\/strong><\/p>\n<p>[shell]elb-register-instances-with-lb TestBalancer &#8211;headers &#8211;instances i-222222, i-333333<br \/>\n[\/shell]<\/p>\n<p><strong>4) Verify if the instances are in service with the load balancer<\/strong><\/p>\n<p>[shell] elb-describe-instance-health TestBalancer<\/p>\n<p>INSTANCE-ID i-222222 InService<br \/>\nINSTANCE-ID i-333333 InService<br \/>\n[\/shell]<\/p>\n<p>If they are InService as shown above, then no worries.<\/p>\n<p>done ! Now you are back live with the new instance as a replacement for the degraded one. I would advise one to always store their important data in EBS volumes and automate daily or weekly snapshots of the volumes so that in such worst cases you just need to launch a new instance of the latest bundled ami and attach the EBS volumes to it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are times when you might receive certain warning messages from amazon. &#8220;Hello, We have noticed that one or more of your instances are running on a host degraded due to hardware failure. i-111111 The host needs to undergo maintenance and will be taken down. Your instances will be terminated at this point. We recommend [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[3],"tags":[235,604,605,99,98,127,215,144,606,137,29,233],"class_list":["post-407","post","type-post","status-publish","format-standard","hentry","category-cloud-computing","tag-amazon-elastic-compute-cloud","tag-amazon-com","tag-ambient-intelligence","tag-ami","tag-autoscaling","tag-cloud-computing","tag-cloud-infrastructure","tag-company-amazon-com","tag-configured-services","tag-department-stores-nec","tag-ec2-ami-aws-instane-degraded-amazon","tag-web-services"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"DevOps Team\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Migrate to Cloud - we make the clouds rain\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud\" \/>\n\t\t<meta property=\"og:description\" content=\"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-05-18T05:48:01+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-03-21T07:51:45+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#blogposting\",\"name\":\"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud\",\"headline\":\"Resolving the degraded instance scenario of  AWS ec2\",\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"},\"datePublished\":\"2010-05-18T00:48:01-05:00\",\"dateModified\":\"2016-03-21T02:51:45-05:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#webpage\"},\"articleSection\":\"Cloud computing, Amazon Elastic Compute Cloud, Amazon.com, Ambient intelligence, AMI, Autoscaling, Cloud computing, Cloud infrastructure, Company: Amazon.com, configured services, Department Stores - NEC, ec2 AMI AWS instane degraded amazon, Web services\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"position\":2,\"name\":\"Cloud computing\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#listItem\",\"name\":\"Resolving the degraded instance scenario of  AWS ec2\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#listItem\",\"position\":3,\"name\":\"Resolving the degraded instance scenario of  AWS ec2\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"DevOps Team\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/20b51e018d8f61e1739f60911fcf45cc9d09284569e448583a87f7fd0ac3d9dc?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"DevOps Team\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#webpage\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/\",\"name\":\"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud\",\"description\":\"Any data stored on the ephemeral store, \\\/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/resolving-the-degraded-instance-scenario-of-aws-ec2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2010-05-18T00:48:01-05:00\",\"dateModified\":\"2016-03-21T02:51:45-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud","description":"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).","canonical_url":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#blogposting","name":"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud","headline":"Resolving the degraded instance scenario of  AWS ec2","author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"},"datePublished":"2010-05-18T00:48:01-05:00","dateModified":"2016-03-21T02:51:45-05:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#webpage"},"isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#webpage"},"articleSection":"Cloud computing, Amazon Elastic Compute Cloud, Amazon.com, Ambient intelligence, AMI, Autoscaling, Cloud computing, Cloud infrastructure, Company: Amazon.com, configured services, Department Stores - NEC, ec2 AMI AWS instane degraded amazon, Web services"},{"@type":"BreadcrumbList","@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.migrate2cloud.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","position":2,"name":"Cloud computing","item":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#listItem","name":"Resolving the degraded instance scenario of  AWS ec2"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#listItem","position":3,"name":"Resolving the degraded instance scenario of  AWS ec2","previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}}]},{"@type":"Organization","@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization","name":"Migrate to Cloud","description":"we make the clouds rain","url":"https:\/\/www.migrate2cloud.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author","url":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/","name":"DevOps Team","image":{"@type":"ImageObject","@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/20b51e018d8f61e1739f60911fcf45cc9d09284569e448583a87f7fd0ac3d9dc?s=96&d=mm&r=g","width":96,"height":96,"caption":"DevOps Team"}},{"@type":"WebPage","@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#webpage","url":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/","name":"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud","description":"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/#breadcrumblist"},"author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"datePublished":"2010-05-18T00:48:01-05:00","dateModified":"2016-03-21T02:51:45-05:00"},{"@type":"WebSite","@id":"https:\/\/www.migrate2cloud.com\/blog\/#website","url":"https:\/\/www.migrate2cloud.com\/blog\/","name":"Migrate to Cloud","description":"we make the clouds rain","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Migrate to Cloud - we make the clouds rain","og:type":"article","og:title":"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud","og:description":"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer ).","og:url":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/","article:published_time":"2010-05-18T05:48:01+00:00","article:modified_time":"2016-03-21T07:51:45+00:00","twitter:card":"summary_large_image","twitter:title":"Resolving the degraded instance scenario of AWS ec2 - Migrate to Cloud","twitter:description":"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is to launch a new instance and attach all your EBS volumes to this new instance. This article explains how to replace a degraded instance among a pool of instances behind an ELB ( Elastic Load Balancer )."},"aioseo_meta_data":{"post_id":"407","title":"","description":"Any data stored on the ephemeral store, \/mnt, will be lost in this process but data bundled into the AMI and uploaded into S3 will still be available. So the only work around is  to launch a new instance and attach all your EBS volumes to this new instance. This article  explains how to replace a degraded instance among a pool of instances  behind an ELB ( Elastic Load Balancer ).","keywords":[{"label":"degraded","value":"degraded"},{"label":"instance","value":"instance"},{"label":"aws","value":"aws"},{"label":"ec2","value":"ec2"},{"label":"resolve","value":"resolve"},{"label":"ELB","value":"ELB"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2022-12-27 09:15:40","updated":"2026-07-21 15:27:08","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/\" title=\"Cloud computing\">Cloud computing<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tResolving the degraded instance scenario of  AWS ec2\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.migrate2cloud.com\/blog"},{"label":"Cloud computing","link":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/"},{"label":"Resolving the degraded instance scenario of  AWS ec2","link":"https:\/\/www.migrate2cloud.com\/blog\/resolving-the-degraded-instance-scenario-of-aws-ec2\/"}],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/comments?post=407"}],"version-history":[{"count":56,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/407\/revisions"}],"predecessor-version":[{"id":2168,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/407\/revisions\/2168"}],"wp:attachment":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/media?parent=407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/categories?post=407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/tags?post=407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}