Consultor Eletrônico



Kbase P73783: Which is the default location of Admin Server log ?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   31/03/2011
Status: Verified

GOAL:

Which is the default location of Admin Server log ?

GOAL:

Which is the default location of admserv.log ?

GOAL:

Which is the default location of cmdplugin.log?

GOAL:

Which is the default location of admclnt.log?

GOAL:

Which is the default location of Fathom1.FathomAdminserver1.log?

FACT(s) (Environment):

Windows
OpenEdge 10.x
Progress 9.X
UNIX

FIX:

By default the admserv.log and log files associated with the Adminservice are located in the working directory.
The working directory is located at $WRKDIR if you defined and exported the OS environment variable WRKDIR.
In case you don't have WRKDIR defined then the $DLC/bin/proadsv script should contain the default value for the working directory, tailored during the installation of the product.

This is an excerpt of an example proadsv script:

# Set the user working directory - this is a tailored value
for what_wrkdir in "$WRKDIR" "/usr/wrk" "."
do
[ ! -d "${what_wrkdir}" ] && continue
WRKDIR=$what_wrkdir
export WRKDIR
break
done

The possible location for the working directory can be $WRKDIR (if defined) or /usr/wrk or the current directory ("."). The script will assign the working directory to first valid directory in the list $WRKDIR, /usr/wrk or the current directory if otherwise.