在哪里可以找到 WebSphere 配置文件?
我想知道WebSphere 配置详细信息保存在哪里?
具体来说,是在管理控制台(来自 Web)或使用 wsadmin 的控制台中显示的配置详细信息。
一些例子是:
- Java 和流程管理:类 加载程序、流程定义、流程 执行
- 容器设置: 会话管理、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:
- Java and Process Management: Class
loader, Process definition, Process
execution - Container Settings:
Session management, SIP Container
Settings, Web Container Settings,
Portlet Container Settings
Are there XML files that persist these configuration details?
Nicholas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WebSphere Application Server 配置数据以 XMI 格式存储在概要文件配置存储库中。
您引用的设置存储在
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
除了 server.xml @ ${PROFILE_HOME}/config/cells/${CELL}/nodes/${NODE}/servers/${SERVER}/server.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:
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