views:

128

answers:

1

Hello Stackoverflow'ers,

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

+1  A: 

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
bkail