Configuration and log files

Size: px
Start display at page:

Download "Configuration and log files"

Transcription

1 B Configuration and log files The ArcGIS manages a set of files that are written by the server manager. These files can be grouped into two categories: log files and configuration files. Understanding the structure of these files and how to use them will be critical for an ArcGIS administrator. This appendix gives a description of the structure and content for both the log and configuration files, including details of how to interpret and use them.

2 ARCGIS SERVER LOG FILES ArcCatalog Properties page General tab The ArcGIS logs events that occur in the server, and any errors associated with those events, to log files. Events such as when server s are started, when server contexts are created, and when machines are added to the server are some of the examples of events logged by the server. The server manager (SOM) is the centralized logging mechanism for ArcGIS server. Through the SOM, all events that occur within the SOM, events that occur in server containers (SOCs), and their contained s are logged by the SOM. The logs are actually a pair of files: an XML file and a.dat file. The XML file contains the <log> tags, and the.dat file contains the messages that are constantly being appended. You can open the XML file in any XML aware tool to view the messages in the.dat file. By default, these log files are written to <install_location>\log on the SOM machine. Each time the SOM service starts, a new log file is created, and the server will continue to write messages to that log until it reaches the maximum log size. Once the log file exceeds the maximum size, it is retired and a new log file is created. By default, the maximum log size is 10 megabytes. Log messages can vary in their level of severity from error, which indicates a problem that requires immediate attention, to detailed, which is a common message generated through regular use of the server. The messages that are logged are defined by the log level that is set in the server. The following are the ArcGIS s logging levels: 0 (None): No logging 1 (Error): Serious problems that require immediate attention are logged. 2 (Warning): Problems that require attention and errors are logged. 3 (Normal): Common administrative messages of the server, warnings, and errors are logged. 4 (Detailed): Common messages from user use of the server, including server s, normal messages, warnings, and errors are logged. 5 (Debug): Verbose messages to aid in troubleshooting; detailed messages, normal messages, warnings, and errors are logged. By default, the log level of the server is set to level 3 (Normal), meaning messages whose severity is Error, Warning, or Normal will be logged. All messages whose level is Detailed or Debug are not logged. The log location, maximum log size, and logging level can be changed at any time using either ArcCatalog or the server API. Changes made will be reflected immediately in the server. The log properties can also be modified by editing the.cfg configuration file. In that case, the changes will not be reflected until the SOM is stopped and restarted. 522 ArcGIS Administrator and Developer Guide

3 ARCGIS SERVER LOG FILES ArcCatalog Properties page Statistics tab USING THE LOG FILES Log files are an important tool for monitoring and troubleshooting problems with your GIS server. GIS server administrators will monitor the server s statistics and use the statistics to help determine when they need to consult the log files. The GIS server s statistics give general information about the state of the GIS server and whether errors have been occurring. The statistics are available to server administrators through ArcCatalog. Through both the GIS server s statistics and reports from users of the system, administrators will be confronted with errors and other problems occurring in the system. The log files provide the information to identify what the errors are and, through the information in the log, infer what to investigate to solve the problem. For example, an administrator may view the server statistics and note that there were a number of errors associated with creating new server s in the server. By further examining the statistics, the problem area can be narrowed down to a particular server container machine. The information in the log file can then be used to determine what errors have been logged and to discover, for example, that the server container machine on which the errors were occurring did not have access to the output directory. Using this information, the administrator can rectify the directory access problem, then use statistics and the log files to determine if the error occurs again. The log files also serve as a history of the statistics and events that occur over time in the server. The server s statistics are in memory and are accumulated summaries of time slices since the GIS server started. The granularity of these time slices is more coarse the further back in time you go. Statistics are also cleared when the server is stopped. The GIS server s logs maintain a record of all events in the server and are not deleted when the server is stopped. READING THE LOG FILES The information contained in the log file messages has a consistent structure. Understanding this structure is important when interpreting the information in the log files. Log message structure Loggable messages are generated by many subsystems of ArcGIS. Messages are generated as a result of SOM startup and administrative and user usage. Each message has a target that can be either or a server. -targeted messages log events associated with the core functionality of the SOM, while server messages log events associated with a specific server configuration and instances of that server configuration. Independent of target, all loggable messages have six explicit properties: time, level, code, target, thread, and message. The time is the time at which the logged event occurred. The level is the level of detail of the message in relation to other messages (as described above, the levels are: Error, Warning, Normal, Detailed, and Debug). The code is the result code associated with the message. The target is either or the name of a server configuration associated with the message. Thread is the SOM process thread that generated the message. Finally, Appendix B Configuration and log files 523

4 ARCGIS SERVER LOG FILES message is the human-readable description of the logged event that includes the process and thread IDs of the container processes where the that generated the message is running and the server container machine on which that process is running (if applicable). The message may contain any error description that comes from the server itself, such as an error indicating that it cannot write its output. Additional properties that may be included with certain messages include machine and elapsed. Machine indicates the server container machine for which the event occurred. For example, the sever may log an error that a server context for a particular server configuration could not be created on a particular machine. Only those messages that apply to statistics that are recorded for a specific machine will include a machine property. The elapsed property is the time it took for the event that is being logged to complete. For example, the create server event has an elapsed time to indicate the amount of time it took to create the server instance. The following is an example of a typical log message. This log message indicates that an instance of the Yellowstone map server was created on the server container machine padisha, and it took seconds to create the. <Msg time=" t14:36:05" level="detailed" code="4004" target="yellowstone.map" machine="padisha" thread="2936" elapsed="2.443"> Object instance is successfully created on machine padisha. </Msg> Message targets As described above, the targets for the log messages can be or a server. Messages associated with server s have the name and type of the server as the target property. For example, the Yellowstone map server will appear as Yellowstone.Map. There are two additional targets that will appear in the log that are internal server configurations. While the administrator does not manage these configurations directly, errors may still occur with them that need to be dealt with. The internal server s are SDM.DirectoryManager and Engine. SDM.DirectoryManager is the that cleans files from the GIS server s server directories. An instance of the SDM.DirectoryManager is created when the SOM starts. Each time a directory is cleaned, this instance of SDM.DirectoryManager does the cleaning for all server directories. Any errors it encounters are reported. Errors that are typically reported by SDM.DirectoryManager include the inability to access a directory it needs to clean. 524 ArcGIS Administrator and Developer Guide

5 ARCGIS SERVER LOG FILES Each time a server directory is created or removed, the SDM.DirectoryManager is stopped and restarted. The Engine.Engine server represents the empty server context configuration. When a client asks to create an empty context, the Engine.Engine configuration creates one for the client. Code Meaning Target Comments 1000 Add machine failed Error logged if you attempt to add a new server container machine that does not exist or cannot be found by the SOM Remove machine failed Error logged if removing a machine fails Illegal configuration name Error logged when you attempt to add a server configuration whose name contains illegal characters Load server configuration failed 1004 Add server configuration failed 1005 Delete server configuration failed 1006 Stopped server configuration failed 1007 Pause server configuration failed 1008 Start server configuration failed Error logged when the server cannot load a server configuration, for example, if the server configuration file is corrupt or contains invalid values. Error logged when adding a new server configuration fails, for example, if you attempt to add a server configuration with the same name and type as an existing server configuration. Error logged when deleting a server configuration fails, for example, if you attempt to delete a server configuration that does not exist. Error logged when stopping a server configuration fails, for example, if you attempt to stop a server configuration that is already stopped. Error logged when pausing a server configuration fails, for example, if you attempt to pause a stopped or already paused server configuration. Error logged when starting a server configuration fails, for example, if you attempt to start an already started configuration, or none of the minimum instances could be started type not found Error logged when a server configuration is trying to use a server type that is not registered with the server. The registered types are Map and Geocode Failed to load the server configuration file 1013 Failed to create a server context 1014 Failed to create a server container process 1015 Failed to create a thread in a container process 1016 Failed to create a server in a container process thread 1017 Container process crashed Error logged when the.cfg cannot be read on SOM startup, for example, if the SOM startup encounters a corrupted.cfg or if.cfg contains invalid values. Errors logged if the server fails to create a server context for a client, for example, if the client asks the server to create a context for a server configuration that does not exist. Error logged if the server failed to create a new container process on one of the server container machines. Error logged if the server failed to create a new thread in a container process on one of the server container machines. Error logged if an instance of a server failed to create on a server container machine. Look at the message for more specific error information. Error logged if a container process containing server s for the target server configuration crashes. If this is a pooled server, the server will create a new process and server s to repopulate the pool. Error logged if a server directory has an invalid path directory has invalid path 1019 Add server directory failed Error logged if the addition of a server directory failed. This can happen if you attempt to add a server directory if one already exists Delete server directory failed Error logged if the deletion of a server directory failed. This can happen if you attempt to delete a server directory that does not exist Update server directory failed Error logged if the update of a server directory failed. This can happen if you attempt to update a server directory that does not exist types file not found 1023 type not registered Error logged if the server types file cannot be found when the SOM starts. The server types file is <install_location>\bin\types.txt Error logged if the server types file is empty. The server types file is <install_location>\bin\types.txt Appendix B Configuration and log files 525

