stopnetworkserver.ksh

来自「derby database source code.good for you.」· KSH 代码 · 共 62 行

KSH
62
字号
## ---------------------------------------------------------# -- This simple script is an example of how to shutdown Derby# -- running as a server inside the Network Server framework# --# -- REQUIREMENTS:# --     You must have the derby and Network Server jar files in your CLASSPATH# --# --  Check the setNetworkServerCP.ksh file for an example of# --   what to set.# --# -- This file for use on Unix ksh systems# ---------------------------------------------------------# ---------------------------------------------------------# -- shutdown Derby Network Server# ---------------------------------------------------------# DERBY_INSTALL=[ -z "$CLASSPATH" ] && {  . "$DERBY_INSTALL"/frameworks/NetworkServer/bin/setNetworkServerCP.ksh}if [ -z "$JAVA_HOME" ]then   JAVA_HOME=/usr/javafi# ---------------------------------------------------------# -- Determine the host and port to use by:# --  1. Check to see if the host and port are set on the command line# --  2. Check to see if DERBY_SERVER_HOST and DERBY_SERVER_PORT# --  3. Default to localhost/1527# ---------------------------------------------------------if [  "$1" ]then   DERBY_SERVER_HOST=$1fiif [ -z "$DERBY_SERVER_HOST" ]then   DERBY_SERVER_HOST=localhostfiif [  "$2" ]then   DERBY_SERVER_PORT=$2fiif [ -z "$DERBY_SERVER_PORT" ]then   DERBY_SERVER_PORT=1527fi$JAVA_HOME/bin/java org.apache.derby.drda.NetworkServerControl shutdown -h $DERBY_SERVER_HOST -p $DERBY_SERVER_PORT# ---------------------------------------------------------# -- To use a different JVM with a different syntax, simply edit# -- this file# ---------------------------------------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?