Last updated 6/21/02
|
Back
****************************************
ArcIMS Installation Log
****************************************
Patrick J. Barabe
Advanced Resource Technology Group
School of Renewable Natural Resources
The University of Arizona
****************************************
INFO:
NOTE: this procedure was adapted from that posted by Bart
Adriaanse on the ESRI ArcIMS Product Discussion Conference
SOFTWARE USED:
OS: | MS Windows 2000 Server |
Web: | Apache v 2.0 |
Servlet: | Tomcat 4.01 |
IMS: | ESRI ArcIMS 4.0 |
STEPS:
I. Install Java J2SDK 1.4.0
II. Install Apache 2.0.35
III. Install Jakarta-Tomcat 4.01
IV. Install/Configure ESRI ArcIMS 4.0
V. Configure Tomcat for ArcIMS
VI. Configure Apache for ArcIMS
NOTE: Since I had previously installed ArcIMS 3.1, I had already performed
Steps I, II, and III. However, after a rough go of it the 1st time
around, I opted to unintall/reinstall Tomcat. The other preparation
for installing ArcIMS 4.0 were 1) to uninstall ArcIMS 3.1. From that
point I proceded with STEP IV.
STEP I - Install J2SDK 1.4.0 w/ J2RE
- That's all!
STEP II - Install Apache as a service
- Choose default settings
- Reboot
- Verify Apache is running by noting the presence of its default web page:
http://myhost.mydomain.edu/
or simply
http://localhost/
STEP III - Install Tomcat
- Choose default options and install as an "NT Service"
- Reboot
- Verify Tomcat is running by noting the presence of its default web page:
http://myhost.mydomain.edu:8080/
or simply
http://localhost:8080/
STEP IV - Intall ArcIMS
- Choose to do a Custom Installation
- Select Custom for Manager
- Choose Manager Applications
- Select Application Server
- Select Custom for Application Server Connectors
- Choose Servlet Connector
- Choose Java Connector
- Select Custom for Samples
- Choose Tutorial Data
- Choose Sample HTML & Java Viewers
- Choose Sample Java & JSP Applications
- Select Custom for Documentation
- Choose ArcXML Guide
- Choose Customizing HTML Viewer
- Choose Customizing Java Viewer
- Choose Customizing AppServerLink
- JRE:
- Browse to JRE w/in J2SDK 1.4
- Host Name:
- Protocol:
http
- Host:
myhost.mydomain.com:8080
- Web Site Working Directory:
c:\ArcIMS
- User's Working Directory:
c:\ArcIMS\AXL
- Application Server Information:
- Host Name:
myhost
- Registry Port:
5353
- Connector Port:
5300
- Servlet Connector Directory:
C:\Program Files\Apache Tomcat 4.0\classes
- Provide an administrative user/password
- Install
STEP V - Configure Tomcat
- Open %Tomcat Install Dir%\conf\server.xml in a text editor
- Add to Context section:
<!-- ArcIMS Context using default directories -->
<Context path="/Website" docBase="c:/ArcIMS/Website" debug="0"/>
<Context path="/output" docBase="c:/ArcIMS/Output" debug="0"/>
<!-- Next line makes ArcIMS Administrator available at the URL http://myhost.mydomain.com/ArcIMSAdmin/ -->
<Context path="/ArcIMSAdmin" docBase="c:/ArcIMS/Output" debug="0" />
- Edit %ArcIMS Install Dir%\common\wrapper.properties to match local
paths for Tomcat & Java installations. Save this file as %Tomcat Install Dir%\conf\wrapper.properties
- Open %ArcIMS%/Administrator/esriadmin/default.htm and change the line
that reads var hostName = document.location.host;
to var hostName = "myhost.mydomain.com";
- Restart ArcIMS, Tomcat, & Apache
STEP VI - Configure Apache
- Open %ArcIMS install dir%\Common\ApacheAlias.txt, copy & paste contents
to the Alias section of %Apache Install Dir%\conf\httpd.conf
|