Comprehensive data protection for all workloads
Post Reply
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Veeam services not starting first time on v13

Post by kevin.boddy » 1 person likes this post

Hi,

Is anyone else seeing this issue where your Veeam services do not start on the first try, particularly the Veeam Backup Service?
If we keep trying to start the services they eventually start after 20-30 minutes.
I'm seeing two .NET runtime errors and then a Veeam service start error in the Windows application log.
There are no Veeam logs generated until the service starts only this Dotxxxx.tmp file present in the Veeam logs folder.

This happens on multiple backup servers with different operating systems and patch levels. AV exclusions in place. The only common denominator is Veeam installed.
Also happens on servers just running a few Veeam services like the Veeam PowerShell Management Service.

Code: Select all

Category: Veeam.Backup.Service
EventId: 0

Failed to wait for Identity service process to be initialized: timed out

Category: Veeam.Backup.Service
EventId: 0

   at Veeam.Backup.ServiceLib.CIdentityServiceProcess.TryToWaitForServiceInitializedEvent(GlobalEvent initializedEvent, IManagedExecProcess process)
   at Veeam.Backup.ServiceLib.CIdentityServiceProcess.StartServiceProcessAndWaitForInitializationEvent()
   at Veeam.Backup.ServiceLib.CIdentityServiceProcess.StartServiceProcessIfIsNotRunning()
   at Veeam.Backup.ServiceLib.CIdentityService.Start()
   at Veeam.Backup.ServiceLib.CVbServiceImpl..ctor(CVbEnvironment env, IServiceShutdownLifetime shutdownLifetime, CancellationToken term)
   at Veeam.Backup.Service.CVbrStartup.OnStart()

Service cannot be started. System.Exception: Failed to wait for Identity service process to be initialized: timed out
   at Veeam.Backup.ServiceLib.CIdentityServiceProcess.TryToWaitForServiceInitializedEvent(GlobalEvent initializedEvent, IManagedExecProcess process)
   at Veeam.Backup.ServiceLib.CIdentityServiceProcess.StartServiceProcessAndWaitForInitializationEvent()
   at Veeam.Backup.ServiceLib.CIdentityServiceProcess.StartServiceProcessIfIsNotRunning()
   at Veeam.Backup.ServiceLib.CIdentityService.Start()
   at Veeam.Backup.ServiceLib.CVbServiceImpl..ctor(CVbEnvironment env, IServiceShutdownLifetime shutdownLifetime, CancellationToken term)
   at Veeam.Backup.Service.CVbrStartup.OnStart()
   at Veeam.Backup.Core.Service.CWindowsServiceLifetime.OnStart(String[] args)
   at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)
#07929117
tinto1970
Veeam Legend
Posts: 159
Liked: 53 times
Joined: Sep 26, 2013 8:40 am
Full Name: Alessandro T.
Location: Bologna, Italy
Contact:

Re: Veeam services not starting first time on v13

Post by tinto1970 » 1 person likes this post

yes I noticed it too in my lab. I have to manually restart some services after a reboot.

I am also experiencing a issue with the update to lastest build: the setup does not "see" that an Update is possibile, it only offers the Modify (remove) option
Alessandro aka Tinto | VMCE 2024 | Veeam Legend | VCP-DCV 2023 | vExpert 2025
blog.tinivelli.com
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Re: Veeam services not starting first time on v13

Post by kevin.boddy » 2 people like this post

Apparently this is a known issue the was raised on the community forums with the RTM version of v13.

Veeam engineer suggests running
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control" -Name ServicesPipeTimeout -Value 60000 -Type DWord
to increase the timeout.

Microsoft says this is a workaround and to research the problem.

So far I've only been able to get it to work by increasing the timeout to 5 minutes.
petesteven
Veeam Vanguard
Posts: 35
Liked: 41 times
Joined: May 08, 2018 7:34 am
Full Name: Peter Steffan
Contact:

Re: Veeam services not starting first time on v13

Post by petesteven » 2 people like this post

Do your servers meet the necessary system requirements? In my experience, startup and service problems tend to occur when the server has insufficient resources.
Peter Steffan - My Blog: petersvirtualworld.de; VMCE2024, VMCA2024, Veeam Vanguard since 2025, Object First ACES since 2026
DaStivi
Veeam Legend
Posts: 464
Liked: 92 times
Joined: Jun 30, 2015 9:13 am
Full Name: Stephan Lang
Location: Austria
Contact:

Re: Veeam services not starting first time on v13

Post by DaStivi » 1 person likes this post

You can review disk latency in Task Manager or monitor disk queue length using Performance Monitor (PerfMon). High values may indicate that your system is overloaded.
Additionally, antivirus (AV) scanners can sometimes cause similar issues by interfering with I/O operations.
Another possible reason could be network or firewall restrictions. If your Internet firewall is blocking or delaying Certificate Revocation List (CRL) checks, these operations may take significantly longer than expected.
Gustav
Enthusiast
Posts: 55
Liked: 71 times
Joined: May 29, 2020 2:12 pm
Full Name: Gustav Brock
Contact:

Re: Veeam services not starting first time on v13

Post by Gustav » 2 people like this post

Do your servers meet the necessary system requirements?
A valid question.
I guess that quite a few are not aware of the requirement of V13 for 8 cores minimum, making an upgrade from V12 non-trivial in many scenarios.
david.matthewson
Influencer
Posts: 13
Liked: 4 times
Joined: Oct 08, 2018 3:37 pm
Full Name: D K Matthewson
Contact:

Re: Veeam services not starting first time on v13

Post by david.matthewson » 2 people like this post

I too found this and my current workaround is to change all the Veeam services to 'Delayed Start' on the Windows server to allow the box to start other NT Services first and then, when the flurry is over, start Veeam.

