https://docs.oracle.com/cd/E13203_01/tuxedo/tux81/rfcm/rfcmd29.htm#1032112:~:text=When%20a%20server,use%20LIBPATH.

 

Section 1 - Commands

If a server cannot be started, a diagnostic is written on the central event log (and to the standard output, unless -q is specified), and tmboot continues—except that if the failing process is a BBL, servers that depend on that BBL are silently ignored.

docs.oracle.com

 

When a server is booted, the variables TUXDIR, TUXCONFIG, TUXOFFSET, and APPDIR, with values specified in the configuration file for that machine, are placed in the environment. The environment variable LD_LIBRARY_PATH is also placed in the environment of all servers. Its value defaults to $APPDIR:$TUXDIR/lib:/lib:/usr/lib:lib where lib is the value of the first LD_LIBRARY_PATH= line appearing in the machine ENVFILE. See UBBCONFIG(5) for a description of the syntax and use of the ENVFILE. Some UNIX systems require different environment variables: for HP-UX systems, use the SHLIB_PATH environment variable; for AIX, use LIBPATH.

 

 

AIX 6.1

#       Copyright (c) 2014 Oracle, Inc.

#       All rights reserved
#
#       THIS IS UNPUBLISHED PROPRIETARY
#       SOURCE CODE OF ORACLE, Inc.
#       The copyright notice above does not
#       evidence any actual or intended
#       publication of such source code.
#
TUXDIR=/ofm/jwchoi/sw2/tp/tuxedo12.2.2.0.0; export TUXDIR
TUXCONFIG=/ofm/jwchoi/sw2/tp/tuxedo12.2.2.0.0/samples/atmi/simpapp/tuxconfig; export TUXCONFIG
ULOGPFX=/ofm/jwchoi/sw2/tp/tuxedo12.2.2.0.0/samples/atmi/simpapp/logs/ULOG; export ULOGPFX

TM_SHUTDOWNTIMEOUT=31; export TM_SHUTDOWNTIMEOUT
#TM_KILL_WITH_BBLOCK=Y; export TM_KILL_WITH_BBLOCK
#TM_SVCTIMEOUT_SIGTERM=YES; export TM_SVCTIMEOUT_SIGTERM
TMULOGUSINGSERVICENAME=YES; export TMULOGUSINGSERVICENAME
TMNOTHREAD=YES; export TMNOTHREAD
#TM_NOALOG=YES; export TM_NOALOG

JAVA_HOME=/usr/java8_64/jre; export JAVA_HOME

JVMLIBS=$JAVA_HOME/lib/ppc64/classic:$JAVA_HOME/lib/ppc64:$JAVA_HOME/bin export JVMLIBS
PATH=$TUXDIR/bin:$JAVA_HOME/bin:$PATH; export PATH
COBCPY=:$TUXDIR/cobinclude; export COBCPY
COBOPT="-C ANS85 -C ALIGN=8 -C NOIBMCOMP -C TRUNC=ANSI -C OSEXT=cbl"; export COBOPT
SHLIB_PATH=$TUXDIR/lib:$JVMLIBS:$SHLIB_PATH; export SHLIB_PATH
LIBPATH=$TUXDIR/lib:$JVMLIBS:$LIBPATH; export LIBPATH
LD_LIBRARY_PATH=$TUXDIR/lib:$JVMLIBS:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH
WEBJAVADIR=$TUXDIR/udataobj/webgui/java; export WEBJAVADIR
LLE_DEPRECATION_WARN_LEVEL=NONE; export LLE_DEPRECATION_WARN_LEVEL

 

+ Recent posts