These installation notes provide installation instructions for Borland® Gauntlet™ 2007 for both Windows and Linux.
For more information on this release, see the Readme.htm. The default location is Borland\Gauntlet2007.
| Contents | ||
|---|---|---|
| Windows Installation Instructions | ||
| Linux Installation Instructions | ||
During the installation, you will be prompted for the following:
Gauntlet2007.exe to start the installation wizard.During the installation, you will be prompted for the following:
java -cp Gauntlet2007.jar install to start the installation wizard.You can invoke the Linux installation in console mode by typing the following:
java -cp install_linux.jar install -i console
This mode allows you to interact with the installer without requiring any UI capability on the Linux machine.
You can create a script that adds Gauntlet as a service that starts each time a Linux system restarts. Following is a sample script showing how you do this. This would be the content of a file called /etc/init.d/gauntlet.
#!/bin/sh
#
# gauntlet Startup script for the Borland Gauntlet
#
# next two lines are for chkconfig
#
# chkconfig: - 99 1
# description: Borland Gauntlet 2007 server
#
# Source function library.
. /etc/rc.d/init.d/functions
# IMPORTANT: set these to values in your installation
GAUNTLET_HOME=/home/username/install/gauntlet_home
# IMPORTANT: set these to values in your installation
GAUNTLET_USER=username
start() {
echo "Starting Borland Gauntlet at $GAUNTLET_HOME as $GAUNTLET_USER"
su -l $GAUNTLET_USER -c $GAUNTLET_HOME/bin/startstack
RETVAL=$?
}
stop() {
echo "Stopping Borland Gauntlet at $GAUNTLET_HOME as $GAUNTLET_USER"
su -l $GAUNTLET_USER -c $GAUNTLET_HOME/bin/stopstack
RETVAL=$?
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
*)
echo "Usage: gauntlet {start|stop)"
exit 1
esac
exit $RETVAL
Once you copy the file to /etc/init.d/gauntlet, you can do the following (as root):
# chkconfig --add gauntlet # chkconfig gauntlet on