You can alter the default 'delay' with this reg key.

Create the following registry key via the Windows Registry Editor.

HKLM\SYSTEM\CurrentControlSet\Control\AutoStartDelay

It is of type REG_DWORD. Set the value of the key to the desired delay in milliseconds (e.g. 60000 for one minute). You will need to reboot for the change to take effect. Remember this change affects all Automatic (Delayed Start) services.

Perhaps not ideal but it works!
aschaupp

Re: Veeam services not starting first time on v13

Post by aschaupp »

I had to do both.
Increase assigned memory to the virtual machine and delay service starts - it is not yet perfect but without registry it sits for around 3-5 minutes before you can access the console due to not all services being up
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Re: Veeam services not starting first time on v13

Post by kevin.boddy » 2 people like this post

Definitely not a resource issue. 24x cores and 160GB of memory. No disk IO issues. CPU is hardly used when these services try to start. This looks more like a Veeam+.NET issue to me.
Happens on all our servers. AV and EDR exclusions are in place.

You can see this DotNetZIP-xxxxx.tmp file is created in the log folder when the service is trying to start and this grows to about +2.5GB and once the service starts this file disappears and normal Veeam logging commences.
If you watch task manager for the service it's memory usage grows very slowly until it finally starts.
csm
Service Provider
Posts: 13
Liked: 2 times
Joined: Apr 08, 2022 8:34 am

Re: Veeam services not starting first time on v13

Post by csm »

Hi Kevin,

did you get a solution from the support on this case? I'm having the same issue. Also have a ticket open, but so far nothing has helped.

Thanks!
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Re: Veeam services not starting first time on v13

Post by kevin.boddy » 1 person likes this post

Hi,

Sorry no. I still have this problem on all my VBR servers. Veeam support thought it was the Veeam Service Provider Console agent but updating that did nothing.

Thanks
Kevin
csm
Service Provider
Posts: 13
Liked: 2 times
Joined: Apr 08, 2022 8:34 am

Re: Veeam services not starting first time on v13

Post by csm »

Thanks Kevin. Yesterday, the Backup service started after the engineer ran the following command in Powershell:

.\Veeam.Backup.Service.exe /resetsettings

after that he did a reboot and then the service started. It took the normal amount of time for it to start. I still haven't restarted the machine or the service since, because I'm not trusting it. But this week I will need to do a maintenance. Actually my problem started after applying the latest security patch, which was pretty insane, given that it's just a tiny patch and then your server is broken... Anyhow. Maybe this might help. The support engineer said that it might have been something to do with a self-signed certificate that the Veeam Identity service is using (which is part of Veeam Backup service) and this command also somehow resets this certificate.
jasonede
Service Provider
Posts: 159
Liked: 41 times
Joined: Jan 04, 2018 4:51 pm
Contact:

Re: Veeam services not starting first time on v13

Post by jasonede »

I've had this affect one of our servers too. Not all the services starting on bootup. Trying increasing auto start delay
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Re: Veeam services not starting first time on v13

Post by kevin.boddy » 2 people like this post

Hi,

I tried increasing my startup delay to 10 minutes. It made no difference the service is failing and stopping as can be seen in the Windows Event logs.

I will give that /resetsettings a try and see what happens. I am just wary to try reset certificates without knowing the impact to other software connecting to the VBR server.

Thanks
Kevin
rendest
Influencer
Posts: 21
Liked: 6 times
Joined: Feb 01, 2017 8:36 pm
Full Name: Stef
Contact:

Re: Veeam services not starting first time on v13

Post by rendest »

Hi

Just a quick observation from my end, we experienced this the first reboot after v13 upgrade.

We adjusted the timeout to 10 min after which the service started, but we observed the service reads the entire Svc.VeeamBackup.log file, line by line. This file is 18 GB in size and doesn't seem to get rotated (anymore).

Upon deleting the file, the service starts within seconds again.

Kind regards
david.matthewson
Influencer
Posts: 13
Liked: 4 times
Joined: Oct 08, 2018 3:37 pm
Full Name: D K Matthewson
Contact:

Re: Veeam services not starting first time on v13

Post by david.matthewson » 1 person likes this post

Interesting - my Svc.VeeamBackup.log is broken up into 10MB chunks and is less than 50MB. [13.0.1.180]

Still very slow to start though...☺
melo1983
Novice
Posts: 3
Liked: 1 time
Joined: Jan 22, 2026 7:58 pm
Full Name: Marco
Contact:

Re: Veeam services not starting first time on v13

Post by melo1983 » 1 person likes this post

Hello everyone.
I have the same issue as well; for now I’ve solved it by using the command .\Veeam.Backup.Service.exe /resetsettings
I restarted the server and all the services started up normally.
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Re: Veeam services not starting first time on v13

Post by kevin.boddy » 1 person likes this post

We've still got this issue. But it's not only the Veeam Backup Service that fails to start. Even services like the AHV service will randomly fail to start.
We have tried removing the logs folder completely and starting from the scratch but it does the same thing.
aschaupp

Re: Veeam services not starting first time on v13

Post by aschaupp »

Hi Kevin,

I tried again today with Windows Updates and also the latest Update for Veeam 13.
Installation with patch only exe went through fine. No hickup with the windows updates, but still the services take a long time to start.
Did you also update and did something change for you in your environment?
It was mentioned that MS is looking into this, is there more information on that side possibly?
kevin.boddy
Service Provider
Posts: 283
Liked: 54 times
Joined: Jan 30, 2018 3:24 pm
Full Name: Kevin Boddy
Contact:

Re: Veeam services not starting first time on v13

Post by kevin.boddy »

Hi,

As of 13 March 2026, RnD is still looking into the issue.

Thanks
Kevin
Post Reply

Who is online

Users browsing this forum: mringais and 74 guests