Question

The SharePoint timer service unexpectedly stopped, now I need to reset it to default state because there is a change in login account and password. This is the reason that might be causing this issue.

How can I reset the timer service in this case?

Was it helpful?

Solution 4

check may be this was happen for

I set my farm account and service account same, that is not suggested

OTHER TIPS

Once you have changed the credentials, just restart the timer service. This will reset the credentials and apply the new ones.

Restating the service will not create any problems.

You can go through the Url :

https://technet.microsoft.com/en-us/library/ee704549.aspx

or you can apply this:

$farm = Get-SPFarm
$farm.TimerService.Instances | foreach { $_.Stop(); $_.Start(); }

You might want to try clearing the configuration cache.

The steps for doing this are posted on a few places on the web, here's a link to one: http://blogs.msdn.com/b/jamesway/archive/2011/05/23/sharepoint-2010-clearing-the-configuration-cache.aspx

The steps are formatted and it'll take too long to copy and paste and reformat here, but essentially -

  • Stop the timer service

  • Go to %SystemDrive%\ProgramData\Microsoft\SharePoint\Config\*GUID*

  • Back up Cache.ini

  • Delete all the .xml files

  • Open Cache.ini

  • Replace the contents with the number 1

  • Save the file

  • Start the timer service.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top