Restore Deleted Azure Web App Cloud Exception
up vote
1
down vote
favorite
So someone I handed over an Azure web app to managed to delete the site and now wants it back.
I was running it as a small project on a free tier, so I don't have any active backups or anything. I tried using the new Webapp Undelete feature, but every time I ran Restore-AzureRmDeletedWebApp
as detailed here, I get the following error:
Restore-AzureRmDeletedWebApp : An error has occurred.
At line:1 char:1
+ Restore-AzureRmDeletedWebApp -ResourceGroupName xxxx -Name xxxx -Tar ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Restore-AzureRmDeletedWebApp], CloudException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureDeletedWebApp
What does this even mean? Is there a way to fix it? Is there a way to access the backup that Azure has (running Get-AzureRmDeletedWebApp
definitely still lists the deleted app) manually? Or is the site just gone?
azure azure-web-app-service
add a comment |
up vote
1
down vote
favorite
So someone I handed over an Azure web app to managed to delete the site and now wants it back.
I was running it as a small project on a free tier, so I don't have any active backups or anything. I tried using the new Webapp Undelete feature, but every time I ran Restore-AzureRmDeletedWebApp
as detailed here, I get the following error:
Restore-AzureRmDeletedWebApp : An error has occurred.
At line:1 char:1
+ Restore-AzureRmDeletedWebApp -ResourceGroupName xxxx -Name xxxx -Tar ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Restore-AzureRmDeletedWebApp], CloudException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureDeletedWebApp
What does this even mean? Is there a way to fix it? Is there a way to access the backup that Azure has (running Get-AzureRmDeletedWebApp
definitely still lists the deleted app) manually? Or is the site just gone?
azure azure-web-app-service
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
So someone I handed over an Azure web app to managed to delete the site and now wants it back.
I was running it as a small project on a free tier, so I don't have any active backups or anything. I tried using the new Webapp Undelete feature, but every time I ran Restore-AzureRmDeletedWebApp
as detailed here, I get the following error:
Restore-AzureRmDeletedWebApp : An error has occurred.
At line:1 char:1
+ Restore-AzureRmDeletedWebApp -ResourceGroupName xxxx -Name xxxx -Tar ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Restore-AzureRmDeletedWebApp], CloudException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureDeletedWebApp
What does this even mean? Is there a way to fix it? Is there a way to access the backup that Azure has (running Get-AzureRmDeletedWebApp
definitely still lists the deleted app) manually? Or is the site just gone?
azure azure-web-app-service
So someone I handed over an Azure web app to managed to delete the site and now wants it back.
I was running it as a small project on a free tier, so I don't have any active backups or anything. I tried using the new Webapp Undelete feature, but every time I ran Restore-AzureRmDeletedWebApp
as detailed here, I get the following error:
Restore-AzureRmDeletedWebApp : An error has occurred.
At line:1 char:1
+ Restore-AzureRmDeletedWebApp -ResourceGroupName xxxx -Name xxxx -Tar ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Restore-AzureRmDeletedWebApp], CloudException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureDeletedWebApp
What does this even mean? Is there a way to fix it? Is there a way to access the backup that Azure has (running Get-AzureRmDeletedWebApp
definitely still lists the deleted app) manually? Or is the site just gone?
azure azure-web-app-service
azure azure-web-app-service
asked Nov 5 at 3:28
mt_xing
313316
313316
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
Per this doc, currently, Azure App Service Undelete is available for all App Service Plans, from Basic and up. Only sites deleted in the past 30 days can be restored. It works for me without errors on a basic plan. You can see the output below.
If I try to restore a web app on a free tier, I have the same error as you, also, I have a 404 Web Site not found error even the restored app service is created or displayed in the Azure portal. It seems that it's not supported to restore a web app on a free tier currently.
If you have back up your web on Azure, you can restore your app with its linked databases on-demand to a previous state, or create a new app based on one of your original app's backups. Restoring from backups is available to apps running in Standard and Premium tier.
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
1
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
add a comment |
up vote
2
down vote
The WebApps Undelete
is only available for Basic and Up tier for now.And I have tested it , It's successful in basic tier.
If your web runs on free tier and you don't have any backups ,you couldn't recover it by yourself.But you could still check whether all resources including local and deployment resources like GitHub etc have been deleted.
If so, you could contact the Microsoft Support ,maybe they could help you.
And if you have any questions, please let me know.
New contributor
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Per this doc, currently, Azure App Service Undelete is available for all App Service Plans, from Basic and up. Only sites deleted in the past 30 days can be restored. It works for me without errors on a basic plan. You can see the output below.
If I try to restore a web app on a free tier, I have the same error as you, also, I have a 404 Web Site not found error even the restored app service is created or displayed in the Azure portal. It seems that it's not supported to restore a web app on a free tier currently.
If you have back up your web on Azure, you can restore your app with its linked databases on-demand to a previous state, or create a new app based on one of your original app's backups. Restoring from backups is available to apps running in Standard and Premium tier.
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
1
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
add a comment |
up vote
2
down vote
accepted
Per this doc, currently, Azure App Service Undelete is available for all App Service Plans, from Basic and up. Only sites deleted in the past 30 days can be restored. It works for me without errors on a basic plan. You can see the output below.
If I try to restore a web app on a free tier, I have the same error as you, also, I have a 404 Web Site not found error even the restored app service is created or displayed in the Azure portal. It seems that it's not supported to restore a web app on a free tier currently.
If you have back up your web on Azure, you can restore your app with its linked databases on-demand to a previous state, or create a new app based on one of your original app's backups. Restoring from backups is available to apps running in Standard and Premium tier.
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
1
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Per this doc, currently, Azure App Service Undelete is available for all App Service Plans, from Basic and up. Only sites deleted in the past 30 days can be restored. It works for me without errors on a basic plan. You can see the output below.
If I try to restore a web app on a free tier, I have the same error as you, also, I have a 404 Web Site not found error even the restored app service is created or displayed in the Azure portal. It seems that it's not supported to restore a web app on a free tier currently.
If you have back up your web on Azure, you can restore your app with its linked databases on-demand to a previous state, or create a new app based on one of your original app's backups. Restoring from backups is available to apps running in Standard and Premium tier.
Per this doc, currently, Azure App Service Undelete is available for all App Service Plans, from Basic and up. Only sites deleted in the past 30 days can be restored. It works for me without errors on a basic plan. You can see the output below.
If I try to restore a web app on a free tier, I have the same error as you, also, I have a 404 Web Site not found error even the restored app service is created or displayed in the Azure portal. It seems that it's not supported to restore a web app on a free tier currently.
If you have back up your web on Azure, you can restore your app with its linked databases on-demand to a previous state, or create a new app based on one of your original app's backups. Restoring from backups is available to apps running in Standard and Premium tier.
answered Nov 5 at 6:01
Nancy Xiong - MSFT
1,638116
1,638116
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
1
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
add a comment |
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
1
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
Thanks. There wouldn't happen to be a way to update my deleted site to Basic and then restore the app, would there?
– mt_xing
Nov 5 at 17:12
1
1
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
I don't think there is, If the web app service is deleted, the SCM site is also not found. Even you try to restore it to a target basic plan using that PowerShell. You will see a 404 Web Site not found error as my reply above mentioned when you access the website on the newly restored web app service
– Nancy Xiong - MSFT
Nov 6 at 5:14
add a comment |
up vote
2
down vote
The WebApps Undelete
is only available for Basic and Up tier for now.And I have tested it , It's successful in basic tier.
If your web runs on free tier and you don't have any backups ,you couldn't recover it by yourself.But you could still check whether all resources including local and deployment resources like GitHub etc have been deleted.
If so, you could contact the Microsoft Support ,maybe they could help you.
And if you have any questions, please let me know.
New contributor
add a comment |
up vote
2
down vote
The WebApps Undelete
is only available for Basic and Up tier for now.And I have tested it , It's successful in basic tier.
If your web runs on free tier and you don't have any backups ,you couldn't recover it by yourself.But you could still check whether all resources including local and deployment resources like GitHub etc have been deleted.
If so, you could contact the Microsoft Support ,maybe they could help you.
And if you have any questions, please let me know.
New contributor
add a comment |
up vote
2
down vote
up vote
2
down vote
The WebApps Undelete
is only available for Basic and Up tier for now.And I have tested it , It's successful in basic tier.
If your web runs on free tier and you don't have any backups ,you couldn't recover it by yourself.But you could still check whether all resources including local and deployment resources like GitHub etc have been deleted.
If so, you could contact the Microsoft Support ,maybe they could help you.
And if you have any questions, please let me know.
New contributor
The WebApps Undelete
is only available for Basic and Up tier for now.And I have tested it , It's successful in basic tier.
If your web runs on free tier and you don't have any backups ,you couldn't recover it by yourself.But you could still check whether all resources including local and deployment resources like GitHub etc have been deleted.
If so, you could contact the Microsoft Support ,maybe they could help you.
And if you have any questions, please let me know.
New contributor
New contributor
answered Nov 5 at 6:05
George Chen
654
654
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53147934%2frestore-deleted-azure-web-app-cloud-exception%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password