PROBLEM

On Windows 2003 Server, the Local Security Authority Subsystem Service (lsass.exe) grows in CPU usage and memory utilization under heavy load

Last Published: April 26, 2020

Description

When ArcGIS Server .NET Web applications and Internet services are under heavy load (more than 25 concurrent requests per second), the Local Security Authority Subsystem Service (lsass.exe) system process can become overtaxed. This behavior can cause system performance degradation and even machine shutdown in extreme cases, such as a heavy load over periods of 12 hours or more.

This issue may also be encountered when exposing a public ArcGIS server instance with secure services. When the Google bot (crawl-66-249-71-66.googlebot.com) attempts to index the REST services directory, it can produce an excessive number of Web service requests. Stopping the Google bot from indexing the site or applying the solution provided below resolves the problem.

Cause

Web applications and services that work with ArcGIS Server .NET must run as users in the AGSUSERS and/or AGSADMIN operating system group. By default, this is accomplished by configuring a Web service or application to impersonate a specified identity when handled by the aspnet worker process.

The components of ArcGIS Server that handle Internet service requests, such as http://myArcGISServer/arcgis/services and http://myArcGISServer/arcgis/rest are themselves Web services. By default, these components impersonate the ArcGIS Web services account.

Every time a Web service or application that uses impersonation handles a request, the underlying ASP.NET worker process must use the Local Security Authority Subsystem Service process (lsass.exe) to authenticate. Under normal load conditions, the effect of this authentication operation is insignificant.

When a Web service or application that it is impersonating is under heavy load (more than 25 simultaneous connections per second) for extended periods of time, the per request authentication operations begin to severely affect the memory and processing footprint of the lsass.exe process.

Solution or Workaround

The burden on the lsass.exe process can be alleviated by altering the configuration of the aspnet worker process and the Web services or applications that are under heavy load.

The steps below outline how to configure the ArcGIS Web Services (SOAP and REST) to run in a separate IIS application pool with the identity of the ArcGIS Web services user, and how to disable per request impersonation.

The following instructions assume that the ArcGIS Web services account is called ArcGISWebServices (the default specified in the ArcGIS Server post installation utility). Modify this account name as appropriate for the system being used.
  1. Create a new IIS Application Pool and set its identity to the ArcGIS Web services account.
  1. Open Internet Information Services (IIS) Manager and navigate through the tree structure to the Application Pool folder.
  2. Right-click the Application Pool folder and click New > Application Pool.
  3. Give the application pool an ID, such as ArcGIS Server Services Application Pool, and select the option to continue with the default settings.
  4. Right-click the new application pool and click Properties.
  5. Click the Identity tab and select Configurable.
  6. Enter the name and password of the ArcGIS Web services account that was specified during the ArcGIS Server post installation process. Click OK.
  7. Re-enter the password to confirm and click OK.
Note:
With ArcGIS Server 10, this application pool already exists. Apply steps d through g to this application pool. 
  1. Add the ArcGIS Web services account to the IIS_WPG local operating system group.
  1. From the Windows Control Panel > Administrative Tools, open the Computer Management console.
  2. In the navigation pane, under the System Tools group, expand the Local Users and Groups node. Click Groups.
  3. In the details pane, right-click the IIS_WPG group and select Properties.
  4. In the IIS_WPG Properties dialog box, click the Add button.
  5. In the Select Users, Computers, or Groups dialog box, change the entry under 'From this location', if necessary, to the location that contains the user account for the ArcGIS Web services (ArcGISWebServices). If the account is on the local computer, the location should be the local machine name.
  6. Type the account name into the box under ‘Enter the object names to select’, click Check Names, and select the user.
Alternatively, click the ‘Advanced’ button, type account name or description and click ‘Find Now’. Select the user from search results, and click OK to return to the Select Users dialog box.
  1. Click OK in the two dialog boxes to save the settings. Close the Computer Management window.
  1. Grant the ArcGIS Web services account permissions to the IIS metabase.
