Azure Web App is running but also is deleted - azure

I am facing the above problem. I created and i deleted 3 times a Web App + Mysql in Azure with the same name.
Now it seems that the application is running in App Services Tab but its status it is deleted. So I can not do anything (Restart Delete Customize etc)
Can I do something with the azure command line in order to delete the Web App permanently? Or Any other ideas?
Tnx

Yes, you could, use PowerShell to do that. Remove-AzureRmWebApp

Related

Node js web app restart issue

js site which i deployed on Azure.
Site was working fine but i made some changes but changes not appearing on the site. How to restart or clear site cache on Azure portal.
One more thing that post methods are not working in this site as well how to enable post method in Azure ?
I already tried to restart my web app from Azure portal but not success.
Posted my issue https://social.msdn.microsoft.com/Forums/en-US/090831ae-41ff-4091-a7ec-466041904c10/nodejs-app-restart-cache-issue?forum=windowsazurewebsitespreview here as well
First of all, you could restart your app by following steps below on Azure portal.
In the Azure Portal, open the blade for the web app.
Click Overview.
Click Restart button to restart your app.
Secondly, you could check the code whether it has been changed on Azure with Kudu which could be accessed via https://<yourwebsitename>.scm.azurewebsites.net/DebugConsole.
Then cd to site/wwwroot folder, you will now be able to see your application files.
By default, Azure doesn't restrict any HTTP request method. Maybe you have made a mistake in configuring web.config file, which can be found on this article. You can check this official guide if needed.

Azure - Cannot edit Application Settings. Says they are deleted?

Whenever I create a new App on Azure I cannot edit any of the Application Settings as it says they are deleted? What is going on here?
TIA,
Alex
This can happen when you have created an App Service, deleted it, and then made it again with the same name.
Try from a different browser or clear your cache.

What is a web job on azure, is it part of a web application or standalone

Is it a job attached to a web app, or is it a type of web app itself? I tried following this example but couldn't find the add webjobs link it mentioned, just links to create a web app.
https://azure.microsoft.com/en-us/documentation/articles/web-sites-create-web-jobs/
Yes, a job is "attached" to a Web App. A Web App is the execution container for WebJobs. In some cases you might also have a companion website also running in the WebApp, but often, the Web App only contains WebJobs.
Once you have a Web App, you can create/manage WebJobs via the portal "WebJobs" blade in the new portal. You'll find it in the Settings blade under "Features".
Another way to think of a Web Job is as an extra .exe/process that runs on the same VM as your web app, with the only special thing being that it is launched with the same set of environment variables as the web app and has access to the same set of directories.
There's a great post here explaining WebJobs and how to create/operate one. Everything you need to know to get going.

Lightswitch app publishing to Azure is failing on service configuration line

In publishing a Lightswitch app to Azure (for the first time) I get to the Service Configuration line and the "Select a web site to host your application". I have created the website on Azure as well as a SQL database and linked them. I have download the Pay-As-You-Go-Free Trial-5-10-2014-credentials.publishsettings file and imported it numerous times, hit the refresh button--everything. The Security Settings and Data Connections are all ok. My only guess is that there is a corrupt file that needs to be deleted but I really cannot guess anymore about what has gone wrong.
The only thing that comes up in the "Select a web site to host your application: dropdown is ". Prehaps I missing some setup step on the Azure portal. I don't know.
Found the work around on these links in the Microsoft forums.
http://social.msdn.microsoft.com/Forums/vstudio/en-US/4f31d311-dfc2-47ac-80e1-64af0487717e/cant-publish-vs2013-ls-project-this-subscription-has-no-web-sites?forum=lightswitch
http://blogs.msdn.com/b/david_kidder/archive/2013/07/19/publish-lightswitch-2013-preview-applications-to-windows-azure-web-sites-without-the-azure-sdk.aspx

Azure deployment fails because service not found

I am currently trying to deploy a cloud service to Windows Azure but I get the following error message:
"Could not retrieve the list of cloud services.[...]"
Details can be seen on the picture.
It seems to me that VS couldn't find an existing service role in the subscription but my service is available and running, I just can not deploy a new version there.
A few days ago it worked correctly. Any Idea would be appreciated.
Thank you!
After hours of Certificate generation, messing with azure toolkit, etc. I figured out that the problem was that somehow my computer tried to resolve the azure DNS to localhost because Fiddler got crazy and the proxy that Fiddler uses, haven't stopped even after restarting my computer.
I faced same problem, when trying to deploy to azure while fiddler is running. Simply closing fiddler solve the problem.
Go to the previous screen, there will be an option of connecting to Azure using your credentials. Select your subscription and you will be able to download a file to your local machine. That file contains your subscription info as well as the keys. Once you open that file through this wizard, you will be able to publish to your services. You must create cloud services first before you do that.

Resources