.cshrc
file; Bourne/Korn shell users should modify their .profile
file.Note: You cannot perform the following steps while logged in as a "superuser"-superusers do not have environment variables.
SAPPHIRE
to the directory in which Sapphire/Web is installed:
setenv SAPPHIRE sapphire_home
$SAPPHIRE/bin
to your path:
set path=($SAPPHIRE/bin $path)
dsql
, in which Sapphire/Web will locate Data Objects. Type (do not add this command to your .cshrc
):
mkdir $HOME/dsql
DSQLDIR
to the directory in which Sapphire/Web will locate Data Objects:
setenv DSQLDIR $HOME/dsql
ORB_HOST
to the host running the Sapphire/Gateway daemon. If it is the same machine on which you will start the tool, this step may be skipped.
setenv ORB_HOST hostname
.cshrc
. Otherwise, type it in on the command line to launch Sapphire/Web:
$SAPPHIRE/bin/saweb &
SAPPHIRE
to the directory in which Sapphire/Web is installed:
SAPPHIRE=sapphire_home; export SAPPHIRE
$SAPPHIRE/bin
to your path:
PATH=$SAPPHIRE/bin:$PATH; export PATH
dsql
, in which Sapphire/Web will locate Data Objects. Type (do not add this command to your .profile
):
mkdir $HOME/dsql
DSQLDIR
to the directory in which Sapphire/Web will locate Data Objects:
DSQLDIR=$HOME/dsql; export DSQLDIR
ORB_HOST
to the host running the Sapphire/Gateway daemon. If it is the same machine on which you will start the tool, this step may be skipped.
ORB_HOST=hostname; export ORB_HOST
.profile
. Otherwise, type it in on the command line to launch Sapphire/Web:
$SAPPHIRE/bin/saweb &