Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update (re-deploy) existing azure webjob

Tags:

I created an on-demand webjob. In the management portal there is no option to upload a new zip, to update it.
I can delete the existing webjob and create a new one, but I would like to keep my logs.
Is there any way to re-deploy it, overriding the old version, maintaining the logs?

like image 260
Attila Szasz Avatar asked Feb 11 '15 07:02

Attila Szasz


People also ask

How do you deploy a .NET core console application to Azure WebJob?

To deploy the . NET Core console application to an Azure App Service Web App Web Job access the Azure portal and navigate to the Azure App Service where you will host the WebJob. Then click on the WebJobs link and the Add button as shown in Figure 2.


1 Answers

You can connect to the website where the webjob is at via FTP and update the necessary files without erasing your log files.

You can get the credentials to connect via FTP from the Publish Profile.

like image 69
lopezbertoni Avatar answered Sep 17 '22 03:09

lopezbertoni