Esri / arcgis-cookbook

Chef cookbooks for ArcGIS
Apache License 2.0
290 stars 115 forks source link

Webhooks may fail to start due to ArcGIS Data Store TCP ports 45671 and 45672 being blocked. #322

Closed cameronkroeker closed 1 year ago

cameronkroeker commented 1 year ago

During a fresh install of ArcGIS Data Store (relational) 11.0 or upgrade to 11.0, webhooks may fail to start due to ports being blocked.

The following ports should be added to the default node['arcgis']['data_store']['ports'] default attribute list:

45671 and 45672 (TCP)—To use webhooks, you must open these ports on the relational data store machines to allow communication with the ArcGIS GIS Server where the feature services configured to use webhooks are running.

Workaround: Define attribute node['arcgis']['data_store']['ports'] in your json config file with the specified ports, as this will override the default values. For example:

{
"arcgis": {
   "version": "11.0",
   "data_store": {
      "ports": "2443,4369,9220,9320,9829,9876,9900,29079-29090,45671,45672"
   }
}
cameronkroeker commented 1 year ago

This issue has been addressed in v4.1.0.

https://github.com/Esri/arcgis-cookbook/releases/tag/v4.1.0