Borland® Gauntlet™ 2007 Installation Notes
Version 1.0

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

Windows Installation Instructions

During the installation, you will be prompted for the following:

Installing Gauntlet

  1. Go to the directory where you extracted the download file.
  2. Click Gauntlet2007.exe to start the installation wizard.
  3. Follow the instructions in the installation wizard to complete the Gauntlet installation.

Uninstallation Instructions

  1. Choose Start > Control Panel > Add or Remove Programs.
  2. Select Borland Gauntlet 2007.
  3. Click Remove to uninstall Gauntlet.

Top

Linux Installation Instructions

During the installation, you will be prompted for the following:

Installing Gauntlet

  1. Open a UNIX shell.
  2. Change to the linux directory in the directory where you extracted the download file.
  3. Type java -cp Gauntlet2007.jar install to start the installation wizard.
  4. Follow the instructions in the installation wizard to complete the Gauntlet installation.

Console Installation Instructions

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.

Running Gauntlet as a UNIX Service

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

Uninstallation Instructions

  1. Stop the stack.
  2. Delete the Gauntlet2007 directory.

Top

Copyright © 2006 Borland Software Corporation. All Borland brand and product names are trademarks or registered trademarks of Borland Software Corporation in the United States and other countries. All other marks are the property of their respective owners.