layout | title | category | item | version | latest |
---|---|---|---|---|---|
default |
arcgis-workflow-manager cookbook |
cookbooks |
arcgis-workflow-manager |
5.1.0 |
true |
This cookbook installs and configures ArcGIS Workflow Manager Server.
- 10.9.1
- 11.0
- 11.1
- 11.2
- 11.3
- 11.4
- ArcGIS Workflow Manager Server
- Microsoft Windows Server 2019 Standard and Datacenter
- Microsoft Windows Server 2022 Standard and Datacenter
- Ubuntu Server 20.04 LTS
- Ubuntu Server 22.04 LTS
- Ubuntu Server 24.04 LTS
- Red Hat Enterprise Linux Server 8
- Red Hat Enterprise Linux Server 9
- SUSE Linux Enterprise Server 15
- Oracle Linux 8
- Oracle Linux 9
- Rocky Linux 8
- Rocky Linux 9
- AlmaLinux 9
The following cookbooks are required:
- arcgis-enterprise
- arcgis-repository
node['arcgis']['workflow_manager_server']['setup_archive']
= Path to the ArcGIS Workflow Manager Server setup archive. Default value depends on thenode['arcgis']['version']
attribute value.node['arcgis']['workflow_manager_server']['setup']
= The location of the ArcGIS Workflow Manager Server setup executable. Default location is%USERPROFILE%\Documents\ArcGIS11.4\WorkflowManagerServer\Setup.exe
on Windows and/opt/arcgis/10.9/WorkflowManagerServer/Setup.sh
on Linux.node['arcgis']['workflow_manager_server']['authorization_file']
= ArcGIS Workflow Manager Server authorization file path. Default value is set to the value ofnode['arcgis']['server']['authorization_file']
node['arcgis']['workflow_manager_server']['authorization_file_version']
= ArcGIS Workflow Manager Server authorization file version. Default value isnode['arcgis']['server']['authorization_file_version']
.node['arcgis']['workflow_manager_server']['authorization_options']
= Additional ArcGIS Workflow Manager Server software authorization command line options. Default options are''
.node['arcgis']['workflow_manager_server']['ports']
= Ports used by ArcGIS Workflow Manager Server. Default ports are9820,9830,9840,9880,13443,13820,13830,13840
.node['arcgis']['workflow_manager_server']['patches]
= File names of ArcGIS Workflow Manager Server patches to install. Default value is[]
.node['arcgis']['workflow_manager_server']['distributed_data_provider]
= If set totrue
, distributed data provider module is enabled. Default value isfalse
.
Calls the arcgis-workflow-manager::server recipe.
Federates ArcGIS Workflow Manager Server with an ArcGIS Enterprise portal and enables the Workflow Manager Server function.
Attributes used by the recipe:
{
"arcgis": {
"portal": {
"private_url": "https://portal.domain.com:7443/arcgis",
"admin_username": "admin",
"admin_password": "changeit",
"root_cert": "",
"root_cert_alias": ""
},
"server": {
"web_context_url": "https://domain.com/server",
"private_url": "https://domain.com:6443/arcgis",
"admin_username": "admin",
"admin_password": "changeit",
"is_hosting": true
}
},
"run_list": [
"recipe[arcgis-workflow-manager::federation]"
]
}
Installs ArcGIS Workflow Manager Server.
Attributes used by the recipe:
{
"arcgis": {
"version": "11.4",
"run_as_user": "arcgis",
"run_as_password": "<password>",
"configure_windows_firewall": true,
"repository": {
"setups": "C:\\Software\\Setups"
},
"server": {
"install_dir": "C:\\Program Files\\ArcGIS\\Server",
"install_system_requirements": true
},
"workflow_manager_server": {
"setup_archive": "C:\\Software\\Archives\\ArcGIS_Workflow_Manager_Server_113_190273.exe",
"setup": "C:\\Software\\Setups\\ArcGIS11.4\\WorkflowManagerServer\\Setup.exe",
"ports": "9830,9820,9840,9880,13443"
}
},
"run_list": [
"recipe[arcgis-workflow-manager::install_server]"
]
}
Installs patches for ArcGIS Workflow Manager Server. The recipe installs patches from the patches folder specified by the arcgis.notebook_server.patches attribute. The patch names may contain a wildcard '*'. For example, "ArcGIS-1091-*.msp" specifies all .msp patches that start with "ArcGIS-1091-".
Attributes used by the recipe:
{
"arcgis" : {
"repository" : {
"patches" : "%USERPROFILE%\\Software\\Esri\\patches"
},
"workflow_manager_server": {
"patches": ["patch1.msp", "patch2.msp"]
}
},
"run_list": [
"recipe[arcgis-workflow-manager::install_patches]"
]
}
Installs and authorizes ArcGIS Workflow Manager Server.
Attributes used by the recipe:
{
"arcgis": {
"version": "11.4",
"run_as_user": "arcgis",
"run_as_password": "<password>",
"configure_windows_firewall": true,
"repository": {
"setups": "C:\\Software\\Setups"
},
"server": {
"install_dir": "C:\\Program Files\\ArcGIS\\Server",
"install_system_requirements": true
},
"workflow_manager_server": {
"setup_archive": "C:\\Software\\Archives\\ArcGIS_Workflow_Manager_Server_113_190273.exe",
"setup": "C:\\Software\\Setups\\ArcGIS11.4\\WorkflowManagerServer\\Setup.exe",
"authorization_file": "C:\\Software\\AuthorizationFiles\\11.4\\Workflow_Manager_Server.prvc",
"authorization_file_version": "11.4",
"ports": "9830,9820,9840,9880,13443"
}
},
"run_list": [
"recipe[arcgis-workflow-manager::server]"
]
}
Uninstalls ArcGIS Workflow Manager Server.
{
"arcgis": {
"version": "11.4",
"run_as_user": "arcgis",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS\\Server"
}
},
"run_list": [
"recipe[arcgis-workflow-manager::uninstall_server]"
]
}