Skip to main content

Posts

Showing posts from March, 2010

Event ID: 6398

I used to get the following error in event log: The Execute method of job definition Microsoft.SharePoint.Search.Administration.SPSearchJobDefinition (ID 80d7c9cb-ece6-4631-9d61-5fa1a0e8596c) threw an exception To resolve this, I did the following simple steps: Go to Run command in SharePoint Server Type Services.msc and enter Locate "Windows SharePoint Services Search" Right-click on it and select "Stop" Right-click on it and select "Properties" Navigate to Log On Ensure it is running under domain account. Type the correct password Click OK In Services window, right-click on "Windows SharePoint Services Search" and select "Start" Now, the above error message is gone! Source: eggheadcafe.com

The SSP Timer Job Distribution List Import Job was not run

I used to get this error very often in Event Log: The SSP Timer Job Distribution List Import Job was not run. Reason: Logon failure: unknown user name or bad password After a quick search in net, I found the resolution for this. It is a simple 3 steps: Here, "newPassword" is the password which you use it for MOSS account. 1. On the machine where Central Administration resides, execute the following command: stsadm -o updatefarmcredentials -userlogin "domain user" -password "newPassword" 2. iisreset /noforce (optional) 3. Execute the following command: stsadm -o updateaccountpassword -userlogin "domain user" -password "newpassword" -noadmin It solved the problem! You can get more information here .