First Commit - Source Code from Reply
This commit is contained in:
85
dbcmnpsrc/FE/domain/startAdmin.sh
Normal file
85
dbcmnpsrc/FE/domain/startAdmin.sh
Normal file
@@ -0,0 +1,85 @@
|
||||
#!/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/bea81sp3/weblogic81"
|
||||
|
||||
PRODUCTION_MODE="true"
|
||||
|
||||
JAVA_VENDOR="IBM"
|
||||
|
||||
JAVA_HOME="/usr/java14"
|
||||
|
||||
# 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"
|
||||
|
||||
#mnp settings begin
|
||||
|
||||
THIS_PATH=`dirname $0`
|
||||
. /mnpapp/script/setEnv.sh
|
||||
MEM_ARGS="-Xms32m -Xmx256m"
|
||||
|
||||
CLASSPATH="${WEBLOGIC_CLASSPATH}:${AXIS_CLASSPATH}${JAVA_HOME}/jre/lib/rt.jar:${WL_HOME}/server/lib/webservices.jar:${CLASSPATH}"
|
||||
export CLASSPATH
|
||||
|
||||
|
||||
#log file
|
||||
NOW=$(date '+%Y%m%d%H%M%S')
|
||||
mv ${MNP_LOG_ADMINSERVER_FILE} ${MNP_LOG_ADMINSERVER_FILE}.$NOW
|
||||
|
||||
#mnp 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 >> ${MNP_LOG_ADMINSERVER_FILE} 2>&1 &
|
||||
|
||||
Reference in New Issue
Block a user