Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are Websphere database configuration files saved?

When we create a configuration from Admin Console for database configuration, those details will be saved in resource.xml (i think).

What is path of the that configuration file?

like image 535
developer Avatar asked Sep 08 '11 16:09

developer


People also ask

Where can I find WebSphere configuration files?

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

Where the configuration files are stored in your application?

These config files are typically placed under separate root directory than the rest of application code. For example, in case of Java they are typically under src/main/resources .

What is the main configuration file in WebSphere Application Server?

The WebSphere Application Server configuration is stored in XML files under the appserver PROFILE/config directory.


1 Answers

Close, "resources.xml" is what you are looking for. If you are using a standalone Websphere instance, it is likely something close to this:

$WAS_HOME\profiles\PROFILE_NAME\config\cells\CELL_NAME\nodes\NODE_NAME\servers\SERVER_NAME\resources.xml

PROFILE_NAME, CELL_NAME, NODE_NAME, should all have your machine name in them by default. SERVER_NAME is configurable but I believe is 'server1' by default.

Sorry I could not be more definite, but it there are a lot of variables at play in websphere configurations.

like image 134
Terrell Plotzki Avatar answered Sep 23 '22 18:09

Terrell Plotzki