The initial environment used for a specific enterprise server region depends on the method you use to start it:
You can set environment variables for a specific enterprise server instance in Configuration Information on the Add Server or Edit Server page. These apply to all services that run in the server.
The format for environment variables is:
[ES-Environment] environment-variable-name=environment-variable-setting
Use a semi-colon to separate elements within the string. For example:
[ES-Environment] COBPATH=c:\adirectory;c:\anotherdirectory
Instead, if you want to specify the location of service programs at the region level, consider using the COBPATH environment variable. However, if you do this, you must also specify "$COBPATH" in Package Path in the Add Package or Edit Package page for services that should be located using COBPATH.
To use a defined environment variable in the value definition of another environment variable, precede the name of the defined variable with a dollar sign ($). For example:
FILEROOT=d:\data FILEA=$FILEROOT\mydata.dat
This resolves to d:\data\mydata.dat.
If you want to include a dollar sign in an environment variable value as part of the actual value and not as an indicator for a referenced environment variable, escape the dollar sign character by inserting a backslash (\) character. For example:
FILEA=\$\$fsserver1\mydata.dat
This resolves to $$fsserver1\mydata.dat
Because of the function of the backslash (\) character as an escape character, if you want the value of an environment variable to be a UNC path (e.g. \\server\volume\directory\filename), be sure that it starts with four backslash characters - \\\\server\volume\directory\filename - rather than two. Each pair of backslash characters resolves to a single character, yielding the correct two-character sequence as a final result.