简体   繁体   English

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

[英]Where can I find WebSphere configuration files?

I would like to know where are the WebSphere configuration details saved? 我想知道保存WebSphere配置详细信息的位置?

Specifically, configuration details that are shown in the Administrative Console (from the web) or from the console using wsadmin. 具体而言,使用wsadmin在管理控制台(来自Web)或控制台中显示的配置详细信息。

Some of the examples would be: 一些例子是:

  1. Java and Process Management: Class loader, Process definition, Process execution Java和流程管理:类加载器,流程定义,流程执行
  2. Container Settings: Session management, SIP Container Settings, Web Container Settings, Portlet Container Settings 容器设置:会话管理,SIP容器设置,Web容器设置,Portlet容器设置

Are there XML files that persist these configuration details? 是否存在保留这些配置详细信息的XML文件?

Nicholas 尼古拉斯

WebSphere Application Server configuration data is stored in XMI format in the profile configuration repository. WebSphere Application Server配置数据以XMI格式存储在概要文件配置库中。

The settings you referred to are stored in server.xml 您引用的设置存储在server.xml

${PROFILE_HOME}/config/cells/${CELL}/nodes/${NODE}/servers/${SERVER}/server.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: 与server.xml @ $ {PROFILE_HOME} / config / cells / $ {CELL} / nodes / $ {NODE} / servers / $ {SERVER} /server.xml一起,还有其他文件可以保存更多数据,如下所示:

  1. resources.xml at the same path. resources.xml在同一路径上。 This file has all the resources information saved. 此文件已保存所有资源信息。
  2. variables.xml at the same path. variables.xml在同一路径上。 This file saves the variables used in places like DB drivers etc. 此文件保存在DB驱动程序等位置使用的变量。

Also, there are other important file mentioned here - https://websphereapplicationservernotes.wordpress.com/2012/12/13/websphere-application-server-important-files/ 此外,还有其他重要文件 - 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 CELL-范围

• admin-authz.xml Contains the roles set for administration of the Admin console. •admin-authz.xml包含为管理控制台的管理设置的角色。 /appsrv01/config/cells// / appsrv01 /配置/细胞//

• profileRegistry.xml Contains a list of profiles and profile configuration data •profileRegistry.xml包含配置文件和配置文件配置数据的列表

• resources.xml Defines operating cell scope environmental resources, including JDBC, JMS, JavaMail, URL end point configuration, and so on. •resources.xml定义操作单元范围环境资源,包括JDBC,JMS,JavaMail,URL端点配置等。

• security.xml Contains security data , including all user ID and password information. •security.xml包含安全数据,包括所有用户标识和密码信息。

• virtualhosts.xml Contains virtual host and Multipurpose Internet Mail Extensions (MIME)-type configurations. •virtualhosts.xml包含虚拟主机和多用途Internet邮件扩展(MIME)类型配置。

• variables.xml Contains cell level WebSphere variables •variables.xml包含单元级WebSphere变量

• wimconfig.xml Contains the federated repository configurations for global security /config/cells//wim/config/ •wimconfig.xml包含全局安全性/配置/单元的联合存储库配置// wim / config /

NODE-scope NODE-范围

• namestore.xml Provides persistent JNDI namespace binding data •namestore.xml提供持久性JNDI名称空间绑定数据

• resources.xml Defines node scope environmental resources, including JDBC, JMS, JavaMail, URL end point configuration, and so on •resources.xml定义节点范围环境资源,包括JDBC,JMS,JavaMail,URL端点配置等

• serverindex.xml Specifies all the ports used by servers on this node •serverindex.xml指定此节点上的服务器使用的所有端口

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

SERVER-scope SERVER-范围

• resources.xml Contains the configuration of resources, such as, JDBC, JMS, JavaMail, and URL end points at server scope •resources.xml包含服务器范围内的资源配置,例如JDBC,JMS,JavaMail和URL端点

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

• variables.xml Contains server level variables •variables.xml包含服务器级变量

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM