Processing Server (Environment setting)

The ArcGIS server name or IP address that has the Raster Processing system service enabled.

Tools that honor the Remote Processing Server set of environments specify the server, username, and password for ArcGIS Server when you use the Parallel Processing Factor environment.

To use the Remote Processing Server set of environments (Username, Password, and Processing Server), the designated server must have the Raster Processing system service enabled. The Raster Processing service requires the Image Service license.

Usage notes

  • The Raster Processing service is not started by default on ArcGIS Server. The server administrator must start the service before the server can be used as a Processing Server.
  • To specify a Processing Server, use the server's name or IP address. If the Processing Server is a server cluster, use the server name, which is the site host.
  • The user authorized to use the Raster Processing server should be either a publisher or administrator of the server.

Dialog syntax

  • The ArcGIS service name or IP address that has the Raster Processing system service enabled.
  • If the Processing Server is a server cluster, use the server name that is the site host.

Scripting syntax

arcpy.env.processingServer = server_url

ParameterExplanation

server_url

The ArcGIS server URL that has the Raster Processing system service enabled.

remoteProcessingServer syntax

Script example

import arcpy

arcpy.env.processingServer = "https://<server name>:6443/arcgis/services" 
arcpy.env.processingServerUser = "rasterUser" 
arcpy.env.processingServerPassword = "password01"