Cameron Kroeker
Cameron Kroeker
Hi @Ayushyadav19, Looks like it is getting stuck here: https://github.com/Esri/arcgis-cookbook/blob/237b0e39fca0a3b5988b997430bf7beb3637e039/cookbooks/esri-tomcat/recipes/firewalld.rb#L38-L41 The default `node['tomcat']['firewalld']['init_cmd']` attribute is set to execute: ``` firewall-cmd --zone=public --permanent --add-port=0-65535/tcp. ``` This opens all ports, which could...
Hi @Ayushyadav19, The cookbooks use the built in stopportal.sh tool to stop the service after the setup completes, so that later it can start the portal service using systemd. Looks...
Hi @Ayushyadav19, For the 412 "Precondition Failed" error, could you provide the stacktrace.out? There could be useful or helpful information in there. Thanks, Cameron K.
Hi @Ayushyadav19, The cookbooks do not currently have this capability, which is why you are not finding any parameter/attributes for it. I'll mark this as an enhancement request for it...
Hi @srini1984, Try setting the `node['arcgis']['configure_cloud_settings']`attribute in your json configuration file to false: `node['arcgis']['configure_cloud_settings']` = If set to true, makes the cookbook use the cloud provider specific ArcGIS Enterprise configuration....
Hi @ramtechjoe, Could you try using semicolons to separate the portal urls? https://pro.arcgis.com/en/pro-app/latest/get-started/arcgis-pro-installation-administration.htm Perhaps something like this: ``` "portal_list": "https://portal1.domain.com/portal;https://portal2.domain.com/portal" ``` Thanks, Cameron K.
Hi @simongis, Support for the ArcGIS Data Store - Object Store type has not been added to the cookbooks yet. Thanks, Cameron K.
Support for the ArcGIS Data Store - Object Store type has been added: **Template:** - ://github.com/Esri/arcgis-cookbook/blob/main/templates/arcgis-datastore/11.2/windows/arcgis-datastore-object.json - https://github.com/Esri/arcgis-cookbook/tree/main/templates/arcgis-datastore/11.2#object-data-store-in-cluster-mode **Cookbooks:** - https://github.com/Esri/arcgis-cookbook/releases/tag/v4.2.0 Thanks, Cameron K.
Hi @vassilo, ArcGIS Server doesn't support specifying a specific container. Let's try removing the`/hosting-config-store` from the UserName attribute value. For example: ```json "ConfigStoreCloudStorageAccount":{ "UserName": "mneustortestesri01.blob.core.windows.net", "Password": "", "CloudStorageType": "AzureBlob", "CloudNamespace":...
Hi @vassilo, Looks like in the json config the `AzureBlobAuthenticationType` is set to `AccessKey` rather than ServicePrincipalName. Here is an example for ServicePrincipalName: ```json "ConfigStoreCloudStorageAccount":{ "UserName": "mneustortestesri01.blob.core.windows.net", "CloudStorageType": "AzureBlob", "AzureBlobAuthenticationType":...