6 ARCGIS SERVER LOG FILES Log codes The codes are numbered based on the following: : Messages that are generated and written by the SOM and greater: Messages that are generated by the server components themselves (Map, Geocode, SDM.DirectoryManager, Engine.Engine). Code Meaning Target Comments 2000 container machine not found Message logged if the SOM attempts to create a new container process or thread on a machine that it can t find. This error will typically occur if the machine becomes unavailable (due to a network problem) while the SOM is running container machine exists 2002 configuration exists 2003 configuration is not found 2006 The minimum and maximum instance values are invalid Message logged when you attempt to add a server container machine that has already been added to the GIS server. Message logged when you attempt to add a new server configuration with the same name and type as an existing server configuration. Message logged when a client requests a server configuration that does not exist. When adding or updating server configuration, minimum or maximum instances specified are invalid, for example, a minimum that is larger than the maximum. A client held onto a server for longer than its usage time-out, and the server automatically released it. An instance of a server took longer to create than the creation time-out, and the server cancelled the creation A server context s usage time-out was exceeded 2008 A server s creation time-out was exceeded 2009 configuration not found Message logged if while the SOM is running, it cannot read the.cfg file configuration contains an invalid parameter Message logged if the SOM encounters invalid tags or values when reading the.cfg file A server directory was not found Message logged if you attempt to find or delete a server directory that does not exist directory exists Message logged if you attempt to add a new server directory that already exists. Code Meaning Target Comments 4000 Container process created This message is logged each time a container process for the target server configuration is started on a server container machine Thread created in a container process This message is logged each time a thread is created in a container process for the target server configuration Container process removed 4003 Thread removed from a container process 4004 created in a server container thread 4006 context created 4007 context released 4008 Recycling started 4009 Recycle next This message is logged each time a container process for the target server configuration is removed from a server container machine. This message is logged each time a thread is removed from a container process for the target server configuration. This message is logged each time an instance of a server is created in a thread within a container process for the target server configuration. The elapsed time logged is the amount of time taken to create the server. This message is logged any time a client calls CreateContext for the target server configuration. The elapsed time is the wait time between the call to CreateContext and when the client receives the server context. This message is logged any time a client calls ReleaseContext for a context created for the target server configuration. The elapsed time is the usage time between when the client s call to CreateContext is completed and when the client is released. Message logged when the target server configuration recycling is started. Message logged when an instance of the target server configuration is recycled. 526 ArcGIS Administrator and Developer Guide

7 ARCGIS SERVER LOG FILES Some codes can apply to messages of different levels, for example, a message with a code may be an error for one event, while it may be a warning for another event. These tables summarize the log codes, their meaning, and the applicable targets. Code Meaning Target Comments 3000 container machine added Message logged when the user adds a new server container machine to the GIS server container machine deleted Message logged when the user removes a server container machine from the GIS server configuration load begin Message logged for each server configuration when the SOM starts configuration add begin Message logged when the server attempts to add a server configuration. This event occurs when you either add a new or update an existing server configuration configuration delete begin 3005 configuration stop begin 3006 configuration pause begin 3007 configuration start begin 3008 configuration loaded 3009 configuration added 3010 configuration deleted 3011 configuration stopped 3012 configuration paused 3013 configuration started 3014 manager started Message logged when the server attempts to delete a server configuration. This event occurs when you either delete or update a server configuration. Message logged when the server attempts to stop a server configuration. Message logged when the server attempts to pause a server configuration. Message logged when the server attempts to start a server configuration. This message is not logged when server configurations are started during SOM startup. This message is logged for each server configuration that was successfully loaded on starting the SOM. This message is logged after a message with code If the load failed, an error with code 1003 is logged. Message logged when the SOM starts and successfully adds the SDM (DirectoryManager) and internal Engine server configurations. Message logged when a server configuration is deleted. Message logged when a server configuration is stopped. Message logged when a server configuration is paused. Message logged when a server configuration is started. Note that a successful start may occur after errors have been logged. Message logged when the SOM has successfully started. Note that a successful start may occur after errors have been logged. Message logged when the SOM is stopped. No additional messages will be added to a log file after this message manager stopped 3016 configuration loaded Message logged when the SOM starts and the information in.cfg is successfully loaded directory added Message logged when a new server directory is added to the server directory updated This message is logged when the properties of a server directory are updated directory deleted Message logged when a server directory is deleted from the server. Appendix B Configuration and log files 527

8 The ArcGIS administrator manages the various configuration properties of both the GIS server and its collection of server s. All of these properties are maintained by the server in a collection of configuration files. These configuration files are read by the SOM when its started, and they define such things as the set of server container machines, the output directories, the server configurations, their pooling model, and so on. The properties of the server itself are maintained in a file called.cfg, while the properties of each of the server s server configurations are maintained in files called <server configuration name>.<server type>.cfg. For example, the configuration file for the map server configuration called Yellowstone would be Yellowstone.Map.cfg. These configuration files are in XML and are located in the <install_location>\cfg folder on the SOM machine. When properties of the server and its configurations are set or modified using ArcCatalog, these changes are reflected in both the GIS server and the appropriate configuration file. Developers can also change these properties using the server API to update the server s properties and to create, update, and delete the server s configurations. The server s configuration files can also be modified manually using a text editor. Unlike using ArcCatalog or the server API, any changes made to the server s configuration files manually are not reflected in the server until it is restarted. While this appendix documents the structure of these files, it is recommended that you use ArcCatalog or the server API to create and modify their contents, which is done indirectly though modifying the server s properties. The remainder of this appendix details the content and use of the server configuration files. THE SERVER.CFG CONFIGURATION FILE The server s properties are maintained in the.cfg configuration file. The contents of this file are read when the SOM is started. The server will report a successful start once this file has been successfully read and any initialization detailed in it completed. If there are errors in the file, the SOM will log an error and attempt to start using default values for the missing or invalid properties. When the SOM is installed on a machine, the.cfg file does not exist..cfg is created after the SOM is started, and either a server container machine or a server directory is added to the GIS server. The following is an example of a.cfg file for a GIS server with a single container machine (padisha) and a single output directory (\\padisha\images), whose logging level is 3. <> <Machines> <Machine> <Name>padisha</Name> <Description> container machine 1</Description> </Machine> </Machines> <Directories> 528 ArcGIS Administrator and Developer Guide

