Event Type: Error
Event Source: Office Server Search
Event Category: Gatherer
Event ID: 2424
Date: 05/01/2012
Time: 13:03:29
User: N/A
Computer: TEST01
Description:
The update cannot be started because the content sources cannot be accessed. Fix the errors and try the update again.
Context: Application 'SharedServices1', Catalog 'Portal_Content'
Okay so you have checked and you have Search account (SP_Search) and the Content account (SP_Content) setup or you have decided to use the Search account to double up as the content account. But you still get the above error?
I double, triple and quadruple checked the Search account it had the correct access and it worked in my dev and live environments so why was it not working in the staging environment. But I was doing it from my own local machine and it worked fine.
Well remember to old adage of going back to basics. The search crawl happen from the server. When I went onto the server and tried to access the site I could not do it!!!
Oh dear someone forgot to add the Loopback fix !!
As always it’s a simple answer to a very annoying issue ;-)
Loopback fix on the server.
To set the DisableLoopbackCheck registry key, follow these steps:
- Set the DisableStrictNameChecking registry entry to 1. For more information about how to do this, click the following article number to view the article in the Microsoft Knowledge Base:
281308 (http://support.microsoft.com/kb/281308/ ) Connecting to SMB share on a Windows 2000-based computer or a Windows Server 2003-based computer may not work with an alias name - Click Start, click Run, type regedit, and then click OK.
- In Registry Editor, locate and then click the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
- Right-click Lsa, point to New, and then click DWORD Value.
- Type DisableLoopbackCheck, and then press ENTER.
- Right-click DisableLoopbackCheck, and then click Modify.
- In the Value data box, type 1, and then click OK.
- Quit Registry Editor, and then restart your computer.
Do it via powershell
New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -Value "1"