문제

I'm working on SharePoint 2013, configuring the Search Service. I created a Search Service Application through Powershell with some wrong setting and I tried to delete everything to start over again:

$sa = Get-SPEnterpriseSearchServiceApplication
$sa.Delete()

But! The services:

  • SharePoint Server Search
  • Search Query and Site Settings Service
  • Search Host Controller Service

are still running and the four databases associated with the app are still there. The commands Powershell to remove the dbs (e.g. Remove-SPEnterpriseSearchCrawlDatabase) cannot run because the application is no longer there.

Can I remove the dbs from SQL Management Studio and Stop the services from SP? Or is there a proper way to do that?

Thank you!!

도움이 되었습니까?

해결책

The search services are farm services so should remain. To remove the associated databases you could have tried this
Remove-SPServiceApplication $spapp -RemoveData

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top