尝试向Azure部署战争时出现问题

时间:2019-02-01 17:11:52

标签: azure war web-deployment

我试图将War文件部署到Azure,但是失败了,这就是我的工作。

首先,我尝试通过将war文件拖到D:\home\site\wwwroot\webapps下来部署战争,然后重新启动应用程序服务,但.war文件没有解压缩。

第二,我尝试使用这些steps使用Power Shell进行部署,但是出现了此错误消息:

Invoke-RestMethod: You do not have permission to view this directory or page.

任何人都可以解释我在做什么错!

顺便说一下,我在wwwroot下有web.config文件:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <system.webServer>
      <security>
         <requestFiltering>
            <requestLimits maxAllowedContentLength="4294967295" />
         </requestFiltering>
      </security>
      <httpPlatform processPath="%AZURE_TOMCAT85_HOME%\bin\startup.bat"> <!-- arguments="-config D:\home\site\wwwroot\conf\server.xml start"> -->
         <environmentVariables>
            <environmentVariable name="CATALINA_OPTS" value="-Dport.http=%HTTP_PLATFORM_PORT% -Xms512m -Xmx2048m" />
            <environmentVariable name="CATALINA_HOME" value="%AZURE_TOMCAT85_HOME%" />
         </environmentVariables>
      </httpPlatform>
   </system.webServer>
</configuration>

1 个答案:

答案 0 :(得分:1)

战争没有解压缩,因为tomcat没有运行,因此在“应用程序”设置中,请确保已激活Java并且Java Web容器是Tomcat。

enter image description here

如果不创建新的部署槽,还请确保您有一个部署槽(请参见上图)。

希望有帮助。