FRAMES | NO FRAMES Description | Parameters | Response | Example
URL:http://server:port/arcgis/admin/machines
HTTP Method:GET
Parent Resource: Site
Supported Operations: Register Machine
Child Resources: Machine  

Description

This resource represents a collection of all the server machines that have been registered with the site. It other words, it represents the total computing power of your site. A site will continue to run as long as there is one server machine online.

For a server machine to start hosting GIS services, it must be grouped (or clustered). When you create a new site, a cluster called ‘default’ is created for you.

The list of server machines in your site can be dynamic. You can
register more server machines when you need to increase the computing power of your site or unregister them if you no longer need them.

Parameters

Parameter Description
f The response format. The default response format is html.
Values: html | json

Response Format

{
  "machines": [ <
machine1>, <machine2>, ...]
}

Example

{
  "machines": [
    {
      "machineName": "SERVER1.DOMAIN.COM",
      "adminURL": "http://SERVER1.DOMAIN.COM:6080/arcgis/admin"
    },
    {
      "machineName": "SERVER2.DOMAIN.COM",
      "adminURL": "http://SERVER2.DOMAIN.COM:6080/arcgis/admin"
    }
   ]
}