If the Microsoft .NET Framework SDK is installed on the machine follow these instructions:
  1. Open a .NET command prompt with Start > (All) Programs > Microsoft .NET Framework SDK v2.0 > SDK Command Prompt.
  2. Type the following command at the prompt, substituting the ArcGIS Web services account name as appropriate:
aspnet_regiis -ga ArcGISWebServices
  1. Close the .NET command prompt by typing 'exit' and pressing the Enter key.
  If the Microsoft .NET Framework SDK is not installed, these instructions apply:
  1. Open a command prompt window by clicking Start > Run, typing 'cmd' in the Run dialog box, and pressing Enter.
  2. Type the following commands at the command prompt, substituting the ArcGIS Web services account name, as appropriate:
cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
aspnet_regiis -ga ArcGISWebServices
  1. Close the command prompt window by typing 'exit' and pressing the Enter key.
  1. Grant Modify permissions to the ArcGIS Web services account for the C:\Windows\Temp directory.
  1. Open Windows Explorer and navigate to the C:\Windows\Temp directory.
  2. Right-click C:\Windows\Temp and click Properties.
  3. In the Properties dialog box, click the Security tab.
  4. In the Security dialog box, click Add. The Select Users dialog box opens.
  5. In the Select Users dialog box, change 'From this location', if necessary, to the location of the ArcGIS Web services account, and type the account in the lower box (or browse to it with the Advanced button). Click OK to return to the Properties dialog box.
  6. In the Properties dialog box, make sure the ArcGIS Web services user is highlighted, and in the Allow column, check the Modify box.
  7. Click OK to save and close the Properties dialog box. Windows Explorer may also be closed.
  1. Configure the ArcGIS SOAP Web services to not use impersonation.
  1. Use Visual Studio or a text editor to open the web.config file in the C:\Inetpub\wwwroot\ArcGIS\Services folder (the ArcGIS Services folder may have been installed at a different location).
  2. In the web.config file, change the value for the Impersonate key to false:
<appSettings>
  <add key="ServiceInfoRefreshTimeInSeconds" value="10" />
  <add key="GCInterval" value="10" />
  <add key="Impersonate" value="false" />
</appSettings>
Note:
If the Impersonate key does not exist, add it by inserting the <add> element and set the key attribute to 'Impersonate' and the value attribute to 'false' as shown above.
  1. Save the web.config file.
  1. Configure the ArcGIS REST Web services to not use impersonation.
  1. Use Visual Studio or a text editor to open the rest.config file in the C:\Inetput\wwwroot\ArcGIS\REST folder (the ArcGIS REST folder may have been installed at a different location).
  2. In the rest.config file, change the value for the Impersonate key to false:
<?xml version="1.0" encoding="utf-8"?>
<Config xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xmlns:xsd="http://www.w3.org/2001/XMLSchema">
...
...
<Impersonate>false</Impersonate>
</Config>
Note:
If the Impersonate key does not exist, add it by inserting the <Impersonate> element and set the value to 'false' as shown above.
  1. Save the rest.config file.
  1. Add the ArcGIS Web Services (SOAP and REST) to the newly created application pool.
  1. Open the Internet Information Services (IIS) Manager from Control Panel > Administrative Tools.
  2. Expand the local computer node, the Web sites node, the Default Web site node, and the ArcGIS node.
  3. In the ArcGIS node, right-click Services and click Properties. The Properties dialog box opens for Services.
  4. On the Virtual Directory tab, select the 'Application pool' drop-down list and select the application pool created in step 1 of this article.
  5. Click OK to save and close the Properties dialog box.
  6. Repeat steps c through e for the REST services using 'REST' instead of 'Services' in step c.
  7. Close the IIS Manager.
Note:
With ArcGIS Server 10, the REST and SOAP endpoints are already in this application pool. This step can be skipped.
  1. Restart the ArcGIS Server Object Manager (SOM) service.
  1. Open the Services console from Control Panel > Administrative Tools.
  2. Right-click the ArcGIS Server Object Manager service and click 'Restart'.
  3. Close the Services window.

Article ID:000009253

Software:
  • ArcGIS Server

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options

Discover more on this topic