# arcgis-enterprise-sdk **Repository Path**: loveYL/arcgis-enterprise-sdk ## Basic Information - **Project Name**: arcgis-enterprise-sdk - **Description**: arcgis-enterprise-sdk的帮助文档 - **Primary Language**: HTML - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-04 - **Last Updated**: 2025-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Using the ArcGIS Enterprise Help Documentation Locally The ArcGIS Enterprise SDK local help documentation (`arcgis-enterprise-sdk-doc.zip\arcgis-enterprise-sdk`) must be hosted on a web server. You cannot access the ArcGIS Enterprise SDK documentation over a `file://` URL. ## Windows with IIS 1. Open `Control Panel` 2. Navigate to `Programs ->Programs and Features -> Turn Windows features on or off` > Note: You need admin privilege to do the following steps. 3. Check the **Internet Information Services** or **IIS** feature. This option may look different on different operating systems. You only need to check the top **IIS** checkbox. By default, the required features underneath it will be checked and installed automatically. 4. Extract the `arcgis-enterprise-sdk-doc.zip` file to `C:\inetpub\wwwroot\`. The `wwwroot` folder is automatically generated when you turn on IIS. The extracted files should look like this: `C:\inetpub\wwwroot\arcgis-enterprise-sdk`. 5. You should be able to access the documentation at http://localhost/arcgis-enterprise-sdk/. It's recommended that you use the latest versions of Chrome or Firefox to access the above link. ## Linux with Apache 1. Log in as `root` user and install Apache with `sudo apt-get install apache2` (Ubuntu) or `sudo yum install httpd` (CentOs/Redhat). > Note: Type `y` when it prompts `Is this ok [y/d/N]`. After the installation is finished, you can use `rpm -q httpd` to confirm if Apache is installed successfully. 2. Start Apache with `service apache2 start` (Ubuntu) or `service httpd start` (CentOs/Redhat). 3. Visit http://localhost:80. You should see a basic web page. 4. Extract the `arcgis-enterprise-sdk-doc.zip` file to `/var/www/html` by using `unzip arcgis-enterprise-sdk-doc.zip -d /var/www/html`. The extracted files should look like this: `/var/www/html/arcgis-enterprise-sdk`. 5. You should be able to view the documentation at http://localhost:80/arcgis-enterprise-sdk/. It's recommended that you use the latest versions of Chrome or Firefox to access the above link. ## With XAMPP 1. [Install XAMPP](https://www.apachefriends.org/index.html). 2. Open XAMPP and click **Start**. 3. Wait for XAMPP to start then go to **Volumes** and mount the default volume. 4. Click **Explore** to open the volume. 5. Extract the `arcgis-enterprise-sdk-doc.zip` file to the `htdocs` folder. 6. You should be able to access the documentation at `{XAMPP_URL}/arcgis-enterprise-sdk/`. ## With Node JS 1. [Install NodeJS](https://nodejs.org/en/). 2. Install http-server by using `npm i -g http-server`. 3. Run `http-server . -o /arcgis-enterprise-sdk/`.