#!/bin/sh ## Startup script for Forms Server ## Refer to Install Doc for more detail on each of these environment variables if [ "$1" ] then case $1 in start) action=$1 ;; stop) action=$1 ;; *) echo "`basename $0`: incorrect action specified" echo "Usage: `basename $0` { start | stop } " exit 1 esac shift else echo "`basename $0`: no action specified" echo "Usage: `basename $0` { start | stop } " exit 1 fi ORACLE_HOME=/appl/b/oracle/product/dev6000i; export ORACLE_HOME ## If you need more than one directory in your path, all directories should be ## separated by ':' PATH=$ORACLE_HOME/bin:"$PATH"; export PATH LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/openwin/lib:/usr/dt/lib:$ORACLE_HOME/network/jre11/lib/sparc/native_threads; export LD_LIBRARY_PATH ## You may need to set TWO_TASK or ORACLE_SID to connect to database #TWO_TASK=d08; export TWO_TASK ORACLE_SID=; export ORACLE_SID TNS_ADMIN=/var/opt/oracle;export TNS_ADMIN FORMS60_WEB_CONFIG_FILE=/appl/b/oracle/product/dev6000i/forms/pinnweb.cfg; export FORMS60_WEB_CONFIG_FILE ## setting for Forms runtime # Forms Server looks in FORMS60_PATH for Forms to run FORMS60_PATH=/appl/b/pinnacle/dev:$ORACLE_HOME/forms60:"$FORMS60_PATH"; export FORMS60_PATH FORMS60_OUTPUT=$ORACLE_HOME/tools/web60/temp; export FORMS60_OUTPUT FORMS60_MAPPING=http://glade.stortek.com:7777/dev60temp; export FORMS60_MAPPING FORMS60_REPFORMAT=html; export FORMS60_REPFORMAT ## settings for Forms SSL mode # If you're using the Forms Server in SSL (https) mode, uncomment # the line starting with FORMS60_WALLET by removing the pound sign. # Then replace the string with the # name of the directory where you stored the wallet you created # with Oracle Wallet Manager #FORMS60_WALLET=; export FORMS60_WALLET # This setting affects the domestic (United States) version of the Forms Server # when it is run in SSL (https) mode. If FORMS60_HTTPS_NEGOTIATE_DOWN # is true, the domestic version of the Forms Server will allow clients # with export level security to connect. If FORMS60_HTTPS_NEGOTIATE_DOWN # is false, the domestic Forms server will refuse connections from # client with export level security. The default is false. # The setting has no effect on the export version of Forms Server. #FORMS60_HTTPS_NEGOTIATE_DOWN=false; export FORMS60_HTTPS_NEGOTIATE_DOWN echo "\nStopping Forms Server processes on port 9001" echodo f60ctl stop port=9001 log=/appl/b/pinnacle/dev/log/server_pinnacle.log mode=socket $* if [ "$action" = "start" ] then echo "\nStarting Forms Server processes on port 9001" echodo f60ctl start port=9001 exe=f60webm_pinnacle log=/appl/b/pinnacle/dev/log/server_pinnacle.log mode=socket $* fi