9 The IObjectAdmin interface provides the methods and properties for updating the GIS server s properties and, therefore, the contents of.cfg. <Directory> <Path>\\padisha\images</Path> <URL> <Description>default output location</description> <Cleaning>sliding</Cleaning> <MaxFileAge>600</MaxFileAge> </Directory> </Directories> <Properties> <LogPath>C:\Program Files\ArcGIS\log\</LogPath> <LogSize>10</LogSize> <LogLevel>3</LogLevel> <ConfigurationStartTimeout>300</ConfigurationStartTimeout> <EngineContextTimeout>600</EngineContextTimeout> </Properties> </> IObjectAdmin : IUnknown Properties: IPropertySet AddConfiguration (in config: IObjectConfiguration) AddMachine (in machine: IMachine) AddDirectory (in psd: IDirectory) CreateConfiguration: IObjectConfiguration CreateMachine: IMachine CreateDirectory: IDirectory DeleteConfiguration (in Name: String, in TypeName: String) DeleteMachine (in machinename: String) DeleteDirectory (in Path: String) GetConfiguration (in Name: String, in TypeName: String) : IObjectConfiguration GetConfigurations: IEnumObjectConfiguration GetConfigurationStatus (in Name: String, in TypeName: String) : IObjectConfigurationStatus GetMachine (in Name: String) : IMachine GetMachines: IEnumMachine GetDirectories: IEnumDirectory GetDirectory (in Path: String) : IDirectory GetTypes: IEnumObjectType PauseConfiguration (in Name: String, in TypeName: String) StartConfiguration (in Name: String, in TypeName: String) StopConfiguration (in Name: String, in TypeName: String) UpdateConfiguration (in config: IObjectConfiguration) UpdateMachine (in machine: IMachine) UpdateDirectory (in psd: IDirectory) Provide access to members that administer the GIS server. The logging properties for the GIS server. Adds a server configuration (created with CreateConfiguration) to the GIS server. Adds a host machine (created with CreateMachine) to the GIS server. Adds a server directory (created with CreateDirectory) to the GIS server. Creates a new server configuration. Creates a new host machine. Creates a new server directory. Deletes a server configuration from the GIS server. Deletes a host machine from the GIS server, making it unavailable to host server s. Deletes a server directory such that its cleanup is no longer managed by the GIS server. It does not delete the physical directory from disk. Get the server configuration with the specified Name and TypeName. An enumerator over all the server configurations. Get the configuration status for a server configuration with the specified Name and TypeName. Get the host machine with the specified Name. An enumerator over all the GIS server's host machines. An enumerator over the GIS server's output directories. Get the server directory with the specified Path. An enumerator over all the server types. Makes the configuration unavailable to clients for processing requests, but does not shut down running instances of server s or interrupt requests in progress. Starts a server configuration and makes it available to clients for processing requests. Stops a server configuration and shuts down any running instances of server s defined by the configuration. Updates the properties of a server configuration. Updates the properties of a host machine. Updates the properties of a server directory. Appendix B Configuration and log files 529

10 .cfg tags The following are the tags, their meanings, and example values in a.cfg file. <Machines> The list of server container machines. This tag contains <Machine> subtags for each server machine. <Machine> A server container machine. This tag contains two subtags: <Name> and <Description>. <Name> The ArcCatalog ArcGIS Properties page Hosts tab A string that represents the name of the server container machine. If this tag is missing, the rest of the <Machine> tag is ignored. On start, the SOM does not validate that the value of this tag is a valid server container machine. If it s invalid, errors will be logged as the SOM attempts to create server s on it. The machine names must be unique. Duplicate machines will be ignored. <Description> An optional string that describes the server container machine. The following is an example of the <Machine> tag, <Machine> tag, and its subtags. The ArcCatalog ArcGIS Properties page Directories tab <Machines> <Machine> <Name>padisha</Name> <Description> container machine 1</Description> </Machine> <Machine> <Name>melange</Name> <Description> container machine 2</Description> </Machine> </Machines> <Directories> The list of server directories. This tag contains <Directory> subtags for each server directory. <Directory> A server directory. This tag contains the required subtag <Path> and a number of optional subtags. <Path> A string that represents the path of the server directory. This property is required and must be unique per server. Directories with duplicate <Path> tags will be ignored. Note, however, that if a single location has multiple paths for example, two shares with different names the SOM will not recognize those as being the same directory. 530 ArcGIS Administrator and Developer Guide

11 <URL> An optional string that represents the URL of a virtual directory that points to the physical location specified in the <Path> tag. The URL will be in URL form as in <Description> An optional string that is a description of the server directory. <Cleaning> An optional string that specifies the server directory s cleaning mode. Valid values are off, sliding, or absolute. If <Cleaning> is off, then the server will not clean up its files in the directory. If <Cleaning> is sliding, then the server will delete files for which the time specified by the <MaxFileAge> tag has elapsed since they were last accessed. If <Cleaning> is absolute, then the server will delete files for which the time specified by the <MaxFileAge> tag has elapsed since they were created. If this tag is missing, the default value is sliding. <MaxFileAge> An optional integer (greater than 0) that represents the amount of time in seconds that needs to elapse since files were last accessed (sliding) or were created (absolute) before they are deleted. If this tag is missing, the default is 10. The following is an example of the <Directory> tag, <Directory> tag, and its subtags. <Directories> <Directory> <Path>\\padisha\images</Path> <URL> <Description>default output location</description> <Cleaning>sliding</Cleaning> <MaxFileAge>600</MaxFileAge> </Directory> <Directory> <Path>\\melange\Output</Path> <URL> <Description>large file location</description> <Cleaning>absolute</Cleaning> <MaxFileAge>6000</MaxFileAge> </Directory> </Directories> <Properties> The list of properties of the GIS server, including the logging properties and server creation time-out. All the subtags of Properties are optional. <LogPath> An optional string representing the path to the location on disk that log files are written. The default is <install_location>\log. Note, the GIS server account must have write access to this location. Appendix B Configuration and log files 531

12 <LogSize> An optional integer representing the size to which a single log file can grow (in MB) before a new log file is created. The default is 10. <LogLevel> An optional integer that indicates the level of detail that the server logs. The levels are: 0 (None): No logging 1 (Error): Serious problems that require immediate attention are logged. ArcCatalog Properties page General tab 2 (Warning): Problems that require attention and errors are logged. 3 (Normal): Common administrative messages of the server, warnings, and errors are logged. 4 (Detailed): Common messages from user use of the server, including server s, normal messages, warnings, and errors are logged. 5 (Debug): Verbose messages to aid in troubleshooting, detailed messages, normal messages, warnings, and errors are logged. The default log level is 3. <ConfigurationStartTimeout> An optional integer that represents the time in seconds that the GIS server will wait for a server instance to start. If a server takes longer to start than <ConfigurationTimeout>, then it will time out and an error will be logged. The default time-out is 300. <EngineContextTimeout> An optional integer that represents the maximum amount of time in seconds a client can hold on to an empty server context before it is automatically released. The default is 600. The following is an example of the <Properties> tag and its subtags. <Properties> <LogPath>C:\Program Files\ArcGIS\log\</LogPath> <LogSize>10</LogSize> <LogLevel>3</LogLevel> <ConfigurationStartTimeout>300</ConfigurationStartTimeout> <EngineContextTimeout>600</EngineContextTimeout> </Properties> THE SERVER OBJECT CONFIGURATION FILES The properties of server configurations are maintained in a file for each server configuration. A GIS server s set of configurations is defined by the list of configuration files in the cfg directory. When a new configuration is added to the GIS server, a new file is created. When a configuration is deleted, its file is deleted from the cfg directory. A Map server configuration will have a file called <configuration_name>.map.cfg, and a Geocode server configuration will have a file named <configuration_name>.geocode.cfg. 532 ArcGIS Administrator and Developer Guide

