在哪里可以找到 WebSphere 配置文件?

发布于 2024-08-29 10:05:54 字数 253 浏览 4 评论 0原文

我想知道WebSphere 配置详细信息保存在哪里?

具体来说,是在管理控制台(来自 Web)或使用 wsadmin 的控制台中显示的配置详细信息。

一些例子是:

  1. Java 和流程管理:类 加载程序、流程定义、流程 执行
  2. 容器设置: 会话管理、SIP 容器 设置、Web 容器设置、 Portlet 容器设置

是否存在保存这些配置详细信息的 XML 文件?

尼古拉斯

I would like to know where are the WebSphere configuration details saved?

Specifically, configuration details that are shown in the Administrative Console (from the web) or from the console using wsadmin.

Some of the examples would be:

  1. Java and Process Management: Class
    loader, Process definition, Process
    execution
  2. Container Settings:
    Session management, SIP Container
    Settings, Web Container Settings,
    Portlet Container Settings

Are there XML files that persist these configuration details?

Nicholas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁对谁错谁最难过 2024-09-05 10:05:54

WebSphere Application Server 配置数据以 XMI 格式存储在概要文件配置存储库中。

您引用的设置存储在 server.xml

${PROFILE_HOME}/config/cells/${CELL}/nodes/${NODE}/servers/${SERVER}/server.xml

WebSphere Application Server configuration data is stored in XMI format in the profile configuration repository.

The settings you referred to are stored in server.xml

${PROFILE_HOME}/config/cells/${CELL}/nodes/${NODE}/servers/${SERVER}/server.xml
吲‖鸣 2024-09-05 10:05:54

除了 server.xml @ ${PROFILE_HOME}/config/cells/${CELL}/nodes/${NODE}/servers/${SERVER}/server.xml 之外,还有其他文件可以保存更多数据,如下所示:

  1. resources.xml 位于同一路径。该文件保存了所有的资源信息。
  2. 在同一路径下的variables.xml。该文件保存在数据库驱动程序等地方使​​用的变量。

此外,这里还提到了其他重要文件 - https://websphereapplicationservernotes.wordpress.com/2012/12/13/websphere-application-server-important-files/

由于这些天 URL 已过时,我我也将内容粘贴到此处:

CELL-scope

• admin-authz.xml
包含为管理控制台管理设置的角色。
/appsrv01/config/cells//

• profileRegistry.xml
包含配置文件和配置文件配置数据的列表

• resources.xml
定义操作单元范围环境资源,包括 JDBC、JMS、JavaMail、URL 端点配置等。

• 安全.xml
包含安全数据,包括所有用户 ID 和密码信息。

• 虚拟主机.xml
包含虚拟主机和多用途 Internet 邮件扩展 (MIME) 类型的配置。

• 变量.xml
包含单元级 WebSphere 变量

• wimconfig.xml
包含用于全局安全的联合存储库配置
/config/cells//wim/config/

NODE 范围

• namestore.xml
提供持久的 JNDI 名称空间绑定数据

• resources.xml
定义节点范围环境资源,包括 JDBC、JMS、JavaMail、URL 端点配置等

• serverindex.xml
指定该节点上的服务器使用的所有端口

•variables.xml
包含节点级 WebSphere 变量

SERVER 范围

• resources.xml
包含服务器范围内的资源配置,例如 JDBC、JMS、JavaMail 和 URL 端点

• server.xml
包含应用程序服务器配置数据

• Variables.xml
包含服务器级别变量

Along with server.xml @ ${PROFILE_HOME}/config/cells/${CELL}/nodes/${NODE}/servers/${SERVER}/server.xml, there are other files too which save more data as below:

  1. resources.xml at the same path. This file has all the resources information saved.
  2. variables.xml at the same path. This file saves the variables used in places like DB drivers etc.

Also, there are other important file mentioned here - https://websphereapplicationservernotes.wordpress.com/2012/12/13/websphere-application-server-important-files/

As the URLs get obsolete these days, I am pasting the content here too:

CELL-scope

• admin-authz.xml
Contains the roles set for administration of the Admin console.
/appsrv01/config/cells//

• profileRegistry.xml
Contains a list of profiles and profile configuration data

• resources.xml
Defines operating cell scope environmental resources, including JDBC, JMS, JavaMail, URL end point configuration, and so on.

• security.xml
Contains security data , including all user ID and password information.

• virtualhosts.xml
Contains virtual host and Multipurpose Internet Mail Extensions (MIME)-type configurations.

• variables.xml
Contains cell level WebSphere variables

• wimconfig.xml
Contains the federated repository configurations for global security
/config/cells//wim/config/

NODE-scope

• namestore.xml
Provides persistent JNDI namespace binding data

• resources.xml
Defines node scope environmental resources, including JDBC, JMS, JavaMail, URL end point configuration, and so on

• serverindex.xml
Specifies all the ports used by servers on this node

• variables.xml
Contains node level WebSphere variables

SERVER-scope

• resources.xml
Contains the configuration of resources, such as, JDBC, JMS, JavaMail, and URL end points at server scope

• server.xml
Contains application server configuration data

• variables.xml
Contains server level variables

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文