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 JAGUAR=eas-home
    set PATH=%JAGUAR%\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 3-1 for LIB_PATH:

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

    If running on Solaris, using a version 4.x CC compiler:

    setenv JAGUAR eas-home
    setenv LD_LIBRARY_PATH \
    $JAGUAR/lib_sol4x:$LD_LIBRARY_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 3-1 for LIB_PATH:

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

    If running on Solaris, using a version 4.x CC compiler:

    JAGUAR=eas-home export JAGUAR
    LD_LIBRARY_PATH=$JAGUAR/lib_sol4x:$LD_LIBRARY_PATH export LD_LIBRARY_PATH