The Progress Application Server for OpenEdge (PASOE) looks for files named <AnythingHere>_setenv.sh on Linux/UNIX systems and <AnythingHere>_setenv.bat on Windows systems which are located in the PASOE instances bin directory (<Instance>\bin) and executes them.
To set the SSLSYS_DEBUG_LOGGING environment variable simply create a file that follows the above naming convention in the <Instance>\bin directory which creates the environment variable. On Linux/UNIX systems the variable must be exported.
The following shows a sample for Windows. To use this simply save it under a name like debugging_setenv.bat in the <Instance>\bin directory:
@ECHO OFF
REM *-------------------------------------------*
REM * Name: debugging_setenv.bat *
REM * Desc: This Enables SSL Logging on Windows *
REM *-------------------------------------------*
SET SSLSYS_DEBUG_LOGGING=5
The following shows a sample for Linux/UNIX. To use this simply save it under a name like debugging_setenv.sh in the <Instance>\bin directory:
# *----------------------------------------------*
# * Name: debugging_setenv.sh *
# * Desc: This Enables SSL Logging on Linux/UNIX *
# *----------------------------------------------*
SSLSYS_DEBUG_LOGGING=5; export SSLSYS_DEBUG_LOGGING