|
POST
|
Here's the bug description: NIM102777: When ArcGIS for Server loses connectivity to the con..
... View more
02-13-2017
10:37 AM
|
1
|
0
|
1602
|
|
POST
|
There are a few samples on the help site for scripting publishing using Python. The general idea is that you would use a for loop with the list of contents of the folder using os.listdir, figure out which are .mxds, and use Stage Service and Upload Service Definition to publish them. You can use the name of the mxd for the name of the service.
... View more
02-13-2017
09:38 AM
|
2
|
0
|
2090
|
|
POST
|
You can run a .bat file that runs the TASKLIST command and provide a filter to find all ArcSOC.exe processes as well as javaw.exe processes: Ex of ArcSOC.exe TASKLIST /M /FI "Imagename eq ArcSOC.exe" You can probably parse the output through the command prompt, or write the response to disk and parse it there.
... View more
02-13-2017
09:36 AM
|
1
|
6
|
3203
|
|
POST
|
This is fixed at 10.3, so you can upgrade to avoid it. I'm not sure if a patch is available.
... View more
02-13-2017
09:16 AM
|
0
|
0
|
1602
|
|
POST
|
Jamal, it is definitely possible to take a backup of a machine using the exportSite resource within the Server Admin API or the tool Rebecca Strauch, GISP mentioned and then restore the backup using the importSite resource within the Server Admin API or again, the tool described. This will restore the site to it's original state when the backup was taken. Take note of what's not included when backing up a site, (cache, your own data, etc), which means those items won't be restored by Server, so it's up to you to make sure those things are in order. The backup/restore utilities were not designed for "cloning" or "migration", meaning moving from one machine to another. Many organizations use a combination of ArcGIS Server tools, (backup/restore methods discussed above), file system backup tools, database backup tools, and VM backup tools, (ex snapshots), to guard against data loss and downtime.
... View more
02-11-2017
04:53 PM
|
3
|
10
|
3666
|
|
POST
|
I'm not aware of any extension that will change the behavior you're seeing. Smart clustering is available for a few of the clients of a portal, (AGOL or on-premises), but if you're not interested in that route, I'm not sure what else is available.
... View more
02-10-2017
03:58 PM
|
2
|
1
|
3713
|
|
POST
|
So you want the table records to appear as points based on a relationship with values shared between the table and features? Take a look at the Make Query Table tool. If you use the common field to link the features and include the SHAPE column, you should create duplicate points for every record within the table.
... View more
02-10-2017
02:45 PM
|
3
|
8
|
3713
|
|
POST
|
Sounds like you'll need a relate or relationship class. You can take a look at the doc on deciding between the different options as well.
... View more
02-10-2017
02:29 PM
|
3
|
10
|
3713
|
|
POST
|
There really isn't a great out of the box solution for keeping two active-passive ArcGIS Server sites synchronized. The Web GIS DR tool was introduced at 10.4 to keep a Web GIS, (or ArcGIS Enterprise deployment), synchronized, but that involves Portal for ArcGIS and it doesn't sound like you're using that. I would suggest you write your own publishing script tool, (for example, using Stage Service and Upload Service Definition), that will publish to both sites at the same time. You'll also need to look into how to keep any site settings synchronized, which can be done using Python as well.
... View more
02-10-2017
09:08 AM
|
2
|
0
|
3826
|
|
POST
|
I haven't used arcrest, but if you were to run Fiddler as you run the script, you should see the requests that your script is making to the Portaladmin API. You should be then able to confirm that you're providing a token with the exportSite request. You can also print what the sh variable stores, as I'm guessing sh stores a token and then arcrest.manageportal.PortalAdministration extracts the token somehow. Personally, I would write my own script using the urllib2 and the json modules.
... View more
02-10-2017
09:03 AM
|
0
|
0
|
2966
|
|
POST
|
It was a dev build of the software so not on a released version. Have you reached out to Support?
... View more
02-10-2017
09:01 AM
|
0
|
0
|
4160
|
|
POST
|
What version are you using? There was a bug in earlier versions where if the Server machines lost connection to the config-store and directories, services would appear as locked. If your servers are taking time to reach the config-store and you're on these earlier versions, that may be it. I'm not totally sure which version it was fixed in.
... View more
02-10-2017
09:00 AM
|
0
|
0
|
1602
|
|
POST
|
If you're talking about the agsadmin group within your Local Users and Groups in Windows, I'm betting you had ArcGIS Server 10.0 on that machine, and that group is a legacy group from that setup. ArcGIS Server 10.0 used the agsadmin group and DCOM to determine who was an Admin on the machine. At 10.1 and on, all security and privileges are defined within the scope of roles, (Administrator, Publisher, User), set within Manager.
... View more
02-10-2017
08:58 AM
|
2
|
1
|
2944
|
|
POST
|
There are a lot of places within the config-store and directories that store values specific to the machine it's on, (machine name, file paths, etc). You'll likely run into more problems with the machine name that's stored within the config-store and possibly directories than file paths, assuming all file paths are accessible on the second site. Note that updating files manually within the config-store or directories is not supported and not recommended.
... View more
02-10-2017
08:55 AM
|
3
|
13
|
5413
|
|
POST
|
Multiple web adaptors for Portal will only work if you have something in front of the web adaptors load balancing traffic to them. Ex. It's only designed to allow for redundancy at the web tier level, not to have two entry points into the portal. If multiple entry points were possible, the problem is that when an item is created, the URL for the item is built using the URL (https://myportal.domain.com/secure/...) and will not update depending on if you access the portal through a different URL, (https://myportal.domain.com/open/...). If you only have people that can sign into the portal creating content, (they will likely use the "secure" entry point), then those items will only reference the "secure" URL, and nobody with access to the "open" URL can reach the items, as they'd require authentication or require access to some internal web adaptor or reverse proxy. The only way to achieve anonymous and single sign on experiences is, as mentioned, using SAML
... View more
02-07-2017
01:58 PM
|
2
|
1
|
2623
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-28-2026 06:05 AM | |
| 1 | 08-26-2016 10:10 AM | |
| 2 | 02-22-2024 07:22 AM | |
| 1 | 06-07-2024 07:11 AM | |
| 4 | 12-12-2024 08:52 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
07:43 AM
|