Reputation: 3
I have created a simple webjob and deployed it on my test webapp on my trial azure portal to learn few things.
As part of this learning I would like to move this webjob to an another webapp in the same azure portal without redeploying it through the visual studio. How it is achievable?
Any help is appreciated. thanks
Upvotes: 0
Views: 770
Reputation: 24128
According to the section Copying files directly in their proper location
of the Kudu wiki, I think you can try to move your Azure webjob via FTP from one webapp to the other.
The steps for moving as below via FTP tool.
wwwroot/app_data/jobs/...
between two instances.Meanwhile, I think you can try to use GitHub to redeploy the same webjob for the other webapp if using the continuous deployment for Azure, please see https://azure.microsoft.com/en-us/documentation/articles/app-service-continous-deployment/. Please keep the same structure of undering the webapp directory wwwroot
with the GitHub repository.
Upvotes: 2