Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT

Qlik Sense Services not starting automatically after a reboot or an Upgrade

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Rakesh_HB
Support
Support

Qlik Sense Services not starting automatically after a reboot or an Upgrade

Last Update:

May 17, 2021 2:21:09 AM

Updated By:

Sonja_Bauernfeind

Created date:

May 14, 2021 3:16:30 PM

When the server restarts normally or when the Server restarts after Qlik Sense upgrade, all Qlik services start automatically except services Qlik Logging Service (or Qlik Sense Engine Service).

 

Environment

 

Resolution

 

The required services may not have started on time or in the right order. For the correct startup order see Manual Start and Stop order of Qlik Sense services.

 

Set Services to start delayed

  1. Open the Windows Services Console
  2. Locate the Qlik Sense Services
  3. Configure every service (except the QlikSenseRepositoryDatabase) by:
    1. Opening the Services
    2. Choosing the Startup type in the General tab
    3. Setting it to Delayed 
  4. Reboot

 

Increase Service Timeout

If the above has not resolved the issue, the Windows Service Timeout needs to be increased. The default value is 30 seconds. We provide a PowerShell script that allows an Administrator to set it to 2 minutes.

Alternatively, change the value in the registry. See Qlik Sense: "Error 1053: The service did not respond to the start control request in a timely fashio... for details.

 

 

function Set-ServicePipeTimeout
{
	param
	(
		$Timeout = "120000"
	)
	$registryPath = "HKLM:\SYSTEM\CurrentControlSet\Control"
	$Name = "ServicesPipeTimeout"
	If (!(Test-Path $registryPath))
	{
		New-Item -Path $registryPath -Force | Out-Null
	}
	New-ItemProperty -Path $registryPath -Name $name -Value $Timeout -PropertyType DWORD -Force
}
Set-ServicePipeTimeout

 

 

 

Labels (1)
Version history
Last update:
‎2021-05-17 02:21 AM
Updated by: