Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
iServer
AOL Gateway
Apache Gateway
ISAPI Gateway
NSAPI Gateway
CGI Gateway
Java Gateway
Add-ons
How To
Change Log
Future Plans
Knowledge Base
Documentation
Samples
Sales
Legal
Feedback
|
Select the platform to install iServer under:
Windows 9x/NT
Linux/Unix
Use the following instructions to install iServer on Windows 9x/NT.
- Install Java JDK version 1.1.x or later. Then follow JavaSoft's
instructions for installing the Java JDK.
- Unzip downloaded file(s). Then follow instructions for extracting
files from a zip file using folder names. Normally extract to c:\
- Using iws_path\install\win32\vars.bat as a template,
define the following environmental variables in c:\autoexec.bat file.
set JAVA_EXE = java_path\bin\java.exe
set CLASSPATH = iws_path\classes;
iws_path\classes\iws.jar;
iws_path\classes\servlet.jar;
iws_path\servlets;
iws_path\samples\servlets;
%CLASSPATH%
set PATH = iws_path\bin\win32;%PATH%
iws_path
|
the directory where the iServer was installed,
normally c:\iws.
|
java_path
|
the base directory where Java was installed.
|
- Restart the computer.
top of page
Use the following instructions to install iServer on Linux/Unix.
- Install Java JDK version 1.1.x or later. Then follow JavaSoft's
instructions for installing the Java JDK.
- Login on account where iServer will be installed.
- Unzip the downloaded file(s).
gzip -d filename
- Untar the resultant file(s).
tar -xvpf filename
- Make executables, as needed.
cd /iws/bin/linux
./makeiws
- Using iws_path/install/linux/iws.sh as a template, define
the following environmental variables in the user's login script.
export JAVA_EXE = "java_path/bin/java"
export CLASSPATH = "iws_path/classes:
iws_path/classes/iws.jar:
iws_path/classes/servlet.jar:
iws_path/servlets:
iws_path/samples/servlets:
${CLASSPATH}"
export PATH = "iws_path/bin/linux:${PATH}"
iws_path
|
the directory where the iServer was installed,
normally /iws.
|
java_path
|
the base directory where Java was installed.
|
- Logout and log back in.
|
|