13 For example, a GIS server that has map server s called USA, Redlands, and Yellowstone and geocode server s named Portland and USAStreets would have the following files in its cfg directory: Portland.Geocode.cfg Redlands.Map.cfg.cfg USA.Map.cfg USAStreets.Geocode.cfg Yellowstone.Map.cfg It s possible to add a configuration to the GIS server by manually creating a configuration file in the cfg directory, and it s possible to delete a configuration by deleting its file from the cfg directory. In both cases, the new or deleted configuration will not be recognized by the server until the SOM is restarted. If the SOM encounters a corrupted configuration file, the SOM will log a warning and ignore the configuration. The following is an example of a server configuration file for a Map: <ObjectConfiguration> <Description>Map server containing vegetation data for Yellowstone National Park</Description> <Properties> <FilePath>D:\ArcGIS Data\DocDevScenarioData\Yellowstone\Yellowstone.mxd</ FilePath> <OutputDir>\\padisha\images</OutputDir> <VirtualOutputDir> <MaxRecordCount>500</MaxRecordCount> <MaxBufferFeatures>100</MaxBufferFeatures> <MaxImageWidth>2048</MaxImageWidth> <MaxImageHeight>2048</MaxImageHeight> </Properties> <Recycling> <StartTime>00:00</StartTime> <Interval>36000</Interval> </Recycling> <IsPooled>true</IsPooled> <MinInstances>2</MinInstances> <MaxInstances>4</MaxInstances> <WaitTimeout>60</WaitTimeout> <UsageTimeout>600</UsageTimeout> <Isolation>high</Isolation> <StartupType>automatic</StartupType> </ObjectConfiguration> Appendix B Configuration and log files 533

14 The IObjectConfiguration interface provides the methods and properties for setting a server configuration s properties and, therefore, the contents of the configuration files. IObjectConfiguration : IUnknown Description: String IsolationLevel: esriisolationlevel IsPooled: Boolean MaxInstances: Long MinInstances: Long Name: String Properties: IPropertySet RecycleProperties: IPropertySet StartupType: esristartuptype TypeName: String UsageTimeout: Long WaitTimeout: Long Provides access to members that control the behavior and properties of a server configuration to administrators. Description of the server configuration. The isolation level of the server s defined by the server configuration. Indicates whether the server s defined by this configuration are pooled. The maximum number of server instances for a server configuration. The minimum number of server instances for a pooled server configuration. Name of the server configuration. Initialization parameters and properties for the server s created by the server configuration. The recycling properties for the server configuration. The startup type for this server configuration. Startup type describes whether the server configuration is started when the server manager service is started for the GIS server. Type of the server configuration (Map or Geocode). Maximum time (in seconds) a client can hold on to an instance of a server for this server configuration before releasing it back to the server. It is the maximum time allowed between calling CreateContext and ReleaseContext. Maximum time (in seconds) a client will wait for an instance of a server for this server configuration using the CreateContext method on IObjectManager before timing out. The ArcCatalog Object Properties page General tab configuration tags The following are the tags, their meanings, and example values in a server configuration file. <Description> An optional string that is the description of the server configuration. <Properties> The list of properties of the server configuration. The subtags are properties specific to the server configuration type. For Map configurations, the subtags are <FilePath>, <OutputDir>, <VirtualOutputDir>. For Geocode configurations, the subtags are <Locator>, <LocatorWorkspacePath>, <LocatorWorkspaceConnectionString>, and <SuggestedBatchSize>. <FilePath> A string representing the path to the map document (.mxd) or published map document (.pmf) that the Map will serve. <OutputDir> A string that represents the path to a location on the file system to which the Map will write its output. When ArcCatalog creates a new Map configuration, this property is copied from the server directory s path that the user specifies. If you want the Map s output to be cleaned by the GIS server, this path should be a path to a server directory. <VirtualOutputDir> A string that represents the URL of the virtual directory that points to the physical location specified in the <OutputDir> tag. When ArcCatalog creates a new Map configuration, this property is copied from the server directory s URL that the user specifies. 534 ArcGIS Administrator and Developer Guide

15 <MaxRecordCount> An integer that represents the maximum number of result records returned by the following methods on the map server: QueryFeatureData Find Identify <MaxBufferCount> The ArcCatalog Object Properties page Parameters tab for a Map The ArcCatalog Object Properties page Parameters tab for a Geocode An integer that represents the maximum number of features that can be buffered by the map server at draw time per layer. <MaxImageWidth> An integer representing the maximum width (in pixels) of images the map server will export. <MaxImageHeight> An integer representing the maximum height (in pixels) of images the map server will export. <ConnectionCheckInterval> An integer representing the number of seconds the Map or Geocode will wait before checking if ArcSDE servers that have become unavailable are once again available. Once the ArcSDE server is available, the Map or Geocode instance will be replaced to repair the connection to the ArcSDE server. By default, this property is not included in the.cfg file and this time is 300 seconds. You can add this tag to the.cfg file to modify this time. You can disable this behavior by specifying a value of 0. The following is an example of the <Properties> tag and its subtags for a Map configuration. <Properties> <FilePath>\\padisha\ArcGIS Data\Yellowstone.mxd</FilePath> <OutputDir>\\padisha\images</OutputDir> <VirtualOutputDir> <MaxRecordCount>500</MaxRecordCount> <MaxBufferCount>100</MaxBufferCount> <MaxImageWidth>2048</MaxImageWidth> <MaxImageHeight>2048</MaxImageHeight> </Properties> <Locator> A string that represents the name of the locator for the Geocode. <LocatorWorkspacePath> A required string for file-based locators that represents the path to the location on disk where the locator file is stored. <LocatorWorkspaceConnectionString> A required string for ArcSDE software-based locators that represents the connection string to the ArcSDE database. Appendix B Configuration and log files 535

16 <SuggestedBatchSize> An integer that represents the number of records that will be located at a time for batch geocoding. <MaxResultSize> An integer that represents the maximum number of result records returned by the FindAddressCandidates method on the geocode server: <MaxBatchSize> An integer that represents the maximum number of records that can be input into the geocode server s GeocodeAddresses method. The following is an example of the <Properties> tag and its subtags for a Geocode configuration whose locator is an ArcSDE locator. The ArcCatalog Object Properties page Pooling tab The ArcCatalog Object Properties page Processes tab <Properties> <Locator>GDB.Portland</Locator> <LocatorWorkspaceConnectionString> ENCRYPTED_PASSWORD=0002c06e3bc49d6412c06c1baa554d00; SERVER=doug; INSTANCE=5151; USER=gdb; VERSION=SDE.DEFAULT </LocatorWorkspaceConnectionString> <SuggestedBatchSize>1000</SuggestedBatchSize> <MaxResultSize>500</MaxResultSize> <MaxBatchSize>1000</MaxBatchSize> </Properties> <Recycling> The list of recycling properties of the server configuration. This tag contains subtags <Start> and <Interval>. Note: If the <Recycling> tag is missing, or any of its subtags are invalid, recycling will be switched off for the configuration. <Start> A required string that represents the recycling start time, which is the time at which recycling is initialized. The time specified is in 24-hour notation. For example, to set the start time at 2:00 p.m., the StartTime property would be 14:00. <Interval> A required integer that defines the time between recycling operations in seconds. For example, to recycle the configuration every hour, this property would be set to The following is an example of the <Recycling> tag and its subtags. <Recycling> <StartTime>00:00</StartTime> <Interval>36000</Interval> </Recycling> 536 ArcGIS Administrator and Developer Guide

17 <MinInstances> An integer specifying the minimum number of instances for the server s pool. The default is 0. <MaxInstances> An integer specifying the maximum number of server instances that can be running at any time. The default is 0. <WaitTimeout> An optional integer specifying the maximum amount of time in seconds allowed between a client requesting a server and getting a server. The default is 60. <UsageTimeout> An optional integer specifying the maximum amount of time in seconds a client can hold onto a server before it is automatically released. The default is 600. <IsPooled> A required string indicating whether the server s created by this configuration are pooled (true) or not pooled (false). <Isolation> A required string indicating if the configuration s server has high isolation (high) or low isolation (low). <StartupType> An optional string that specifies if the configuration is started by the SOM when the SOM starts, or if it needs to be manually started by an administrator. The valid values are automatic or manual. The default is automatic. The following are examples of these tags: <IsPooled>true</IsPooled> <MinInstances>2</MinInstances> <MaxInstances>4</MaxInstances> <WaitTimeout>60</WaitTimeout> <UsageTimeout>600</UsageTimeout> <Isolation>high</Isolation> <StartupType>automatic</StartupType> Appendix B Configuration and log files 537

