85 lines
2.8 KiB
Bash
85 lines
2.8 KiB
Bash
#!/bin/sh
|
|
|
|
# WARNING: This file is created by the Configuration Wizard.
|
|
# Any changes to this script may be lost when adding extensions to this configuration.
|
|
|
|
# *************************************************************************
|
|
# This script is used to start WebLogic Server for the domain in the
|
|
# current working directory. This script simply sets the SERVER_NAME
|
|
# variable and starts server.
|
|
#
|
|
# To create your own start script for your domain, all you need to set is
|
|
# SERVER_NAME, then starts the server.
|
|
#
|
|
# Other variables that startWLS takes are:
|
|
#
|
|
# WLS_USER - cleartext user for server startup
|
|
# WLS_PW - cleartext password for server startup
|
|
# PRODUCTION_MODE - true for production mode servers, false for
|
|
# development mode
|
|
# JAVA_OPTIONS - Java command-line options for running the server. (These
|
|
# will be tagged on to the end of the JAVA_VM and MEM_ARGS)
|
|
# JAVA_VM - The java arg specifying the VM to run. (i.e. -server,
|
|
# -hotspot, etc.)
|
|
# MEM_ARGS - The variable to override the standard memory arguments
|
|
# passed to java
|
|
#
|
|
# For additional information, refer to the WebLogic Server Administration
|
|
# Console Online Help(/ConsoleHelp/startstop.html)
|
|
# *************************************************************************
|
|
|
|
# Initialize the common environment.
|
|
|
|
WL_HOME="/bea/bea92/weblogic92"
|
|
|
|
PRODUCTION_MODE="true"
|
|
|
|
JAVA_VENDOR="IBM"
|
|
|
|
JAVA_HOME="/bea/bea92/jdk150_12"
|
|
|
|
# Call commEnv here AFTER setting the java_vendor to get common environmental settings.
|
|
|
|
. ${WL_HOME}/common/bin/commEnv.sh
|
|
|
|
# Set SERVER_NAME to the name of the server you wish to start up.
|
|
|
|
SERVER_NAME="admin"
|
|
|
|
CLASSPATH="${WEBLOGIC_CLASSPATH}:${JAVA_HOME}/jre/lib/rt.jar:${WL_HOME}/server/lib/webservices.jar:${CLASSPATH}"
|
|
export CLASSPATH
|
|
|
|
#gnp settings begin
|
|
|
|
THIS_PATH=`dirname $0`
|
|
. /gnpapp/script/setEnv.sh
|
|
MEM_ARGS="-Xms32m -Xmx512m"
|
|
|
|
#log file
|
|
NOW=$(date '+%Y%m%d%H%M%S')
|
|
mv ${GNP_LOG_ADMINSERVER_FILE} ${GNP_LOG_ADMINSERVER_FILE}.$NOW
|
|
|
|
#gnp settings end
|
|
|
|
# Call WebLogic Server
|
|
|
|
echo "."
|
|
echo "CLASSPATH=${CLASSPATH}"
|
|
echo "."
|
|
echo "PATH=${PATH}"
|
|
echo "."
|
|
echo "***************************************************"
|
|
echo "* To start WebLogic Server, use a username and *"
|
|
echo "* password assigned to an admin-level user. For *"
|
|
echo "* server administration, use the WebLogic Server *"
|
|
echo "* console at http://[hostname]:[port]/console *"
|
|
echo "***************************************************"
|
|
|
|
nohup ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} \
|
|
-Dweblogic.Name=${SERVER_NAME} \
|
|
-Dweblogic.ProductionModeEnabled=${PRODUCTION_MODE} \
|
|
-Djava.security.policy="${WL_HOME}/server/lib/weblogic.policy" \
|
|
-Dweblogic.system.BootIdentityFile="${THIS_PATH}/BootIdentity.properties" \
|
|
weblogic.Server >> ${GNP_LOG_ADMINSERVER_FILE} 2>&1 &
|
|
|