34 lines
1.3 KiB
Bash
34 lines
1.3 KiB
Bash
# ---------------------------------------------------------
|
|
# -- This script file is an example of how to use sysinfo to get
|
|
# -- important system information
|
|
# --
|
|
# -- REQUIREMENTS:
|
|
# --
|
|
# -- This utility will report important system info about
|
|
# -- jar files which are in your classpath and the current setting of
|
|
# -- Derby Network Server parameters. Jar files which are not
|
|
# -- if your classpath will not be reported.
|
|
# -- The Derby Network Server must be running for this utility to work.
|
|
# --
|
|
# -- Check the setNetworkServerCP.ksh to see an example of adding the
|
|
# -- the Derby jars to your classpath.
|
|
# --
|
|
# --
|
|
# -- This file for use on Unix korn shell systems
|
|
# ---------------------------------------------------------
|
|
|
|
# DERBY_INSTALL=
|
|
|
|
[ -z "$CLASSPATH" ] && {
|
|
. "$DERBY_INSTALL"/frameworks/NetworkServer/bin/setNetworkServerCP.ksh
|
|
}
|
|
|
|
# ---------------------------------------------------------
|
|
# -- start sysinfo
|
|
# ---------------------------------------------------------
|
|
java org.apache.derby.drda.NetworkServerControl sysinfo $*
|
|
# ---------------------------------------------------------
|
|
# -- To use a different JVM with a different syntax, simply edit
|
|
# -- this file
|
|
# ---------------------------------------------------------
|