18

Developing ArcGIS Server applications

Developing ArcGIS Server applications 4 Developing ArcGIS Server applications Programming ArcGIS Server applications is about programming with ArcObjects that are running remotely on a server. Developers can become effective ArcGIS Server

More information

Configuring, Tuning and Managing ArcGIS Server. Dan O Leary James Cardona Owen Evans

Configuring, Tuning and Managing ArcGIS Server. Dan O Leary James Cardona Owen Evans Configuring, Tuning and Managing ArcGIS Server Dan O Leary James Cardona Owen Evans Introductions and Overview Welcome and Thanks for Attending Approach of this Session Share Best Practices and Techniques

More information

Web Server (IIS 6) ArcGIS Server 9.1. ArcGIS Server 9.1 Server Object Manager. Server Object Container

Web Server (IIS 6) ArcGIS Server 9.1. ArcGIS Server 9.1 Server Object Manager. Server Object Container Deploying and Tuning ArcGIS Server Presented by Jim Mason and Ian Sims ESRI Server Development ArcGIS Server Case Study San Francisco Routing Application Point to Point Driving Directions Enter Two Addresses

More information

Preface 1. Storage System 2. Contact Information 3 SIPLUS CMS. SIPLUS CMS X-Tools - User Manual Storage System. English.

Preface 1. Storage System 2. Contact Information 3 SIPLUS CMS. SIPLUS CMS X-Tools - User Manual Storage System. English. X-Tools - User Manual - 07 - Storage System Preface 1 Storage System 2 Contact Information 3 X-Tools User Manual - 07 - Storage System Release 2012-09 Release 2012-09 1 / 44 X-Tools - User Manual - 07

More information

SysGauge SYSTEM MONITOR. User Manual. Version 3.8. Oct Flexense Ltd.

SysGauge SYSTEM MONITOR. User Manual. Version 3.8. Oct Flexense Ltd. SysGauge SYSTEM MONITOR User Manual Version 3.8 Oct 2017 www.sysgauge.com info@flexense.com 1 1 SysGauge Product Overview SysGauge is a system and performance monitoring utility allowing one to monitor

More information

Legacy Client Chart (LCC) Installation Guide for Purkinje System

Legacy Client Chart (LCC) Installation Guide for Purkinje System Legacy Client Chart (LCC) Installation Guide for Purkinje System A Guide to Run and Configure the Legacy Client Chart (LCC) Solution For questions about using this guide please contact IMS@aohc.org Table

More information

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas ArcGIS Enterprise: Advanced Topics in Administration Thomas Edghill & Moginraj Mohandas Outline Overview: Base ArcGIS Enterprise Deployment - Key Components - Administrator Endpoints Advanced Workflows:

More information

Common Configuration Options

Common Configuration Options Common Configuration Options Unless otherwise noted, the common configuration options that this chapter describes are common to all Genesys server applications and applicable to any Framework server component.

More information

GE Ethernet Global Data Driver Help Kepware Technologies

GE Ethernet Global Data Driver Help Kepware Technologies GE Ethernet Global Data Driver Help 2012 Kepware Technologies 2 Table of Contents Table of Contents 2 4 Overview 4 Device Setup 5 Name Resolution 6 Exchange Configuration 7 Data Types Description 11 Address

More information

Architecting ArcGIS Server Solutions for Performance and Scalability

Architecting ArcGIS Server Solutions for Performance and Scalability Architecting ArcGIS Server Solutions for Performance and Scalability Dave Wrazien Eric Miller ESRI Developer Summit 2008 1 Schedule 75 minute session 60 65 minute lecture 10 15 minutes Q & A following

More information

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections:

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections: This chapter contains the following sections: Viewing the Task Library, page 1 Creating a Workflow, page 1 Example: Creating a Workflow, page 12 Resolving Workflow Validation Issues, page 15 Changing Flow

More information

IBM Content Manager for iseries. Messages and Codes. Version 5.1 SC

IBM Content Manager for iseries. Messages and Codes. Version 5.1 SC IBM Content Manager for iseries Messages and Codes Version 5.1 SC27-1137-00 IBM Content Manager for iseries Messages and Codes Version 5.1 SC27-1137-00 Note Before using this information and the product

More information

ADMINISTRATION & USAGE GUIDE SHORETEL VOICE FORMS IVR APPLICATION ShoreTel Professional Services. Introduction

ADMINISTRATION & USAGE GUIDE SHORETEL VOICE FORMS IVR APPLICATION ShoreTel Professional Services. Introduction ADMINISTRATION & USAGE GUIDE SHORETEL VOICE FORMS IVR APPLICATION ShoreTel Professional Services Introduction This application provides an Interactive Voice Response (IVR) system to interface with callers

More information

docalpha 5.0 Server Configuration Utility User Guide

docalpha 5.0 Server Configuration Utility User Guide docalpha 5.0 Server Configuration Utility User Guide Contents 1. docalpha Architecture Overview 3 1.1. docalpha Server Overview 3 2. Working with docalpha Server Configuration Utility 4 2.1. Starting docalpha

More information

ArcGIS Server Web Server Web Applications WWW. Applications. ArcGIS Server Manager. GIS Server. Data. Desktop GIS. ArcGIS Desktop (content author) SOM

ArcGIS Server Web Server Web Applications WWW. Applications. ArcGIS Server Manager. GIS Server. Data. Desktop GIS. ArcGIS Desktop (content author) SOM ArcGIS Server on Linux and Unix Architecture and Deployment Recommendations Peter D Souza and Ravi Narayanan Developer Summit 2007 1 Our Assumptions Familiarity with ArcGIS Server Familiarity with Solaris

More information

Performance Monitoring User s Manual

Performance Monitoring User s Manual NEC Storage Software Performance Monitoring User s Manual IS025-32E NEC Corporation 2003-2017 No part of the contents of this book may be reproduced or transmitted in any form without permission of NEC

More information

Interface Reference. McAfee Application Control Windows Interface Reference Guide. Add Installer page. (McAfee epolicy Orchestrator)

Interface Reference. McAfee Application Control Windows Interface Reference Guide. Add Installer page. (McAfee epolicy Orchestrator) McAfee Application Control 8.1.0 - Windows Interface Reference Guide (McAfee epolicy Orchestrator) Interface Reference Add Installer page Add an existing installer to the McAfee epo repository. Table 1

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

METADATA FRAMEWORK 6.3. Probe Configuration

METADATA FRAMEWORK 6.3. Probe Configuration METADATA FRAMEWORK 6.3 Probe Configuration Publishing Information Software version 6.3.160 Document version 34 Publication date May 22, 2017 Copyright 2005-2017 Varonis Systems Inc. All rights reserved.

More information

Interstage Shunsaku Data Manager Operator s Guide

Interstage Shunsaku Data Manager Operator s Guide Interstage Shunsaku Data Manager Operator s Guide Operator s Guide Trademarks Trademarks of other companies are used in this manual only to identify particular products or systems. Product Microsoft, Visual

More information

HarePoint Business Cards

HarePoint Business Cards HarePoint Business Cards For SharePoint Server 2010, SharePoint Foundation 2010, Microsoft Office SharePoint Server 2007 and Microsoft Windows SharePoint Services 3.0. Product version 0.3 January 26, 2012

More information

Using an ArcGIS Server.Net version 10

