Solve the SharePoint "Search Service is offline" error

Source: Internet
Author: User
The moss error "the search service is offline" is displayed ". Specifically:

1. Choose "Management Center"> "Application Management"> "search service", and select "enable shared service providers for search, the crawling and propagation statuses are "the search service is offline ";

2. When you open shared service management> "Search"> "Search Settings", the following error occurs: "The Search Service is currently offline. Go to the Services page on the server in the SharePoint administration center to verify that the service is enabled ". This may also be caused by moving the indexer.

 

Solution Process:

1. It is suspected that the service is not started or the account permission is incorrect. Choose Administrative Tools> services to view the following two services:

Office Sharepoint Server search

Windows SharePoint Services search

Both services are started and the running account is already a domain administrator.

2. Check System Event Logs. Related errors found:

(1) The SQL database "wss_search_sps" cannot be found on the SQL server instance "192.168.10.250 ". The following contains other error messages from SQL Server.
The requested database wss_search_sps cannot be accessed ". Logon Failed. User 'supremetest \ spsadmin' Login Failed.

(2) job definition Microsoft. Sharepoint. Search. Administration. spsearchjobdefinition with ID 9388c075-0423-43fd-b23b-54dc6cb3f958 raises an exception. Detailed information is provided below.

The requested database wss_search_sps cannot be accessed ". Logon Failed. User 'supremetest \ spsadmin' Login Failed.

 

It seems to be a database problem.

3. Check the wss_search_sps database in the database and check that the database status is suspicious. Further Check related logs and find that an error occurs after a backup is restored. Modify the database:

Use master
Go
Sp_configure 'Allow updates', 1 reconfigure with override
Go
Alter database wss_search_sps set emergency
Go
Sp_dboption 'wss _ search_sps ', 'single user', 'true'
Go
DBCC checkdb ('wss _ search_sps ', 'repair _ allow_data_loss ')
Go
Alter database wss_search_sps Set Online
Go
Sp_configure 'Allow updates', 0 reconfigure with override
Go
Sp_dboption 'wss _ search_sps ', 'single user', 'false'
Go

 

After the command is executed, wss_search_sps is available.

4. Open "Administrative Tools"> "services" and restart the following two services to solve the problem.

Office Sharepoint Server search

Windows SharePoint Services search

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.