Azure Web App部署:Web Deploy无法修改目标上的文件,因为它已被外部进程锁定

前端之家收集整理的这篇文章主要介绍了Azure Web App部署:Web Deploy无法修改目标上的文件,因为它已被外部进程锁定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用VSTS中的“Azure Web App部署”构建步骤将ASP.NET Core API发布到Azure Web App:

有时,此步骤会出现以下错误

[error]Microsoft.Web.Deployment.DeploymentDetailedClientServerException:
Web Deploy cannot modify the file ‘MyProject.Api.exe’ on the
destination because it is locked by an external process. In order to
allow the publish operation to succeed,you may need to either restart
your application to release the lock,or use the AppOffline rule
handler for .Net applications on your next publish attempt. Learn
more at:
07001.

This GitHub issue提出了同样的问题,但没有使用Azure Web App部署构建步骤的建议解决方案.

解决方法

根据Microsoft Github repo here中的一个单独的线程,有一个hacky解决方法,如果您将以下密钥添加到Azure Appsettings,它可以帮助解决锁定的文件部署错误
MSDEPLOY_RENAME_LOCKED_FILES = 1

我不确定这个appsetting hack会被支持多久,但它确实帮助我个人解决了这个问题.

原文链接:https://www.f2er.com/html/227234.html

猜你在找的HTML相关文章