Installing Enterprise in a Non-Internet Environment

<< Click to Display Table of Contents >>

Navigation:  Enterprise > Installation and Configuration > New Installation >

Installing Enterprise in a Non-Internet Environment

This article describes installing Enterprise 7 in a non-internet environment.

 

Install EQuIS Enterprise 7 using the package or the installer. DO NOT use the pre-compiled build. That will not provide access to the Default.aspx file, which needs to be modified in a later step.

 

Follow these post-deployment steps for Enterprise 7 to get the application to run in a non-Internet-connected environment:

 

Esri JavaScript API

 

The Esri JavaScript API is a required dependency of Enterprise 7, and needs to be loaded for the application to run correctly. Mapping widgets and capabilities will still not work correctly without an internet connection, since these features require basemaps hosted by Esri.

 

To download and configure the Esri JavaScript API, follow Esri instructions here: https://developers.arcgis.com/javascript/latest/guide/get-api/#download-api.

 

Once downloaded, view the arcgis_js_api/library/downloads/install-windows/index.html file for detailed deployment instructions. The Test the Install step provides a URL for the Esri JavaScript API that will be needed for modifying the Default.aspx file.

 

Modify EQuIS Enterprise

 

1.Modify the <script> tag around Line 200 of the /Enterprise7/Default.aspx file, and change the src attribute of the tag to the Esri JavaScript API URL for the local deployment.

Example: Change <script src="https://js.arcgis.com/4.16/"></script> to <src="http://localhost/arcgis_js_api/library/4.16/dojo/dojo.js"></script>

 

2.Modify the <link> tag around Line 201 of the /Enterprise7/Default.aspx file and change the href attribute of the tag to Esri JavaScript API CSS for the local deployment.

Example: Change <link rel="stylesheet" href="https://js.arcgis.com/4.16/esri/css/main.css"> to <link rel="stylesheet" href="http://localhost/arcgis_js_api/library/4.16/esri/css/main.css">