|
POST
|
I hadn't considered portal as I got stuck focusing on the generate token from the GIS server in the logs. But if the error goes away when it can talk to portal then it must be in the mix. Good thinking Scott!
... View more
08-11-2022
04:10 PM
|
0
|
0
|
1695
|
|
POST
|
That is interesting - @Marc_Graham did you have an owning portal url?
... View more
08-11-2022
03:05 PM
|
0
|
1
|
5605
|
|
POST
|
There are a few fields in the dbadmin table which have what looks like encrypted data auth, storekey, storepwd, sharedkey and I suspect the creds are in here somewhere (it's just a hunch) - if the pw changes on server and is swapped back maybe there is a shared key update or something which invalidates what is stored in ds, giving the invalid user / pw. Again - just a hunch. Fraser
... View more
08-11-2022
02:55 PM
|
2
|
4
|
5613
|
|
POST
|
Thanks Scott, Marc gets this as well and neither of us have disabled the PSA. Even if you reset the PSA password it isn't propagated to the data store. When you validate the data store from the Admin API data store logs the fact it is trying to generate a new token but the credentials it has aren't correct. This suggests that these are cached somewhere in data store when the data store is registered with server. I have detailed above where I found some credentially type stuff. Even if DS had a token and it was semi permanent, changing the PSA password would invalidate it right so it would still need to generate a new one - so the password change would need to flow through to ds? Thanks
... View more
07-28-2022
07:47 PM
|
0
|
0
|
5656
|
|
POST
|
Hi there, We are having the same issue as described here https://community.esri.com/t5/arcgis-enterprise-questions/keep-getting-a-warning-in-server-log-says-quot/td-p/416151 When validating the data stores via the admin API I see the same token error coming from data store Validate: Machine 'https://...:6443/arcgis/admin/generateToken' returned an error. 'Failed to log in. Invalid username or password specified.' then the failed to log in. Invalid username 'some guid' or password specified. The only place I've seen any sort of credentials stored is in the dsadmindb in the <data store schema> storeregistry table. There are the following columns auth,storekey, storepwd, sharedkey and regtarget that store some encrypted data - are these related back to Server and are we able to reset this auth if it is the auth that the data store uses to try to generate the token. In the other post @JonathanQuinn says "Data Store shouldn't store the PSA credentials as Server supports those credentials changing. It should establish a trust between itself and the Server." How is this trust established and can we reset it without having to unregister the data store - which seems to be the common fix in the thread. Thanks Fraser @Marc_Graham
... View more
07-28-2022
01:12 PM
|
0
|
13
|
7392
|
|
POST
|
Hi there, Sorry for the cross post. I’ve had search online looking to see if ArcGIS Server supports SMB multichannel for a Azure file share or if it’s a single threaded application but wasn’t able to see anything. If we enabled SMB multichannel on a Azure file share does anyone know if ArcGIS Server be able to take advantage of that for better throughput? Thanks
... View more
07-25-2022
04:09 PM
|
0
|
3
|
2477
|
|
POST
|
Hi there, Sorry for the cross post. Has anyone in the community used Azure NetApp Files with their ArcGIS Enterprise deployment. If so could you share your experience with and and what the performance was like? Thanks
... View more
07-25-2022
04:08 PM
|
0
|
5
|
4182
|
|
POST
|
Hi there, Has anyone in the community used Azure NetApp Files with their ArcGIS Enterprise deployment. If so could you share your experience with and and what the performance was like? Thanks
... View more
07-25-2022
03:48 PM
|
0
|
1
|
1058
|
|
POST
|
Hi there, I’ve had search online looking to see if ArcGIS Server supports SMB multichannel for a Azure file share or if it’s a single threaded application but wasn’t able to see anything. If we enabled SMB multichannel on a Azure file share does anyone know if ArcGIS Server be able to take advantage of that for better throughput? Thanks @pheede-esri @JonathanQuinn @TrevorHart2
... View more
07-25-2022
02:52 PM
|
0
|
0
|
666
|
|
POST
|
HI Jonathan, Just a bump on this - has there been any updates on this on 10.9.1 / 11? Thanks Fraser
... View more
07-06-2022
08:48 PM
|
0
|
0
|
2966
|
|
POST
|
Hi there, I've had this sort of thing before - if you have a working 10.9.1 site you can grab the service json definition from the working site and place it in the site that is missing it (assuming the server licensing allows for geom service). Service should then be available and start up as expected.
... View more
01-09-2022
12:16 PM
|
0
|
0
|
852
|
|
POST
|
Hi, Hi, These features have been created in the branch. If you do more edits then save, all older records are trimmed - there is only one row per feature. If you edit a feature that exists in default the behaviour is the same - if you edit it multiple times you see the changes until you save then only 1 row is stored against the branch. Thanks
... View more
11-24-2021
01:51 PM
|
1
|
0
|
2216
|
|
POST
|
Hi Josh, Thanks for the reply. Using the historical tool or Add Archive doesn't seem to show the history for a branch (I may be missing something) - to show what I mean Will editing the FS in Pro I see this as I move through my edit session As soon as I click "Save" in Pro the edits in the table are trimmed to the last record. and all the other edits are discarded - as I understand it it only keeps the history for features in SDE.Default. We are working almost exclusively in versions via the Javascript API - and want to be able to see how a feature changes within a branch version - but this doesn't seem to be how it works? Thanks
... View more
11-24-2021
01:39 PM
|
0
|
2
|
2218
|
|
POST
|
Hi there, I'm using branch versioning and have seen this behaviour when editing a branch. When editing a branch version of a feature service in ArcGIS Pro I can see the edits to a feature appear and be tracked as expected - multiple rows are created and I can see the history of the feature, As soon as the Save Edits is clicked, all of these are trimmed and only the last record of the feature is retained. If the last edit was a delete then the row is removed from the feature class table rather then the GDB_DELETE_AT and GDB_DELETED_BY being set. Is there any way to retain archiving type behaviour for a record / feature that exists in a branch version? Thanks
... View more
11-24-2021
12:57 PM
|
1
|
4
|
2262
|
|
POST
|
Hi, Further to the response above re the xml - this is actually exposed in the admin REST admin. https://developers.arcgis.com/rest/enterprise-administration/server/servicemanifest.htm Example: https://machine.domain.com/webadaptor/admin/services/Maps/California.MapServer/iteminfo/manifest/manifest.json You can see the response from the developers link above. You could write a pretty simple python script using requests. If you are familiar with the Python API then this info is also exposed via the ItemInformationManager. It would be pretty easy to sketch up a Jupyter notebook that could pull this info out for a given GIS. https://developers.arcgis.com/python/api-reference/arcgis.gis.server.html#iteminformationmanager property manifest The service manifest resource documents the data and other resources that define the service origins and power the service. This resource will tell you underlying databases and their location along with other supplementary files that make up the service. Cheers
... View more
03-14-2021
07:45 PM
|
2
|
2
|
10211
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-05-2026 01:57 PM | |
| 1 | 05-11-2026 08:21 PM | |
| 2 | 07-11-2024 05:14 PM | |
| 3 | 04-03-2024 01:48 PM | |
| 1 | 08-24-2014 10:51 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-09-2026
03:10 PM
|