Error Launching a new Lightsail instance from snapshot

0

I am trying to create an instance from a recent backup after my server stopped working, however when I try to create an instance I get the following error: "Error CreateInstancesFromSnapshot[us-east-2]

This instance cannot be created because the source snapshot was created from a blueprint plesk_ubuntu_17_5_3_28 that isn't supported by the bundle xlarge_3_0 (a newer bundle type). To create an instance from this blueprint, choose an older version of this bundle type.

InvalidParams

"

I tried using all the available other bundles, where can I find older version of this bundle type to restore my instance?

Hasan
asked 9 months ago340 views
1 Answer
0

Hi there!

Sorry to hear you're having this issue. If you're seeing this error through the Lightsail Console, please confirm you are following these steps: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-create-instance-from-snapshot

If the error still is unresolved, instead try using the following CLI command to restore your instance:

aws lightsail create-instances-from-snapshot \
    --instance-snapshot-name {enter your instance snapshot name here} \
    --instance-names {enter your instance name here} \
    --availability-zone us-east-2a \
    --bundle-id xlarge_2_0 \
    --region us-east-2

Is your recent backup a manual snapshot or an automatic snapshot?

AWS
answered 9 months ago
  • If your snapshot is an automatic snapshot, use the following CLI command rather than the above command:

    aws lightsail create-instances-from-snapshot \
        --source-instance-name {enter your source instance name here} \
        --use-latest-restorable-auto-snapshot \     
        --instance-names {enter your new instance name here} \
        --availability-zone us-east-2a \
        --bundle-id xlarge_2_0 \
        --region us-east-2
    
  • We were able to reproduce this issue on our end, and have since fixed it. Please trying to use the console once again if you are still blocked on this issue.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions