-
Notifications
You must be signed in to change notification settings - Fork 121
arcgis‐geoevent Cookbook Recipes
arcgis-geoevent cookbook is used to install and configure ArcGIS GeoEvent 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.
Installs and configures ArcGIS GeoEvent Server.
Attributes used by the recipe:
{
"arcgis": {
"version": "10.9",
"run_as_user": "arcgis",
"run_as_password": "Pa$$w0rdPa$$w0rd",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS",
},
"geoevent": {
"setup": "C:\\ArcGIS\\10.9\\GeoEvent\\Setup.exe",
"authorization_file": "C:\\ArcGIS\\10.9\\Authorization_Files\\GeoEvent.prvc",
"authorization_file_version": "10.9"
}
},
"run_list": [
"recipe[arcgis-geoevent]"
]
}Installs language pack for ArcGIS GeoEvent Server.
Attributes used by the recipe:
{
"arcgis": {
"version": "10.9",
"geoevent": {
"lp-setup": "C:\\ArcGIS\\10.9\\GeoEvent\\Japanese\\Setup.exe"
}
},
"run_list":[
"recipe[arcgis-geoevent::lp-install]"
]
}Uninstalls ArcGIS GeoEvent Server.
Attributes used by the recipe:
{
"arcgis": {
"version": "10.9",
"run_as_user": "arcgis",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS"
}
},
"run_list":[
"recipe[arcgis-geoevent::uninstall]"
]
}❕ run_as_user and install_dir attributes are ignored on windows.