SharePoint 2010 Search Service is not working on replication of Servers.

Hi, I have a problem. I have a SharePoint Farm in which there are two servers with ip's 192.168.8.60 and 192.168.8.62. Both are replicas of each other. The search service is working on 192.168.8.60 and not working on 192.168.8.62. What can be the problem?
Also tell me how can I make the search service working on 192.168.8.62. What can be the issue?

Hi,
Could you provide more details about how the search service doesn’t work?
Are the search service unable to be started in CA -> Application Management -> Manage services on server? Or did you find it not working when you did searching? If that is the case, could you provide the error about
it?
It would be helpful to solve this issue if you provide more details about the issue.
Best Regards,
Dean Wang
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • Sharepoint 2010 search service from C# web service and Powershell - passing credentials to search

    Good morning everyone,
    I really need your expert help about the following issue. I ve developed a web service in C#. Its core code has a Powershell script inside which makes a call to SharePoint 2010 search service to make some search queries, and returns some URL of some files. 
    In Powershell code I make connection to SharePoint search service using the Farm Admin account. This system works, but given results are not filetered by the user using the web service (I remember you I m using the Farm admin account in PS code)
    How can I use user account to make some queries ? How can I filter search results by user ? In Powershell code I put username and password of Farm Admin account and I know them because I m the farm administrator, but
    what about if I want to pass Powershell code some other user credentials ? Of course I cannot know his credential ..  Can I do it , in which way ?
    Any help is really appreciated !
    Gae 

    Hi Gae, if you are using web services, you shouldn't need to add a SharePoint DLL to your project. I would advise against using C# -> PS -> Web Service Call -> PS -> C# if you could go straight C# -> Web Service -> C#.
    Anyways, back to the matter at hand. Do you know what type of authentication your SharePoint server is running? Is it direct NTLM, NTLM over Kerberos, Claims, or something different?
    The following article provides the various types of impersonation available in SharePoint:
    http://extreme-sharepoint.com/2012/05/30/impersonation-elevation-of-privileges/
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Problem rename sharepoint 2010 search service application admin database

    Hi all,
    i have a problem that hopefully someone has an answer to.  i am not too familiar with sharepoint so please excuse my ignorance.
    we have sharepoint 2010 on a windows 2008r2 server.  everything seems to work fine.  but as you know, the default database names are horrendous.  i have managed to rename all of them, except for the "search service application" admin
    database.
    the default is: Search_Service_Application_DB_<guid>
    the other 2 databases (crawl and property) were renamed without a problem.
    we are following the article from technet on how to rename the search service admin db (http://technet.microsoft.com/en-nz/library/ff851878%28en-us%29.aspx).  it says to enter the following command:
    $searchapp | Set-SPEnterpriseSearchServiceApplication -DatabaseName "new database name" -DatabaseServer "dbserver"
    however, i get an error about identity being null.  no big deal, i add the -Identity switch and the name of my search service application.  but the real problem comes the error it throws:
    Set-SPEnterpriseSearchServiceApplication : The requested database move was aborted as the associated search application is not paused.
    At line:1 char:54
    + $searchapp | Set-SPEnterpriseSearchServiceApplication <<<<  -Identity "Search Service Application" -DatabaseName "SharePoint2010_Search_Service_Application_DB" -DatabaseServer "dbserver"
        + CategoryInfo          : InvalidData: (Microsoft.Offic...viceApplication:
       SetSearchServiceApplication) [Set-SPEnterpriseSearchServiceApplication], I
      nvalidOperationException
        + FullyQualifiedErrorId : Microsoft.Office.Server.Search.Cmdlet.SetSearchS
       erviceApplication
    when i look at the crawling content sources, i see "Local SharePoint Sites" and it's status is Idle.  i even looked at this article on how to pause the search to no avail.  (http://technet.microsoft.com/en-us/library/ee808864.aspx)
    does someone know how i can rename my Search Service Applcation Admin database properly?  or at least "pause" that service so i can rename it?
    thank you all in advanced

    If you want to have no guids for your search admin db, i recommend you check out this script :)
    just delete your search service application (assuming you have just started)
    Alpesh Nakar's Blog
    Alpesh
    Just SharePoint Just SharePoint Updates
    SharePoint Conference Southeast Asia
    Oct 26-27 2010 Contributing Author
    SharePoint 2010 Unleashed
    MCTS: SharePoint 2010 Configuration
    MCITP: SharePoint 2010 Administrator

  • Create SharePoint 2010 Search Service Application Using Powershell

    Hi Team,
    Could you please assist me in completing the search service application for
    two server using powershell. Both the servers will be running all the component
    Version SharePoint 2010
    # 1.Setting up some initial variables.
    write-host 1.Setting up some initial variables.
    $SSAName = "Search Service Application"
    $SVCAcct = "Domain\ServiceAccount"
    $SearchAppPoolName ="DefaultAppPool"
    $SSI = get-spenterprisesearchserviceinstance -local
    $err = $null
    $SSADBName="Search_AdminDB"
    $SSADBServer="DBServer"
    $host1="Server1"
    $host2="Server2"
    # Start Services search services for SSI
    write-host Start Services search services for SSI
    Start-SPEnterpriseSearchServiceInstance -Identity $SSI
    # 2.Create an Application Pool.
    write-host 2.Create an Application Pool.
    #$AppPool = new-SPServiceApplicationPool -name $SSAName"-AppPool" -account $SVCAcct
    $AppPool = Get-SPServiceApplicationPool -Identity $SearchAppPoolName -ErrorAction SilentlyContinue
    # 3.Create the SearchApplication and set it to a variable
    write-host 3.Create the SearchApplication and set it to a variable
    $SearchApp = New-SPEnterpriseSearchServiceApplication -DatabaseServer $SSADBServer -Name $SSAName -applicationpool $AppPool -databasename $SSADBName
    #4 Create search service application proxy
    write-host 4 Create search service application proxy
    $SSAProxy = new-spenterprisesearchserviceapplicationproxy -name $SSAName"ApplicationProxy" -Uri $SearchApp.Uri.AbsoluteURI
    # 5.Provision Search Admin Component.
    write-host 5.Provision Search Admin Component.
    set-SPenterprisesearchadministrationcomponent -searchapplication $SearchApp -searchserviceinstance $SSI
    # 6.Create a new Crawl Topology.
    write-host 6.Create a new Crawl Topology.
    $CrawlTopo = $SearchApp | New-SPEnterpriseSearchCrawlTopology
    New-SPEnterpriseSearchCrawlComponent -SearchTopology $newTopology -SearchServiceInstance $hostA
    Source:blog.MSDN Author- Russ Maxwell
    Thanks Basva

    Could you please assist me in completing the search service application for
    two server using powershell. Both the servers will be running all the component 
    Hi Basva,
    Do you want to provision two search service applications in single farm?
    Commonly, only one search service application is needed in a farm for Search function.
    Here are articles for detail information about how to provision search service application using powershell:
    http://blogs.msdn.com/b/jjameson/archive/2011/02/28/powershell-script-to-configure-search-in-sharepoint-server-2010.aspx
    http://blogs.msdn.com/b/russmax/archive/2009/10/20/sharepoint-2010-configuring-search-service-application-using-powershell.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Search service is not working in sharepoint 2013

    Dear Support,
    please find below mentioned log file details.
    Timestamp              
    Process                                
    TID   Area                          
    Category                      
    EventID Level    
    Message Correlation
    07/07/2014 18:10:33.94 w3wp.exe (0x1F20)                      
    0x33AC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Request (POST:http://sps2013:5555/sites/default/_vti_bin/cellstorage.svc/CellStorageService:ExecuteCellStorageRequest")). Parent No
    f92fa29c-af24-90b5-73e5-689e61a9374a
    07/07/2014 18:10:33.94 w3wp.exe (0x1F20)                      
    0x33AC
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Name=Request (POST:http://sps2013:5555/sites/default/_vti_bin/cellstorage.svc/CellStorageService:ExecuteCellStorageRequest")
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.97 w3wp.exe (0x1F20)                      
    0x33AC
    SharePoint Foundation         DistributedCache              
    air4a Monitorable
    Token Cache: Failed to get token from distributed cache for '0).w|s-1-5-21-3426921168-2525899157-3900784499-1235'.(This is expected during the process warm up or if data cache Initialization is getting done by some other thread).
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.97 w3wp.exe (0x1F20)                      
    0x33AC
    SharePoint Foundation         DistributedCache              
    air4b Monitorable
    Token Cache: Reverting to local cache to get the token for '0).w|s-1-5-21-3426921168-2525899157-3900784499-1235'.
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.97 w3wp.exe (0x1F20)                      
    0x33AC
    SharePoint Foundation         Authentication Authorization  
    agb9s Medium  
    Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|compusoftadviso\sanjeev, ClaimsCount=23
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.97 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Site=/sites/default 3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.99 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Cobalt                        
    acab3 Medium  
    Correlation provided by the client: {1B7098FF-FBA0-41AF-B204-CE6A9E0F91F3}
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.99 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Files                        
    aiv4w Medium  
    Spent 0 ms to bind 24678 byte file stream
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:33.99 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Cobalt                        
    aihco Medium  
    Count of put errors: 0.  Last error: Nil at 01/01/0001 00:00:00
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.07 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 07/07/2014 18:10:33.99, Original Level: Verbose] SQL connection time: 0.0728
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.07 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Database                      
    8acb High    
    [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.07 NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x1E10 Search                        
    Content Processing            
    ajpm6 Monitorable
    Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer: Failed to create session for index system: SP82c561085f6e: Microsoft.Ceres.SearchCore.Services.ContentRouter.ContentException: Unable to connect to index system SP82c561085f6e    
    at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.VerifyIndexSystem(String indexSystem)     at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.OpenSession(String indexSystem, Action`1 callback, IDictionary`2 defaultPolicy)    
    at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.GetSession(String indexSystem)
    1c31d821-5642-4389-b08d-13c428fc62bd
    07/07/2014 18:10:34.08 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Information Rights Management
    ajd2k Medium  
    Information Rights Management (IRM): The email address of the requesting user is successfully set to IRM.
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.08 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Information Rights Management
    ai4ko Medium  
    Information Rights Management (IRM): The IRM status of the document [CRM Developer Documents/CRM/POCs/INDUSIND/Documents/Workflow_Planning.xlsx] is: alreadydecrypted (5), the return values is: 0x0.
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.10 w3wp.exe (0x1F20)                      
    0x2CE8
    SharePoint Foundation         Topology                      
    e5mc Medium  
    WcfSendRequest: RemoteAddress: 'http://sps2013:32843/ea7d1cc735094658a1c50ac8debd7f1d/MetadataWebService.svc' Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges2'
    MessageId: 'urn:uuid:2d6aa8f4-33dc-40b6-b104-42939cc050d3'
    fda2d36a-1a0a-4cf4-af24-fb377a4c714e
    07/07/2014 18:10:34.10 w3wp.exe (0x18C8)                      
    0x19A0
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    45d2f0f3-4df1-442b-8d8d-505613f7d772
    07/07/2014 18:10:34.10 w3wp.exe (0x18C8)                      
    0x19A0
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://sps2013.compusoftadvisors.com:32843/ea7d1cc735094658a1c50ac8debd7f1d/MetadataWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges2'
    MessageId: 'urn:uuid:2d6aa8f4-33dc-40b6-b104-42939cc050d3'
    fda2d36a-1a0a-4cf4-af24-fb377a4c714e
    07/07/2014 18:10:34.10 w3wp.exe (0x18C8)                      
    0x19A0
    SharePoint Server            
    Taxonomy                      
    fuc5 Medium  
    MetadataWebServiceApplication.GetChanges called on 'Managed Metadata Service' starting.
    fda2d36a-1a0a-4cf4-af24-fb377a4c714e
    07/07/2014 18:10:34.10 w3wp.exe (0x18C8)                      
    0x19A0
    SharePoint Server            
    Taxonomy                      
    fuc6 Medium  
    MetadataWebServiceApplication.GetChanges called on 'Managed Metadata Service' completed.
    fda2d36a-1a0a-4cf4-af24-fb377a4c714e
    07/07/2014 18:10:34.10 w3wp.exe (0x18C8)                      
    0x19A0
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=3.0392
    fda2d36a-1a0a-4cf4-af24-fb377a4c714e
    07/07/2014 18:10:34.11 NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x1CF8 Search                        
    Content Processing            
    ajpm6 Monitorable
    Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer: Failed to create session for index system: SP82c561085f6e: Microsoft.Ceres.SearchCore.Services.ContentRouter.ContentException: Unable to connect to index system SP82c561085f6e    
    at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.VerifyIndexSystem(String indexSystem)     at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.OpenSession(String indexSystem, Action`1 callback, IDictionary`2 defaultPolicy)    
    at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.GetSession(String indexSystem)
    852ecae7-5ffe-435d-b732-098c35807cf4
    07/07/2014 18:10:34.11 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         General                      
    ahjkk Medium  
    Spent 31 ms to call ISPDocumentParser::Parse
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.11 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Files                        
    ahjki Medium  
    Spent 31 ms to parse 3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.13 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 07/07/2014 18:10:34.11, Original Level: Verbose] SQL connection time: 0.1237
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.13 w3wp.exe (0x1F20)                      
    0x3310
    SharePoint Foundation         Database                      
    8acb High    
    [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity
    3e30a29c-9f19-90b5-73e5-6211522b13a4
    07/07/2014 18:10:34.30 NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    ai9of Medium  
    [Microsoft.CrawlerFlow-ebc9daee-ec73-478e-b78b-c4de7d31896a] Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionHelper : Evaluation failure detected:    Operator          : MarsWriter    Operator
    type     : MarsWriter    Error id          : 800000    Correlation id    : 6955ae9f-9119-4b3d-9e28-2c77ed45d7a5    Partition id      : 0c37852b-34d0-418e-91c6-2ac25af4be5b
       Message           : Failed to create session with indexer    49691C90-7E17-101A-A91C-08002B2ECDA9:#9: http://sps2013:5555/sites/default/Compusoft Sales Documents/Vipul/Products/McAfee Licensing/VCL_UNIX_6_0_Product_Guide_McAfee.pdf
       id                : ssic://6386  Microsoft.Ceres.SearchCore.Services.ContentRouter.ContentException: Unable to connect to index system SP82c561085f6e     at Microsoft.Ceres.SearchCor...
    6955ae9f-9119-4b3d-9e28-2c77ed45d7a5
    07/07/2014 18:10:34.30* NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    ai9of Medium  
    ...e.ContentRouter.ContentRouter.VerifyIndexSystem(String indexSystem)     at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.OpenSession(String indexSystem, Action`1 callback, IDictionary`2 defaultPolicy)     at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.GetSession(String
    indexSystem)  ---------------------   Microsoft.Ceres.Evaluation.DataModel.EvaluationException: Failed to create session with indexer ---> Microsoft.Ceres.SearchCore.Services.ContentRouter.ContentException: Unable to connect to index system SP82c561085f6e
        at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.VerifyIndexSystem(String indexSystem)     at Microsoft.Ceres.SearchCore.ContentRouter.ContentRouter.OpenSession(String indexSystem, Action`1 callback, IDictionary`2 defaultPolicy)
      ... 6955ae9f-9119-4b3d-9e28-2c77ed45d7a5
    07/07/2014 18:10:34.30* NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    ai9of Medium  
    ...  at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.GetSession(String indexSystem)     --- End of inner exception stack trace ---     at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.GetSession(String
    indexSystem)     at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.SubmitDocument(Boolean isCommitRecord, Byte[] data, Int64 documentId, Nullable`1 op, String indexSystem, List`1 warningMsg)     at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.Write(IRecord
    record)     at Microsoft.Ceres.ContentEngine.Processing.Mars.MarsWriterProducer.Write(IRecord record)     at Microsoft.Ceres.ContentEngine.Processing.Writer.AbstractWriterProducer`1.ProcessRecord(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.Profiling.Reco...
    6955ae9f-9119-4b3d-9e28-2c77ed45d7a5
    07/07/2014 18:10:34.30* NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    ai9of Medium  
    ...rdCountingRecordSetSink.PutAndCountRecord(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.Profiling.RecordCountingRecordSetSink.Put(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionRecordSetSink.DoWithoutTryCatch(IRecord
    record)     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.PushToOutput()     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.Put(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionRecordSetSink.DoWithoutTryCatch(IRecord
    record)     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.PushToOutput()     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.Put(IRecord record)     at Microsof...    ...Engi...
    6955ae9f-9119-4b3d-9e28-2c77ed45d7a5
    07/07/2014 18:10:34.30* NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    ai9of Medium  
    ...ne.ErrorHandling.HandleExceptionRecordSetSink.DoWithoutTryCatch(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionRecordSetSink.DoWithoutTryCatch(IRecord record)     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.PushToOutput()
        at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.Put(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionRecordSetSink.DoWithoutTryCatch(IRecord record)     at Microsoft.Ceres.ContentEngine.Processing.Events.EventRecordSetSink.Put(IRecord
    record)     at Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionRecordSetSink.DoWithoutTryCatch(IRecord record)     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.PushTo...
    6955ae9f-9119-4b3d-9e28-2c77ed45d7a5
    07/07/2014 18:10:34.30* NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    ai9of Medium  
    ...Output()     at Microsoft.Ceres.Evaluation.Processing.Producers.ProducerRecordSetSink.Put(IRecord record)     at Microsoft.Ceres.Evaluation.Engine.ErrorHandling.HandleExceptionRecordSetSink.DoWithTryCatch(IRecord record)
    6955ae9f-9119-4b3d-9e28-2c77ed45d7a5
    07/07/2014 18:10:34.30 NodeRunnerContent1-cde702ed-57f (0x05C0)
    0x0BD8 Search                        
    Common Processing            
    28 Information
    Component and System=Content1-cde702ed-57fd-420c-a034-a06d64defbfe, Correlation ID=6955ae9f-9119-4b3d-9e28-2c77ed45d7a5, Tenant ID=0c37852b-34d0-418e-91c6-2ac25af4be5b Error code=800000, Flow Name=Microsoft.CrawlerFlow, Operator Name=InjectedOpForExceptionHandling/EventHybrid_Indexing,
    Message=The processing of item fails with error Failed to create session with indexer
    6955ae9f-9119-4b3d-9e28-2c77ed45d7a5

    Please share more details of Logs. specially which has type as unexpected
    If this helped you resolve your issue, please mark it Answered

  • Sharepoint 2013 - Search service not working

    We have set the search service application to crawl incrementally. The crawls are taking a long time. The content is not vast over the single farm but we do have a few sizable document libraries, lists and media assets. Suggestions as to what to check
    again first? Screen shot of the search admin page.

    Hi,
    According to your post, my understanding is that Search service failed to work in SharePoint 2013.
    The cause is that Accounts that are used by application pools or services are members of the Administrators group on the local computer.
    I recommend to change the user account to a predefined account, or to a domain user account that is not a member of the Administrators group.
    More information:
    http://technet.microsoft.com/en-us/library/hh344224(v=office.15).aspx
    http://alstechtips.blogspot.com/2013/12/health-analyzer-accounts-used-by.html
    http://absolute-sharepoint.com/2013/01/sharepoint-2013-service-accounts-best-practices-explained.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Search in Sharepoint Foundation 2013 sp1 do not work

    When we type anything in any search bar, the result is “Sorry, something went wrong” with Correlation ID:
    aa0fb79c-5878-d0b4-2016-c1ebc17f3336.
    The server was originally installed with the 2013 Foundation beta version on a 2008 R2 server (single server installation). The content was migrated from a MOSS 2007 installation using “Quest Migration Suite for Sharepoint. The search
    feature has never worked.
    We upgraded to Sp1 (version 15.0.4571.1502) yesterday. The search did still not work.
    We checked the crawl status. It had been running for some 9000 hours. We stopped it and started it again. It was still running after 24 hours so we stopped it again.
    Under Monitoring / Review Problems and solutions a new problem appeared indicating that the index was fragmented. We hit the button above “Solve the issue” (or what it is called) and the error went away.
    To be sure we also went to “Search Service Application: Index Reset” and hit reset. After a while of “Working on it”, a page with the text “Sorry, something went wrong”
    appear with error message as below:
    There was no endpoint listening at net.tcp://sp-server/8E2ECE/AdminComponent1/Management/NodeController that could accept the message. This is often caused by an incorrect address or SOAP
    action. See InnerException, if present, for more details.
    So we are really not sure wether the index was correctly reset.
    Going back to the crawl overview, a new crawl had been started. Having a look under Search
    Service Application: Crawl Reports - Crawl Rate, statistics as below:
    Crawl rate (dps) 0
    Total items 34
    Modified items 0
    Not modified items 0
    Security items 0
    Deleted items 0
    Retries 28
    Errors 6
    The crawl appears to be hanging somewhere here.
    What actions should I take?

    Hi Jonas,
    I recommend to clear the configuration cache to see if the issue still occurs.
    Please follow the link to clear the cache:
    http://blogs.msdn.com/b/jamesway/archive/2011/05/23/sharepoint-2010-clearing-the-configuration-cache.aspx
    To narrow the issue scope, I recommend to create a new search service application to see if the issue still occurs.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • SharePoint 2010 Search "Did You Mean" | How does it work?

    My customer has raised a concern that "Did you mean" functionality works inconsistently and issue is explained as below:
    1. When I search for misspelled word such as "Maketting" , search page displays the option "Did you mean ""Marketting"?
    2. When I search for another misspelled word "Marktng", I get no result and no "Did you mean" option.
    I believe there is a dictionary which maintains the mapping between misspelled word and the correct words but I was unable to track the location whether it is in database or a file system. Has anyone faced this issue and know the solution? Below article
    talks about a "Dictionary lexicon" but not sure about the location in SharePoint 2010 farm.
    http://www.petestilgoe.com/2009/10/sharepoint-search-how-features-work-part-1/
    Thanks and Regards
    -DB
    DB

    Hi Deepak,
    “Do you mean” functionality is enabled by selecting Query Suggestions in Search Box web part.
    Suggestions are automatically built based on what search results are actually clicked on. It takes 6 clicks within a year for SharePoint to add a suggestion.
    However, if an administrator needs to add a suggestion manually this can be done using the SharePoint 2010 Management Shell (PowerShell).
    I recommend to use PowerShell to check all the suggestions in the Search Service Application, and then remove the one that you do not need.
    $ssa=Get-SPEnterpriseSearchServiceApplication
    Get-SPEnterpriseSearchQuerySuggestionCandidates -SearchApp $ssa
    Remove a suggestion, such as “Marketting”:
    $ssa=Get-SPEnterpriseSearchServiceApplication
    Remove-SPEnterpriseSearchLanguageResourcePhrase -SearchApplication $ssa -Language En-Us -Type QuerySuggestionAlwaysSuggest -Identity "
    Marketting "
    More references about the query suggestion:
    http://blogs.technet.com/b/chad/archive/2010/06/24/tip-34-adding-a-sharepoint-2010-search-suggestion.aspx
    http://sharepointfieldnotes.blogspot.jp/2011/09/sharepoint-2010-search-query.html
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Office 2010 Outlook Search and Indexing not working

    Hello,
    I'm hoping someone may be of assistance as this has been plaguing my outlook for some time now.
    Problem:
    When attempting to search for any emails via the search bar, it appears as if it is attempting to search, but I receive no results. 
    Windows 7 x64 Service Pack 1
    Office 2010 Service Pack 2
    Connected to Office 365 Exchange
    In services Windows Search service is not running, though Automatic (Delayed Start is selected), I attempted starting the service but it returned with an error saying it started and then stopped.
    In Outlook options > Search > Indexing Options > the service is shown as "Indexing is not Running" and the list of indexed folders is empty. Everything else is grayed
    out except "Advance Tab" which only has one button available called "Rebuild", everything else is grayed out.
    I am aware this question was asked a few years back but the linked articles referenced are no longer working.
    Though I seem to be having a similar problem and any assistance and new suggestions would be greatly appreciated!

    Hi,
    Please check if you can search mailbox in OWA. If OWA works well, the issue is related Outlook.
    If it is the same issue in OWA, in Exchange 2013, you can use the following command to check the content index state of the mailbox database where this user is.
    Get-MailboxDatabaseCopyStatus | fl name, contentindex*
    If the content index status is Failed, please try to reseed the search catalog. After that, please rebuild the index in Outlook to check the result.
    If you are using Office 365, I recommend you ask this question in Office 365 forum which is staffed by more experts specializing in this kind of this problem. You might get a better answer there.
    http://community.office365.com/en-us/forums/default.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • SharePoint 2010 Search Error

    Hello,
    Search Service Application was working probably but I started getting the errors below!
    The start address sps3s://spxyzzzzz cannot be crawled.
    Context: Application 'Search_Service_Application', Catalog 'Portal_Content'
    Details:
        This item could not be crawled because the repository did not respond within the specified timeout period. Try to crawl the repository at a later time, or increase the timeout value on the Proxy and Timeout page in search administration.
    You might also want to crawl this repository during off-peak usage times.   (0x80040d7b)
    The start address https://mysitexxxx cannot be crawled.
    Context: Application 'Search_Service_Application', Catalog 'Portal_Content'
    Details:
        This item could not be crawled because the repository did not respond within the specified timeout period. Try to crawl the repository at a later time, or increase the timeout value on the Proxy and Timeout page in search administration.
    You might also want to crawl this repository during off-peak usage times.   (0x80040d7b)
    The start address https://spxyzzzzz cannot be crawled.
    Context: Application 'Search_Service_Application', Catalog 'Portal_Content'
    Details:
        This item could not be crawled because the repository did not respond within the specified timeout period. Try to crawl the repository at a later time, or increase the timeout value on the Proxy and Timeout page in search administration.
    You might also want to crawl this repository during off-peak usage times.   (0x80040d7b)
    The server xyzzzz is unavailable and could not be accessed. The server is probably disconnected from the network. Items from this server will be skipped by the crawl for the next 10 minutes
    I haven't deleted any sites! I'm not sure what could be the issue? I accessed these urls through browser! 
    Any ideas?
    Thanks

    lookalike something goes wrong with SSL certs....did you change or update your SSL.
    check these:
    http://blog.karstein-consulting.com/2012/04/19/error-in-crawl-log-the-server-is-unavailable-and-could-not-be-accessed-the-server-is-probably-disconnected-from-the-network-sharepoint-2010/
    http://technet.microsoft.com/en-us/library/ee513100(v=office.14).aspx
    http://www.cleverworkarounds.com/2011/07/22/troubleshooting-sharepoint-people-search-101/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog
    I did not make changes on cert. I doubt it might be something with my SSRS scale-out deployment configuration.  I'm not sure yet. I pointed same NLB IP address with different host name. I'm not sure If I need to create another NLB on WFEs which does not
    make sense. They are already network load balanced!! Anyway thanks for your reply.

  • The search service is not able to connect to the machine that hosts the administration component

    Hi
    After uninstalling the binaries, and reinstalling / joining back to the farm, everything seems happy expect search.
    When we try and start the Search Service back, it takes us to the Search Application section, and shows this message;
    The search service is not able to connect to the machine that hosts the administration component
    How can I get search to work again, or get around this error?
    I am pretty inexperienced with Search

    Hi  Tibsy80,
    For your issue, it can be caused by the search admin timer job was disabled.
    Run below PS command to know the status:
    Get-SPTimerJob job-application-server-admin-service | fl
    If it returns “IsDisabled: True”, ran below PS command to enable the service:
    Enable-SPTimerJob job-application-server-admin-service
    Then run below PS command to stop and start the timer and IIS reset:
    Net Stop timer
    Net start timer
    iisreset
    Then wait 1-2 min and try browsing to the SSA again.
    Reference:
    http://neelb.wordpress.com/2012/01/19/the-search-service-is-not-able-to-connect-to-the-machine/
    Also you can refer to the blogs:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/b04498ec-78d1-4bb9-8077-0481977cef10/the-search-service-is-not-able-to-connect-to-the-machine-that-hosts-the-administration-component?forum=sharepointadminprevious
    http://davidbajak.com/blog/post/2011/09/29/Fix-SharePoint-2010-Enterprise-Search-After-Using-AutoSPInstaller-Script-Installer.aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • SharePoint 2010 search webservices compatibility with SharePoint 2013

    Please let us know whether the SharePoint 2010 search webservice is compatible with SharePoint 2013.
    When we try to hit the SharePoint 2013 search service with the query developed in the Sharepoint 2010 , we are getting "System.Not supported" exception as response from server.
    Below is the search query we are using:
    "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
                + "<soap:Body>"
                + "<Query xmlns=\"urn:Microsoft.Search\">"
                + "<queryXml>"
                + "&lt;QueryPacket xmlns=\"urn:Microsoft.Search.Query\"&gt;"
                + "&lt;Query&gt;"
                + "&lt;Range&gt;&lt;StartAt&gt;1&lt;/StartAt&gt;&lt;Count&gt;50&lt;/Count&gt;&lt;/Range&gt;"
                + "&lt;SupportedFormats&gt;"
                + "&lt;Format&gt;urn:Microsoft.Search.Response.Document:Document&lt;/Format&gt;"
                + "&lt;/SupportedFormats&gt;"
                + "&lt;Context&gt;"
                + "&lt;QueryText type=\"MSSQLFT\"&gt; SELECT fileName,Title,Path,Write,SiteName,URL,FileExtension,isDocument,contentClass FROM scope() WHERE CONTAINS(Path, SITE_PORT)
    and (contentClass = 'STS_Web' OR contentClass = 'STS_ListItem_DocumentLibrary' OR contentClass = 'STS_List_DocumentLibrary') ORDER BY lastModifiedTime DESC &lt;/QueryText&gt;"
                + "&lt;/Context&gt;"
                + "&lt;/Query&gt;"
                + "&lt;/QueryPacket&gt;"
                + "</queryXml>"
                + "</Query>"
                + "</soap:Body>"
                + "</soap:Envelope>";
    Please  help

    Hi Raghuramk,
    is the web service is a search query web service? if yes, i suppose sharepoint 2013 already deprecated,
    Search Query web service
    Description: The Search Query web service is deprecated in SharePoint 2013.
    In SharePoint Server 2010, the Search Query web service exposes the SharePoint Enterprise Search capabilities to client applications. This enables you to access search results from client and web applications outside the context of a SharePoint site.
    Reason for change: The Search Query web service is deprecated because the client object model (CSOM) and a new REST-based web service are available for developing Office-wide extensibility scenarios. The CSOM exposes the same functionality
    as the Search Query web service, and a larger set of functionality for stand-alone client applications.
    http://technet.microsoft.com/en-us/library/ff607742.aspx#section2
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • SharePoint 2010 Excel Services with SQLserver 2012 cubes

    I have two tier sharepoint 2010 enterprise setup
    1)wfe  and app server
    2) sqlserver
    I also have a sqlserver 2012 which hosts all our BI cubes .
    is it possible to connect excel (office 2010)  to sql 2012 BI and save that in my sharepoint 2010 server  under shared documents and expect it to refresh when aall authenticated users hit " refresh all connections"
    It is not able to hit refresh . I get a " unable to refresh data for  a data connection in this notebook" the following connections fail to refresh.
    Interesting when I do the same this using sql server 2008 r2 BI , everything works fine

    Hi,
    According to your description, my understanding is that the SharePoint 2010 Excel Service cannot work with SQL Server 2012.
    Did you install Service Pack 1 for SharePoint 2010?
    SharePoint 2010 Service Pack 1 is required for SQL Server 2012 PowerPivot for SharePoint features.
    Please check if the Service Pack 1 is installed for SharePoint 2010. If not, please download it from the link below and install it:
    http://www.microsoft.com/en-hk/download/details.aspx?id=26623
    More references:
    http://msdn.microsoft.com/en-us/library/ee210708(v=sql.110).aspx
    http://msdn.microsoft.com/en-us/library/6d61be91-0396-443c-a7f4-02dcf973775e(v=sql.110)
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • The search service is not able to connect to the machine that hosts the administration component. Verify that the administration component 'GUID′ in search application 'Search Service Application' is in a good state and try again.

    Another post with a well-known title. Believe me, I know. Here's my setup;
    - 1 Server 2012 WFE, SharePoint Server 2013, totally up-to-date, including the september 2014 hotfix
    - 1 Server 2012 DB, SQL Server 2012
    Installed SP 2013 using PowerShell, with the AutoSPinstaller. Worked like a charm. Got everything up and running, with some tweaking here and there to customize it to fit my situation. Now, I can't get the Search Service Application to work. Must have created,
    deleted and recreated it at least 30 times. Used both PowerShell scripts, PowerShell line-by-line, Central Admin, heck, I even went so far as to use the configuration wizzard... No luck. I keep on getting the message that search cannot connect to the machine
    that hosts the 'administration component'.
    In order to avoid answers that suggest all the things I've already tried, here's a summary of the various scenarios I followed:
    Tried both a dedicated application pool as well as the SharePoint Web Services Default
    Timer job job-application-server-admin-service is running and not showing errors
    IIS 8.0 is installed, so is .NET 4.5 (not the known perp of IIS 7.5 and .NET 4.0)
    the get-SPEnterpriseSearchServiceInstance -local returns a healthy, online state
    the SPEnterpriseSearchQueryAndSiteSettingsServiceInstance is also running
    FireWall is disabled; registry has the BackConnectionHostNames modified with the necessary FQDNs
    Accounts used to install and / or run the serviceapp all have sufficient rights - tried a dedicated managed account, SP_2013_SearchSvc, the SP admin account, and even the original Farm account; all to no avail, I keep on getting the error message.
    Even tried stsadm to start the server search running - NOTHING WORKS!!!
    As you might understand, this is driving me nuts. About to miss my second deadline, and no amount of IISresetting is making this go away. Been stuck on this issue for far too long, now (my searching is measured in days and weeks instead of hours, by now).
    Whoever helps me solve this - you will have my eternal gratitude, and a nice bottle of Prosecco. Or whatever's your poison. You need to come get it, though. I´m situated in the Netherlands. Hey, you always meant to visit Amsterdam and see for yourself, right?
    Thanks, community, for coming to my rescue!

    Thanks again - Alas, I've been there. Deleted Search a dozen times, at least, and tried installing it, initially using a PowerShell script (tried several scripts actually, from full-blown total Search Applications with extensive topologies to the most basic
    of basics 'please just start without showing me errors'), PowerShell line-by-line to see where things went South, next tried installing through Central Admin (hoping that it was my own stupidity in overlooking things and hoping The System would get it right
    for me), and eventually even tried using the config wizzard as a total and utter last resort - Nothing worked.
    At first, I found out that removing a Service App needs a *little* bit more work than simply removing it through Central Admin, but by now I can truthfully state that if there's one thing I've become supergood at, it's removing Search Service Applications.Totally.
    I will check out the article, though - I realized early on in my SharePoint experience that regardless of what you think you know, there's so much more to find out. I know, that's almost philosophical. That is, my friends, indeed the point I've reached...

  • SharePoint 2010 Search Error: "Internal server error exception"

    Hi,
    We have a SharePoint 2010 Farm with 5 servers:
    1 SQL Server Cluster
    2 WFE
    1 Index Server
    1 Search Server
    Please see bellow a more detailed specification.Our DNS is using a Load Balancer
    It turns out that when it uses one WFE (SERVWFE05) it throws this error:
    SharePoint 2010 Search Error: "Internal server error exception"
    when it uses the other one (SERVWFE06) it works.
    What can be wrong?
    SERVERS IN FARM
    Server
    SharePoint Products Installed
    Services Running
    Status
    SERVAPI07
    Language Pack for SharePoint Foundation 2010 - Portuguese/Português 
     Central Administration 
     Upgrade Available  Remove Server  
    Language Pack for SharePoint Foundation 2010 - Russian/русский 
    Claims to Windows Token Service 
    Language Pack for SharePoint Foundation 2010 - Spanish/Español 
    Microsoft SharePoint Foundation Incoming E-Mail 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Portuguese/Português
    Microsoft SharePoint Foundation Web Application 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Russian/русский 
    Microsoft SharePoint Foundation Workflow Timer Service 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Spanish/Español 
    Secure Store Service 
    Microsoft SharePoint Server 2010 
    SharePoint Server Search 
    Web Analytics Data Processing Service 
    Web Analytics Web Service 
    SERVAPI08
    Language Pack for SharePoint Foundation 2010 - Portuguese/Português
     Central Administration 
     Upgrade Available
    Language Pack for SharePoint Foundation 2010 - Russian/русский 
    Claims to Windows Token Service 
    Language Pack for SharePoint Foundation 2010 - Spanish/Español 
    Microsoft SharePoint Foundation Incoming E-Mail 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Portuguese/Português
    Microsoft SharePoint Foundation Web Application 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Russian/русский 
    Microsoft SharePoint Foundation Workflow Timer Service 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Spanish/Español 
    Search Query and Site Settings Service 
    Microsoft SharePoint Server 2010 
    SharePoint Server Search 
    SERVSQL13
    Microsoft SharePoint Foundation Database 
     No Action Required 
    SERVWFE05
    Language Pack for SharePoint Foundation 2010 - Portuguese/Português 
     Microsoft SharePoint Foundation Incoming E-Mail 
    Language Pack for SharePoint Foundation 2010 - Russian/русский 
    Microsoft SharePoint Foundation Web Application 
    Language Pack for SharePoint Foundation 2010 - Spanish/Español 
    Microsoft SharePoint Foundation Workflow Timer Service 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Portuguese/Português
     Upgrade Available  Remove Server  
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Russian/русский 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Spanish/Español 
    Microsoft SharePoint Server 2010 
    SERVWFE06
    EMBWFEPRD06  Language Pack for SharePoint Foundation 2010 - Portuguese/Português
     Microsoft SharePoint Foundation Incoming E-Mail 
     Upgrade Available
    Language Pack for SharePoint Foundation 2010 - Russian/русский 
    Microsoft SharePoint Foundation Web Application 
    Language Pack for SharePoint Foundation 2010 - Spanish/Español 
    Microsoft SharePoint Foundation Workflow Timer Service 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Portuguese/Português
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Russian/русский 
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - Spanish/Español 
    Microsoft SharePoint Server 2010 
    MODIFY TOPOLOGY
    Server Name
     Category 
    SERVAPI07   
    Admin 
     Administration Component
    SERVAPI07   
    Crawl
     Crawl Component 1
    SERVSQL13   
    Databases 
     Administration Database : Search_Service_Application_DB1
    SERVSQL13   
     Crawl Database : Search_Service_Application_CrawlStore_DB2
    SERVSQL13   
     Property Database : Search_Service_Application_PropertyStore_DB3
    SERVAPI08   
    Index Partition - 0
     Query Component 1
    Many thanks
    J.CLUA

    HI,
    1.  
    Ensure that the IIS Admin service is running
    2.  
    Ensure that the ApppPool related to the service is running
    3.  
    Ensure that the DB server that application is located is running and have enough space.
    4.  
    Ensure that the Apppool is set with the correct credentials and password.
    Do you see any correllation ID while search or any error.If its a correlation ID,please check the below site to get the exact error from where its generating.
    http://expertsharepoint.blogspot.de/2014/07/how-to-find-correlation-id-error.html
    - See more at: http://expertsharepoint.blogspot.de/search?q=internal#sthash.rS79y0Nd.dpuf
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

Maybe you are looking for