Verify your environment

Before running the tutorial, verify these environment settings:

StepsConfiguring the Windows environment

  1. To configure the command line where you are running the tutorials, run these commands, substituting your EAServer installation location for eas-home:

    set DJC_HOME=eas-home
    set PATH=%DJC_HOME%\dll;%PATH%
    

    You can also edit these variables in the System dialog for the Windows Control Panel, or create a batch file to configure the settings.

StepsConfiguring the UNIX environment for C shell

  1. To configure the C shell session where you are running the tutorials, run these commands, substituting your EAServer installation location for eas-home, and the shared-library variable from Table 10-1 for LIB_PATH:

    setenv DJC_HOME eas-home
    setenv LIB_PATH $DJC_HOME/lib:$LIB_PATH
    

StepsConfiguring the UNIX environment for Bourne shell

  1. To configure the Bourne shell session where you are running the tutorials, run these commands, substituting your EAServer installation location for eas-home, and the shared-library variable from Table 10-1 for LIB_PATH:

    DJC_HOME=eas-home export DJC_HOME
    LIB_PATH=$DJC_HOME/lib:$LIB_PATH export LIB_PATH