Using an ArcGIS Server.Net version 10 Using an ArcGIS Server.Net version 10 Created by Vince DiNoto Vince.dinoto@kctcs.edu Contents Concept... 2 Prerequisites... 2 Data... 2 Process... 3 Creating a Service... 3 Down Loading Shapefiles... 3

More information

Perle Dial-Out User s Guide

Perle Dial-Out User s Guide Perle Dial-Out User s Guide 95-2345-05 Copyrights Copyright 1996-2000, Perle Systems Limited and its suppliers. IBM is the registered trademark of International Business Machines Corporation. Microsoft,

More information

Foundstone 7.0 Patch 6 Release Notes

Foundstone 7.0 Patch 6 Release Notes Foundstone 7.0 Patch 6 Release Notes These release notes describe the changes and updates for Foundstone 7.0, patch 6. This application installs only the patch needed to update the Foundstone system. Foundstone

More information

Industrial Data Forwarder for Splunk Kepware, Inc.

Industrial Data Forwarder for Splunk Kepware, Inc. Industrial Data Forwarder for Splunk 2016 Kepware, Inc. Industrial Data Forwarder for Splunk 2 Table of Contents Table of Contents 2 Industrial Data Forwarder for Splunk 3 Overview 3 User Interface 4 Quick

More information

Learning What s New in ArcGIS 10.1 for Server: Administration

Learning What s New in ArcGIS 10.1 for Server: Administration Esri Mid-Atlantic User Conference December 11-12th, 2012 Baltimore, MD Learning What s New in ArcGIS 10.1 for Server: Administration Derek Law Product Manager Esri - Redlands ArcGIS for Server Delivering

More information

Dockit Migrator. Release Notes

Dockit Migrator. Release Notes Dockit Migrator Release Notes Version 11.0.6646 Performance improvement in folder migration in File share module. Improvements in loading users and groups from SharePoint sites during migration. Fixed

More information

File Processing Agent Installation and Setup Guide

File Processing Agent Installation and Setup Guide File Processing Agent Installation and Setup Guide Environment: Windows Version: 6.6.x Written by: Product Documentation, R&D Date: March 2011 ImageNow and CaptureNow are registered trademarks of Perceptive

More information

zenon manual Batch Control v.7.60

zenon manual Batch Control v.7.60 zenon manual Batch Control v.7.60 2017 Ing. Punzenberger COPA-DATA GmbH All rights reserved. Distribution and/or reproduction of this document or parts thereof in any form are permitted solely with the

More information

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE Knowledge Forum is a registered trademark of Knowledge Building Concepts. Administrator s Guide Macintosh Server--Version 4.1 or above Macintosh

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections:

Creating Workflows. Viewing the Task Library. Creating a Workflow. This chapter contains the following sections: This chapter contains the following sections: Viewing the Task Library, page 1 Creating a Workflow, page 1 Example: Creating a Workflow, page 13 Resolving Workflow Validation Issues, page 16 Changing Flow

More information

Older Operating Systems

Older Operating Systems Older Operating Systems Class Notes # 21 Windows 9X Maintenance January 27, 2004 Maintenance Wizard The Windows maintenance wizard automates the following: ScanDisk Disk Defragmenter Clearing system temporary

More information

Plasmon Diamond Library Manager

Plasmon Diamond Library Manager Plasmon Diamond Library Manager Release Details Product Release Notes Release Name: Diamond Library Manager Release Note Number: Note091 Release Version: 2.09.31 Release Date: 1 st July 2005 Release Type:

More information

User Manual. pdoc Pro SDK Server. Copyright 2018 Topaz Systems Inc. All rights reserved. Version 2.1. Last Update: March 15, 2018

User Manual. pdoc Pro SDK Server. Copyright 2018 Topaz Systems Inc. All rights reserved. Version 2.1. Last Update: March 15, 2018 User Manual pdoc Pro SDK Server Version 2.1 Last Update: March 15, 2018 Copyright 2018 Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal.

More information

Medivators Data Management Software Installation / User Manual

Medivators Data Management Software Installation / User Manual Medivators Data Management Software Installation / User Manual For DSD and SSD Endoscope Reprocessors Medivators is a registered trademark of Minntech Corporation. Windows and Windows Explorer, Excel,

More information

File Processing Agent

File Processing Agent File Processing Agent Installation and Setup Guide Perceptive Content, Version: 7.1.x Written by: Product Knowledge, R&D Date: March 2015 2015 Perceptive Software. All rights reserved Perceptive Software

More information

Recent Operating System Class notes 08 Administrative Tools (Part one) April 14, 2004

Recent Operating System Class notes 08 Administrative Tools (Part one) April 14, 2004 Recent Operating System Class notes 08 Administrative Tools (Part one) April 14, 2004 The administrative tools are a collection of system control and configuration utilities. The administrative tools include

More information

ACT-R Environment Manual

ACT-R Environment Manual Working Draft Dan Bothell Table of Contents Table of Contents...2 Preface...3 Introduction...4 Running the Environment...6 Environment Overview...9 Current Model...11 Model...13 Control...15 Current Data...30

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Ping Driver PTC Inc. All Rights Reserved.

Ping Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 3 Overview 4 Channel Properties General 4 Channel Properties Ethernet Communications 5 Channel Properties Write Optimizations

More information

SNAP AVF Plug-in Improvements Software Tutorial

SNAP AVF Plug-in Improvements Software Tutorial SNAP AVF Plug-in Improvements Software Tutorial Revision 0 July 2008 Prepared by: Applied Programming Technology, Inc. Bloomsburg, PA 17815 for: Knolls Atomic Power Laboratory Schenectady, NY 12301-1072

More information

Laserfiche Import Agent Quick Start Guide. White Paper

Laserfiche Import Agent Quick Start Guide. White Paper Laserfiche Import Agent Quick Start Guide White Paper Table of Contents Welcome to Import Agent... 3 What s New in Import Agent 10?... 4 Getting Started... 5 Import Agent Configuration Utility... 5 Creating

More information

Central Administration Console Installation and User's Guide

Central Administration Console Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Central Administration Console Installation and User's Guide SC27-2808-04 IBM Tivoli Storage Manager FastBack for Workstations Version

More information

Digital Data Manager Model 747

Digital Data Manager Model 747 Digital Data Manager Model 747 Staff Guide 3M Library Systems 3M Center, Building 225-4N-14 St. Paul, Minnesota 55144-1000 www.3m.com/library Copyright 2000, 2001, 2002 3M IPC. All rights reserved. 75-0500-4514-4,

More information

Tzunami Deployer Lotus Notes Exporter Guide

Tzunami Deployer Lotus Notes Exporter Guide Tzunami Deployer Lotus Notes Exporter Guide Version 2.5 Copyright 2010. Tzunami Inc. All rights reserved. All intellectual property rights in this publication are owned by Tzunami, Inc. and protected by

More information

GE Fanuc Automation CIMPLICITY HMI. Historical Data Analyzer. CIMPLICITY Monitoring and Control Products. Operation Manual

GE Fanuc Automation CIMPLICITY HMI. Historical Data Analyzer. CIMPLICITY Monitoring and Control Products. Operation Manual GE Fanuc Automation CIMPLICITY Monitoring and Control Products CIMPLICITY HMI Historical Data Analyzer Operation Manual GFK-1379C December 2000 Following is a list of documentation icons: GFL-005 Warning

More information

Server License Activation and Administration Guide. Lavastorm Analytics Engine

Server License Activation and Administration Guide. Lavastorm Analytics Engine Server License Activation and Administration Guide Lavastorm Analytics Engine Lavastorm Analytics Engine: Server License Activation and Administration Guide Legal notice Copyright THE CONTENTS OF THIS

More information

Face Intellect Software Package

Face Intellect Software Package AxxonSoft Face Intellect Software Package Administrator s Guide Version 1.0.5 Moscow 2011 1 Contents CONTENTS... 2 1 INTRODUCTION... 4 1.1 The purpose and structure of the Guide... 4 1.2 Purpose of Face

