[App Service for Windows]通过 KUDU 查看 Tomcat 配置信息

简介: [App Service for Windows]通过 KUDU 查看 Tomcat 配置信息

问题描述

在App Service 中选择了Java Tomcat后,如何查看Azure App Service的Tomcat的配置信息呢?

 

问题解答

可以通过以下的 3个步骤查看:

 

第一步:登录 Kudu :

方式一:在当前 Web 应用的 URL 中加入 .scm (插入位置在 site 名与 chinacloudsites 之间)。

方式二:在当前 Web 应用的 Azure 门户中操作,点击 “ 开发工具 -> 高级工具 -> 转到 ” 即可进入 Kudu 页面。

 

第二步:查看当前 Java 进程信息,获取到当前 Tomcat 路径:

点击 "Process Expolorer" 在 Java 的进程上点击 "Properties" 查看详细信息:

这一步中,获取到当前 Tomcat 的路径为 D:\Program Files\apache-tomcat-8.5.82 文件夹。通过 Debug Console 导航并进入到服务端的配置文件夹:

 

第三步:根据Tomcat路径,查看配置文件

进入Debug Console页面,进入D:\Program Files\apache-tomcat-8.5.82目录,逐步点击,找到 conf 文件夹,点击文件名边的编辑按钮,查看Server.xml文件内容:

 

动态展示

 

 

参考资料

如何通过 Kudu 查看/修改 Java Tomcat 服务端的配置文件 : https://support.azure.cn/docs/azure-operations-guide/app-service-web/aog-app-service-web-howto-modify-tomcat-server-profile-with-kudu.html

相关文章
|
21天前
|
C# Windows
【Azure App Service】在App Service for Windows上验证能占用的内存最大值
根据以上测验,当使用App Service内存没有达到预期的值,且应用异常日志出现OutOfMemory时,就需要检查Platform的设置是否位64bit。
40 11
|
22天前
|
JavaScript C++ 容器
【Azure Bot Service】部署NodeJS ChatBot代码到App Service中无法自动启动
2024-11-12T12:22:40.366223350Z Error: Cannot find module 'dotenv' 2024-11-12T12:40:12.538120729Z Error: Cannot find module 'restify' 2024-11-12T12:48:13.348529900Z Error: Cannot find module 'lodash'
38 11
|
20天前
|
开发框架 监控 .NET
【Azure App Service】部署在App Service上的.NET应用内存消耗不能超过2GB的情况分析
x64 dotnet runtime is not installed on the app service by default. Since we had the app service running in x64, it was proxying the request to a 32 bit dotnet process which was throwing an OutOfMemoryException with requests >100MB. It worked on the IaaS servers because we had the x64 runtime install
|
19天前
|
Java 开发工具 Windows
【Azure App Service】在App Service中调用Stroage SDK上传文件时遇见 System.OutOfMemoryException
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
|
19天前
|
安全 Apache 开发工具
【Azure App Service】在App Service上关于OpenSSH的CVE2024-6387漏洞解答
CVE2024-6387 是远程访问漏洞,攻击者通过不安全的OpenSSh版本可以进行远程代码执行。CVE-2024-6387漏洞攻击仅应用于OpenSSH服务器,而App Service Runtime中并未使用OpenSSH,不会被远程方式攻击,所以OpenSSH并不会对应用造成安全风险。同时,如果App Service的系统为Windows,不会受远程漏洞影响!
|
29天前
|
C#
【Azure App Service】使用Microsoft.Office.Interop.Word来操作Word文档,部署到App Service后报错COMException
System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80040154 Class not registered (0x80040154 (REGDB_E_CLASSNOTREG)).
|
监控 数据安全/隐私保护 Windows
Nagios 监控Windows服务器(详细篇)
1. 监控内容 windows服务器的内部参数包括以下 a. 内存使用状况 b. CPU负载 c. 磁盘使用状况 d. 服务状态 e. 运行的进程 2. 监控原理 在windows服务器内安装NSClient++的监控引擎,nagios服务器通过check_nt来获取监控数据 3.
1572 0
|
监控 数据安全/隐私保护 Windows

热门文章

最新文章