I setup letsencrypt on a web app on azure at the start of the year, and all was running fine, until today when we found the webjob hadn't auto-renewed the certificate.
any ideas why it conked out?
when trying to check the logs, it states I need to add a connection string with the value with the format:
DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY
where can I find the values for NAME and KEY?
cheers!
It seems to be the NAME & KEY of your Azure Storgae Account.
You can find the values on Azure classic portal or new portal, please see below.
Fig 1. On Azure classic portal
Fig 1. On Azure new portal
Related
I am trying to create a "recovery services vault" service in azure manually but it is not showing me the resource.
please help we with the issue.
Thanks in advance.
You are looking in the market place for the recovery services vault. If you search in the Azure portal you should be able to find it as below.
Is there a way to automate the process of importing a key vault certificate within Azure app services? I'm referring specifically to the option in the portal circled below. I can't find anything in PowerShell or ARM Templates.
I found a way to do this as a one-time deployment via ARM templates, but that option does not rotate the certificate if it rotates in KV. To my understanding the "import" functionality in circled below maintains the connection to KV and handles the rotation automatically.
If there's a way to automate this, it would be great, rather than having to go through the portal and click these buttons for each region I deploy each service to.
Looks like there is a web job that does this when a new version of certificate is created in KeyVault. According to the blog, the web job that applies the new certificate runs once a day so you have to time your creation of new version of the certificate in KeyVault at least a day before the expiry so certificate gets renewed before the expiry.
I created 2 LUIS apps about a month ago on eu.luis.ai, and they have been working just fine with the Bot they are linked to, but it seems that I have hit some sort of quota on LUIS requests. I think upgrading my plan to a higher tier would resolve the problem, but I can't find the app on my azure portal, and I can't find a way to change the plan from eu.luis.ai either.
You can see my LUIS apps here (eu.luis.ai)
You can see my Azure apps here, the only cognitive service appearing is QNAMaker
Does anybody have the same problem ? I am 100% sure I'm logged in with the same account on both websites.
I found what was wrong : when you first start using LUIS, you can create apps on luis.ai without creating them on your Azure portal. They come with starter keys that expire after a month or so. You then have to create a LUIS app on the Azure portal, and add the newly generated key to your existing apps.
I was having a similar problem where I had my LUIS app working with a Speech Recognition service key, and it stopped working after a month. I had to add a new LUIS service on my Azure portal and use that key instead.
I am trying to create an ASP.NET framework app in Azure so i followed the tutorial on the Azure website but while publishing there is always a problem logging in.
I have tried to login several times and it is all successful but i am unable to proceed with creating app services. The page will still be the same page asking to login or create an account.
I am also login to my visual studio 2017 enterprise with the same account so i am wondering why i can't proceed on.
Thank you
According to your description, I suppose you haven't buy the Azure. You could buy Azure from this link. After that, your account could use Azure. Then you could get Subscription for Azure portal. You could also create Resource Group and App Service Plan from Azure portal.
If you want to use Azure for free,you can use trial version.Just like the following screenshot. However, it has use time and function limit.
I am having an issue while deploying an Azure web role to a cloud service. It shows me the error
Cloud services are not available in this subscription.
I am using a pay as you go subscription on Azure. I don't know if there is any limitation with this subscription for cloud service deployment or not.
.
Updated version of JerryGoyal's solution.
Cloud Service Management will have to be done using the new Azure Portal, because Cloud Service Management in the old portal will be disabled as of 11/15/2017.
Log into the new Azure Portal.
Go to the Subscriptions View.
Set your account as a Co-Admin. Microsoft Documentation.
I think the issue you're running into is that the Cloud Service Publish Wizard in VS only supports subscriptions in which you are an admin or co-admin granted via via the old portal (manage.windowsazure.com). If you've been given access via RBAC or the new portal, then VS will not see the resources under those subscriptions.
To work around it, you can build the package using msbuild.exe and then upload it via the portal.
That help?
Cloud services are not available in this subscription
The error is caused because the Cloud Services still use the old deployment model that is based on Azure Service Management (ASM).
To deploy an ASM based component to Azure you need to be ‘co-admin’ for the subscription.
Right now you are ‘Owner’ on the new portal but this role only has impact on the new ARM based resources.
So, just ask your subscription admin to login to the old portal (https://manage.windowsazure.com) and make you co-administrator:
Login to the old portal
Click on Settings –> Administrators
Click on the Add button at the bottom
Enter the co-admin email address and click on the OK button.
After this reload your Visual Studio and the problem will be solved.