|
POST
|
Yes, you should be able to initiate this from any of the machines and the data will copy to the others.
... View more
08-21-2025
07:49 AM
|
0
|
0
|
1342
|
|
POST
|
Hi @TL2, here is an example on how to do an intersect using the ArcGIS API for Python: from arcgis.gis import GIS
from arcgis.geometry import filters
# Connect to AGOL
gis = GIS('home')
# Reference services
ptFeatureLayer = gis.content.get('cd10146a4a91477b928f0921957b9698')
polygonFeatureLayer = gis.content.get('c44daed09ff14f80b000b541653aa1fc')
# Get point layer
ptFeatures = ptFeatureLayer.layers[0]
# Get polygon layer
polygonFeatures = polygonFeatureLayer.layers[0]
polygonFeatureQuery = ptFeatures.query(where='1=1')
# Perform intersect
for polygon in polygonFeatureQuery:
queryResult = ptFeatures.query(where='1=1', out_fields="division", geometry_filter=filters.intersects(polygon.geometry))
division = queryResult.features[0].attributes['division']
print(division)
... View more
08-21-2025
07:48 AM
|
0
|
0
|
1172
|
|
POST
|
@KannanSundaresan Here are the steps to backup/restore your BDS: 1. Create a share location on disk (i.e. \\ps024533\BDS) 2. Execute the configurebackuplocation command with the 'register' option. Ex: configurebackuplocation.bat --location \\ps024533\BDS --store spatiotemporal --operation register --prompt no 3. Create a backup using backupdatastore command. Ex: backupdatastore bds1 --store spatiotemporal --prompt no 4. Install BDS but do not configure 5. Unregister your existing BDS Data Store via ArcGIS Server Manager 6. Restore backup using the following: restoredatastore.bat --target most-recent --store spatiotemporal --server-url ps025666.esri.com --server-admin siteadmin --server-password siteadmin --prompt no --source-loc \\ps024533\BDS --data-dir C:\arcgisdatastore 7. After this restore, the spatiotemporal will be configured
... View more
08-21-2025
05:49 AM
|
0
|
2
|
1356
|
|
DOC
|
@LisaKing4 yes, you can update the Data Stores after executing the scripts. The scripts will simply update the metadata of the service (i.e. in ArcGIS Server Manager). Updating the Data Store connections will actually repoint the service to the new SQL instance.
... View more
08-18-2025
03:57 AM
|
0
|
0
|
15969
|
|
POST
|
@MichaelVolz that is correct. More information can be found in the below document: https://www.esri.com/arcgis-blog/products/arcgis-enterprise/administration/migrate-to-a-new-machine-in-arcgis-enterprise-two
... View more
08-15-2025
02:43 PM
|
0
|
0
|
749
|
|
POST
|
@EstherSmith_Dev ArcGIS Data Store backs itself up every 4 days. Can you check the default location (i.e. C:\arcgisdatastore\backup\relational\dbbackup) and see if they are being created?
... View more
08-15-2025
01:54 PM
|
0
|
0
|
908
|
|
POST
|
@ZachBodenner did you update the hosts files on each server? Each server that has an ArcGIS application installed should have the following entry in their hosts file: IP Address of Web Adaptor/Portal server | FQDN of Web Adaptor/Portal server | DNS of original Enterprise environment Ex: 10.0.0.1 portal.esri.com gis.esri.com After the entries are made, each machine should be able to hit https://gis.esri.com and it will resolve to the new Web Adaptor/Portal server.
... View more
08-15-2025
01:25 PM
|
0
|
2
|
761
|
|
DOC
|
@LisaKing4 did you update the Data Store connections before executing the scripts? You will do this in either ArcGIS Server Manager or Portal for ArcGIS depending on how the Data Store was registered.
... View more
08-15-2025
01:21 PM
|
0
|
0
|
16103
|
|
DOC
|
@DCWade since you are at Pro 3.1 and Server 11.1, you will want to use the 2.4.0 and earlier version of the scripts. Once you upgrade to Pro 3.4 and/or Server 11.5, the ArcGIS API will upgrade to 2.4.1.
... View more
08-08-2025
07:23 AM
|
0
|
0
|
8986
|
|
DOC
|
@DCWade what version of ArcGIS Pro or ArcGIS Server is installed on the server where you executing the script?
... View more
08-08-2025
05:19 AM
|
0
|
0
|
9000
|
|
DOC
|
@Sibe do you get this after you enter your username/password? If so, are you using a SAML account? This is currently not supported, only built-in and Active Directory accounts.
... View more
08-06-2025
06:56 AM
|
0
|
0
|
7567
|
|
DOC
|
@Sibe I just uploaded an earlier version (Item Dependency - Python API 2.4 and Earlier.zip) that should work with your version of Pro.
... View more
08-06-2025
05:58 AM
|
0
|
0
|
7590
|
|
POST
|
5. No you cannot install 11.5, the versions must match in order to import the webgisdr 6. You will need to install two web adaptors, one for Portal and one for ArcGIS Server. I wouldn't install the new ArcGIS Server instance. I would wait until you have the webgisdr imported and then upgraded to 11.5. At that point you can simply install the new 11.5 ArcGIS Server instance and federate.
... View more
08-06-2025
05:19 AM
|
0
|
1
|
2306
|
|
DOC
|
@Sibe what version of ArcGIS Enterprise and ArcGIS Pro are you running?
... View more
08-06-2025
05:14 AM
|
0
|
0
|
7615
|
|
POST
|
Hi @EdgarVazquez, What do you have specified for the SHARED_LOCATION and BACKUP_LOCATION parameters in the webgisdr.properties file? Since you have a distributed environment, this should be a share. For example: \\\\portalserver\\temp I typically specify the path for the SHARED_LOCATION and BACKUP_LOCATION. Also, make sure the service account that is running the applications has read/write access to the share. Service Account: This account should be the same for each application. Also, the user that is logged into the Portal server to execute the webgisdr should also have read/write access to the share.
... View more
08-05-2025
04:38 AM
|
0
|
1
|
539
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM | |
| 1 | 01-20-2026 04:04 AM | |
| 1 | 12-29-2025 06:27 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|