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 | ||
Important! Turn off all anti-virus software before you install Gauntlet.
During the installation, you will be prompted for the following:
Note: You must have a JDK to run the Gauntlet installer.
During the installation, you will be prompted for the following:
Gauntlet2007.exe to start the installation wizard.Do one of the following:
Important! Turn off all anti-virus software before you install Gauntlet.
During the installation, you will be prompted for the following:
Note: You must have a JDK to run the Gauntlet installer.
During the installation, you will be prompted for the following:
java -jar Gauntlet2007.jar to start the graphical installation wizard in X windows.You can invoke the Linux installation in console mode by typing the following:
java -jar Gauntlet2007.jar -i console
This mode allows you to interact with the installer without requiring any UI capability on the Linux machine.
Enter the Gauntlet URL in the Address field of your browser.
The URL is in the format
http://{your machine's hostname}:{port}/gauntlet/dashboard
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