Variables
WebSphere variables are name and value pairs that are used to provide settings for any of the string data type attributes contained in one of the XML formatted configuration files that reside in the product repository. WebSphere variables are used to configure:
- WAS path names, such as JAVA_HOME, and APP_INSTALL_ROOT.
- Certain cell-wide or cluster-wide customization values.
Each variable has a scope. A scope is the range of locations in the WebSphere Application Server network where the variable is applicable.
- A variable with a cell-wide scope is available across the entire deployment manager cell.
- A variable with a cluster-wide scope is available across the entire cluster in the cell.
- A variable with a node-level scope is available only on the node and the servers on that node. If a node-level variable has the same name as a cell-wide variable, the node-level variable value takes precedence.
- A server variable is available only on the one server process. A server variable takes precedence over a variable with the same name that is defined at a higher level.
You can also use variables in configuration values such as file system path settings. Use the following syntax to refer to a variable:
${variable_name}The value of a variable can contain a reference to another variable. The value of the variable is computed by substituting the value of the referenced variable recursively.
Variables are useful when concatenating two path variables when the specification does not accept the AND operator. For example, suppose that the following variables exist:
Variable name Variable value ROOT_DIR / HOME_DIR ${ROOT_DIR}home USER_DIR ${HOME_DIR}/myuserdir
The variable reference ${USER_DIR} resolves to the value /home/myuserdir.
Not all WebSphere components support the use of a variable that you can define using this function. Therefore, you should always run one of your applications to verify that your system is correctly using any variables that you define.
Related tasks
Configure WebSphere variables
Configure the IBM Toolbox for Java
Set up the application serving environment