More information

I Management and Monitoring Services

I Management and Monitoring Services I Management and Monitoring Services If Novell ZENworks for Servers (ZfS) 3 Management and Monitoring Services displays an error message, you can look it up in the Error Messages chapter. If a problem

More information

ArcGIS for Server Michele Lundeen

ArcGIS for Server Michele Lundeen ArcGIS for Server 10.1 Michele Lundeen Summary Vision Installation and Configuration Architecture Publishing Functional Enhancements Cloud Migration and Best Practices Powerful GIS capabilities Delivered

More information

About the SPECTRUM Control Panel

About the SPECTRUM Control Panel About the SPECTRUM Control Panel The SPECTRUM Control Panel is a convenient Point and Click interface that provides facilities that let you configure SPECTRUM resources, start and stop SpectroSERVER, start

More information

Contents. Why You Should Read This Manual...ix. 1. Introduction... 1

Contents. Why You Should Read This Manual...ix. 1. Introduction... 1 Contents Why You Should Read This Manual...ix 1. Introduction... 1 Understanding Security... 2 Group and User Accounts... 2 Application Features... 3 Security Areas... 3 Using Windows Security... 7 Synchronizing

More information

Configuring Symantec Protection Engine for Network Attached Storage. Dell FluidFS 5.0

Configuring Symantec Protection Engine for Network Attached Storage. Dell FluidFS 5.0 Configuring Symantec Protection Engine for Network Attached Storage Dell FluidFS 5.0 Contents Abstract... 2 About software component... 2 How does FluidFS antivirus protect data on FluidFS cluster... 2

More information

Getting Started with ArcGIS for Server. Charmel Menzel and Ken Gorton

Getting Started with ArcGIS for Server. Charmel Menzel and Ken Gorton Getting Started with ArcGIS for Server Charmel Menzel and Ken Gorton Agenda What is ArcGIS for Server? Types of Web services Publishing resources onto the Web Clients to ArcGIS for Server Editions and

More information

Mail & Deploy Reference Manual. Version 2.0.5

Mail & Deploy Reference Manual. Version 2.0.5 Mail & Deploy Reference Manual Version 2.0.5 Introduction TABLE OF CONTENTS Introduction... 4 General Introduction... 5 Architecture... 6 Server... 6 Repository... 6 Client... 6 Contact Us... 7 Server...

More information

Product Guide. McAfee Performance Optimizer 2.2.0

Product Guide. McAfee Performance Optimizer 2.2.0 Product Guide McAfee Performance Optimizer 2.2.0 COPYRIGHT Copyright 2017 McAfee, LLC TRADEMARK ATTRIBUTIONS McAfee and the McAfee logo, McAfee Active Protection, epolicy Orchestrator, McAfee epo, McAfee

More information

Central Administration Console Installation and User's Guide

Central Administration Console Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Central Administration Console Installation and User's Guide SC27-2808-03 IBM Tivoli Storage Manager FastBack for Workstations Version

More information

SAM Server Utility User s Guide

SAM Server Utility User s Guide SAM Server Utility User s Guide Updated June 2015 PDF0157 (PDF) Houghton Mifflin Harcourt Publishing Company. Table of Contents Introduction... 3 Launching the SAM Server Utility... 3 The Home Screen...

More information

GUIDE. Workshare Troubleshooting Guide

GUIDE. Workshare Troubleshooting Guide GUIDE Workshare Troubleshooting Guide Table of Contents Understanding Troubleshooting...3 System Understanding... 3 Strategic Understanding... 3 Procedural Understanding... 4 Troubleshooting Strategy...5

More information

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved. Monitoring MarkLogic Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Monitoring MarkLogic

More information

Online Demo Guide. Barracuda PST Enterprise. Introduction (Start of Demo) Logging into the PST Enterprise

Online Demo Guide. Barracuda PST Enterprise. Introduction (Start of Demo) Logging into the PST Enterprise Online Demo Guide Barracuda PST Enterprise This script provides an overview of the main features of PST Enterprise, covering: 1. Logging in to PST Enterprise 2. Client Configuration 3. Global Configuration

More information

Export and Import Authority Records

Export and Import Authority Records OCLC Connexion Browser Guides Export and Import Authority Records Last updated: May 2016 OCLC Online Computer Library Center, Inc. 6565 Kilgour Place Dublin, OH 43017-3395 Revision History Date Section

More information

Falcon Trace Validation Builder User Manual

Falcon Trace Validation Builder User Manual Falcon Trace Validation Builder User Manual Copyright Protocol Insight. All rights reserved. Licensed software products are owned by Protocol Insight or its suppliers, and are protected by national copyright

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Server License Activation and Administration Guide. Lavastorm Analytics Engine 6.0

Server License Activation and Administration Guide. Lavastorm Analytics Engine 6.0 Server License Activation and Administration Guide Lavastorm Analytics Engine 6.0 Lavastorm Analytics Engine 6.0: Server License Activation and Administration Guide Legal notice Copyright THE CONTENTS

More information

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND 3.2... 4 INSTALLATION GUIDE FOR ECLIPSE 3.3 TO 4.3... 23 INSTALLATION GUIDE FOR ECLIPSE 4.4 OR HIGHER... 37 ECLIPSE VIEWERS... 41 DEVICES... 41

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation and User's Guide SC27-2809-04 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation

More information

Rhapsody Interface Management and Administration

Rhapsody Interface Management and Administration Rhapsody Interface Management and Administration Welcome The Rhapsody Framework Rhapsody Processing Model Application and persistence store files Web Management Console Backups Route, communication and

More information

Database Administration

Database Administration Unified CCE, page 1 Historical Data, page 2 Tool, page 3 Database Sizing Estimator Tool, page 11 Administration & Data Server with Historical Data Server Setup, page 14 Database Size Monitoring, page 15

More information

Introduction. Introduction

Introduction. Introduction Introduction Introduction This manual describes the outline of SSCom and the operation method of SSCom Client. It also describes the manual that you need to refer to when using the SSCom. Target Readers

More information

Dymo Printer Driver User Documentation. Version: 1.2 Date: 22-Apr-99

Dymo Printer Driver User Documentation. Version: 1.2 Date: 22-Apr-99 Dymo Printer Driver User Documentation Version: 1.2 Date: 22-Apr-99 Dymo Printer Driver User Document Introduction This document is aimed at empowering users to understand the Dymo printer driver software

More information

Chapter 6. Importing Data EAD Constraints on EAD

Chapter 6. Importing Data EAD Constraints on EAD Chapter 6 Importing Data EAD 2002 The Archivists Toolkit TM allows for the importing of valid EAD version 2002 finding aids into description resource and component records. Note: The AT does not guarantee

More information

Create a personal geodatabase

Create a personal geodatabase Create a personal geodatabase To create a personal geodatabase that corresponds to the same release as the ArcGIS for Desktop client you are using, follow these steps: 1. In ArcCatalog, right-click the

More information

SDM Wireless Server USER S GUIDE " " " " " " " " " " " " " " " " " " " " " " " " " " " "

SDM Wireless Server USER S GUIDE                            SDM Wireless Server USER S GUIDE " " " " " " " " " " " " " " " " " " " " " " " " " " " " PN: 961-052-006 Revision A November 1998 " NOTICE The information contained herein is proprietary and is provided

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

DataLogger Server Plug-in Help Kepware Technologies

DataLogger Server Plug-in Help Kepware Technologies DataLogger Server Plug-in Help 2011 Kepware Technologies 2 Table of Contents Table of Contents 2 4 Overview 4 Initial Setup Considerations 6 System Requirements 6 SQL Authentication 6 Windows Authentication

More information

Aquaforest Searchlight Release Notes

