Where are websphere database configuration files saved?

When we create the configuration from the Administration Console to configure the database, this data will be saved in the resource.xml file (I think).

What is the path to this configuration file?

+4
source share
2 answers

Close, "resources.xml" is what you are looking for. If you are using a standalone instance of Websphere, there is probably 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, must have the machine name in them by default. SERVER_NAME is configurable, but I believe that the default is "server1".

Sorry, I could not be more specific, but there are many variables in websphere settings.

+8
source

In addition to the previous answer, remember that resources.xml exists at each of the three configuration levels: the cell level, the node level, and the server level. A database connection can be defined at all of these levels according to your design:

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

All Articles