Article ID: 953448 - Last Review: August 5, 2008 - Revision: 1.0 Error message when you try to access the search settings page in SharePoint Server 2007: "The search service is currently offline"On This PageSYMPTOMSWhen you try to access the search settings page in Microsoft Office SharePoint Server 2007, you receive an error message that resembles the following: The search service is currently offline. Visit the Services on Server page in SharePoint Central Administration to verify whether the service is enabled. This might also be because an indexer move is in progress.
CAUSEThis problem occurs because of the restrictions on the port that is requested. Therefore, the Web service call is not processed, the search service does not start, and indexing does not occur. RESOLUTIONTo resolve this problem, use one of the following methods, as appropriate for your situation. Method 1On the proxy server that does not pass the traffic requests, configure the proxy server to pass the traffic on the specified port. Typically, TCP port 56737 and SSL port 56738 are used to pass traffic.Method 2Configure the Web.config file for the Central Administration Web site to bypass the proxy server so that the communication with other nodes in the farm is direct.Note You have to configure the Web.config file for the Central Administration Web site to bypass the proxy server on each node where Central Administration is provisioned. MORE INFORMATIONThe proxy setting configuration for the default Web.config file setting is as follows: <system.net>
<defaultProxy>
<proxy autoDetect="true" />
</defaultProxy>
</system.net><system.net>
<defaultProxy>
<proxy
usesystemdefault="false"
proxyaddress="http://someproxy:74"
bypassonlocal="true"
/>
<bypasslist>
<add address="[a-z]+\.somebody\.com" />
<add address="Server1" />
<add address="Server2" />
<add address="Server3" />
<add address="Server4" />
<add address="Server5" />
<add address="Server6" />
</bypasslist>
</defaultProxy>
</system.net>
| Article Translations
|

Back to the top