Aquaforest Searchlight Release Notes Aquaforest Searchlight Release Notes Version 1.30 April 2018 Aquaforest Limited 2001-2018 Web: www.aquaforest.com E-mail: info@aquaforest.com 1 Version 1.30.180418 1.1 Enhancements 1.1.1 Arabic OCR Added

More information

Usability Report. Author: Stephen Varnado Version: 1.0 Date: November 24, 2014

Usability Report. Author: Stephen Varnado Version: 1.0 Date: November 24, 2014 Usability Report Author: Stephen Varnado Version: 1.0 Date: November 24, 2014 2 Table of Contents Executive summary... 3 Introduction... 3 Methodology... 3 Usability test results... 4 Effectiveness ratings

More information

vcmp for Appliance Models: Administration Version

vcmp for Appliance Models: Administration Version vcmp for Appliance Models: Administration Version 12.1.1 Table of Contents Table of Contents Introduction to the vcmp System...7 What is vcmp?...7 Other vcmp system components...8 BIG-IP license considerations

More information

The Operating System. Chapter 6

The Operating System. Chapter 6 The Operating System Machine Level Chapter 6 1 Contemporary Multilevel Machines A six-level l computer. The support method for each level is indicated below it.2 Operating System Machine a) Operating System

More information

See Types of Data Supported for information about the types of files that you can import into Datameer.

See Types of Data Supported for information about the types of files that you can import into Datameer. Importing Data When you import data, you import it into a connection which is a collection of data from different sources such as various types of files and databases. See Configuring a Connection to learn

More information

PRODUCT MANUAL. idashboards Reports Admin Manual. Version 9.1

PRODUCT MANUAL. idashboards Reports Admin Manual. Version 9.1 PRODUCT MANUAL idashboards Reports Admin Manual Version 9.1 idashboards Reports Admin Manual Version 9.1 No part of the computer software or this document may be reproduced or transmitted in any form or

More information

DocAve Content Shield v2.2 for SharePoint

DocAve Content Shield v2.2 for SharePoint DocAve Content Shield v2.2 for SharePoint User Guide For SharePoint 2007 Revision A Issued August 2012 1 Table of Contents Table of Contents... 2 About DocAve Content Shield for SharePoint... 4 Complementary

More information

Simulator Driver PTC Inc. All Rights Reserved.

Simulator Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents Simulator Driver 1 Table of Contents 2 Simulator Driver 3 Overview 3 Setup 4 Channel Properties General 4 Channel Properties Write Optimizations 5

More information

SysGauge SYSTEM MONITOR. User Manual. Version 4.7. Apr Flexense Ltd.

SysGauge SYSTEM MONITOR. User Manual. Version 4.7. Apr Flexense Ltd. SysGauge SYSTEM MONITOR User Manual Version 4.7 Apr 2018 www.sysgauge.com info@flexense.com 1 1 SysGauge Product Overview...3 2 SysGauge Product Versions...6 3 Product Installation...7 4 System Monitor

More information

Tasktop Sync - Cheat Sheet

Tasktop Sync - Cheat Sheet Tasktop Sync - Cheat Sheet 1 Table of Contents Tasktop Sync Server Application Maintenance... 4 Basic Installation... 4 Upgrading Sync... 4 Upgrading an Endpoint... 5 Moving a Workspace... 5 Same Machine...

More information

Seagate Info. Objective. Contents. EPF File Generation for Page-on-Demand Viewing

Seagate Info. Objective. Contents. EPF File Generation for Page-on-Demand Viewing EPF File Generation for Page-on-Demand Viewing Objective Contents This white paper will explain the technical architecture of Seagate Info s page on demand viewing system, particularly describing the process

More information

Guide to SiS RAID Utility for Windows XP / 2000

Guide to SiS RAID Utility for Windows XP / 2000 Guide to SiS RAID Utility for Windows XP / 2000 1. General 1. After installing the SiS RAID utility, go to Start menu and choose Programs. From the Programs menu, choose SiS RAID Utility and click on SiSRaid

More information

DPF MANAGER USER MANUAL

DPF MANAGER USER MANUAL DPF MANAGER USER MANUAL INDEX 1. OVERVIEW... 4 2. INSTALLATION PROCEDURE... 4 2.1 JAVA 8... 4 2.2 WINDOWS... 5 2.2.1 INSTALLATION... 5 2.3 LINUX... 6 2.3.1 DEB INSTALLER... 6 2.3.2 RPM INSTALLER... 7 2.4

More information

EdgeCast Networks Inc. Smooth Streaming Administration Guide

EdgeCast Networks Inc. Smooth Streaming Administration Guide EdgeCast Networks Inc. Smooth Streaming Administration Guide Disclaimer Care was taken in the creation of this guide. However, EdgeCast Networks Inc. cannot accept any responsibility for errors or omissions.

More information

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS WORKFLOW BUILDER TM FOR MICROSOFT ACCESS Application Guide Version 06.05.2008 This document is copyright 2007-2008 OpenGate Software. The information contained in this document is subject to change without

More information

10 MONITORING AND OPTIMIZING

10 MONITORING AND OPTIMIZING MONITORING AND OPTIMIZING.1 Introduction Objectives.2 Windows XP Task Manager.2.1 Monitor Running Programs.2.2 Monitor Processes.2.3 Monitor System Performance.2.4 Monitor Networking.2.5 Monitor Users.3

More information

Preface. This guide describes the installation and activation of V7000 software.

Preface. This guide describes the installation and activation of V7000 software. Preface Scope and Objectives This guide describes the installation and activation of V7000 software. It contains all the information required to install and activate V7000 software to operate a GCOS7 system

More information

SECI USER MANUAL. Version For SECI versions Comments/suggestions to Matt Clarke

SECI USER MANUAL. Version For SECI versions Comments/suggestions to Matt Clarke SECI USER MANUAL Version 1.31 For SECI versions 1.1.48+ Comments/suggestions to Matt Clarke 1. Introduction...1 1.1. What is SECI?...1 2. Using SECI...2 2.1. Accounts...2 2.2. Configurations...2 2.2.1.

More information

MW100 CAN Bus Module Configuration Tool (MX118-CAN-M30/S1) User s Manual

MW100 CAN Bus Module Configuration Tool (MX118-CAN-M30/S1) User s Manual MW100 CAN Bus Module Configuration Tool (MX118-CAN-M30/S1) User s Manual 1 Contents Before Using the Software... 3 Explanation of Functions... 3 MX118 Part Names and Functions... 3 Operation Guide... 4

More information

Ranger 0.5 Audit Configuration

Ranger 0.5 Audit Configuration Ranger 0.5 Audit Configuration Introduction Scope of this document Configuration properties naming convention Audit to Solr Audit to Db Audit to HDFS Audit to Log4j Example Configure a log4j appender for

More information

IBM EXAM - C Information Analyzer v8.5. Buy Full Product.

IBM EXAM - C Information Analyzer v8.5. Buy Full Product. IBM EXAM - C2090-423 Information Analyzer v8.5 Buy Full Product http://www.examskey.com/c2090-423.html Examskey IBM C2090-423 exam demo product is here for you to test the quality of the product. This

More information

Funasset Limited Foundry House Foundry Road Taunton Somerset TA1 1JJ. Tel: +44 (0) Fax: +44 (0) mailmarkup.com funasset.

Funasset Limited Foundry House Foundry Road Taunton Somerset TA1 1JJ. Tel: +44 (0) Fax: +44 (0) mailmarkup.com funasset. Funasset Limited Foundry House Foundry Road Taunton Somerset TA1 1JJ Tel: +44 (0)1823 365864 Fax: +44 (0)1823 277266 mailmarkup.com funasset.com Copyright 2012 Funasset Limited. All rights reserved. Products

More information

SAM Server Utility User s Guide

SAM Server Utility User s Guide SAM Server Utility User s Guide Updated July 2014 Copyright 2010, 2012, 2014 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC

More information