Skip to content

arcgis‐geoevent Cookbook Recipes

Pavel Bobov edited this page Aug 10, 2016 · 9 revisions

arcgis-geoevent cookbook is used to install and configure ArcGIS GeoEvent Extension for Server.

Brief descriptions of arcgis-geoevent cookbook recipes along with cookbook attributes are available at README.md. This page provides more detailed descriptions of the recipes and specifies attributes used by each recipe.

Some cookbook attributes are not used directly by the recipes but used to set the default values for other attributes. For example, node['arcgis']['version'] attribute affects default values of node['arcgis']['...']['product_code'] attributes.

default

Installs and configures ArcGIS GeoEvent Extension for Server.

Attributes used by the recipe:

{
  "arcgis": {
    "version": "10.4",
    "run_as_user": "arcgis",
    "run_as_password": "Pa$$w0rdPa$$w0rd",
    "server": {
      "install_dir": "C:\\Program Files (x86)\\ArcGIS",
    },
    "geoevent": {
      "setup": "C:\\ArcGIS\\10.4\\GeoEvent\\Setup.exe",
      "authorization_file": "C:\\ArcGIS\\10.4\\Authorization_Files\\GeoEvent.prvc",
      "authorization_file_version": "10.4"
    }
  },
  "run_list": [
    "recipe[arcgis-geoevent]"
  ]
}

lp-install

Installs language pack for ArcGIS GeoEvent Extension for Server..

Attributes used by the recipe:

{
  "arcgis": {
    "version": "10.4",
    "geoevent": {
      "lp-setup": "C:\\ArcGIS\\10.4\\GeoEvent\\Japanese\\Setup.exe"
    }
  },
  "run_list":[
    "recipe[arcgis-geoevent::lp-install]"
  ]
}

uninstall

Uninstalls ArcGIS GeoEvent Extension for Server.

Attributes used by the recipe:

{
  "arcgis": {
    "version": "10.4",
    "run_as_user": "arcgis",
    "server": {
      "install_dir": "C:\\Program Files (x86)\\ArcGIS"
    }
  },
  "run_list":[
    "recipe[arcgis-geoevent::uninstall]"
  ]
}

❕ run_as_user and install_dir attributes are ignored on windows.

Clone this wiki locally