sharepoint 2013 更改搜索server组态

1.新搜索server在。安装sharepoint server 2013,并连接到一个现有的sharepoint server领域,完成后。您可以配置新的搜索server。

打开sharepoint powershell 2013 :

$hostA = Get-SPEnterpriseSearchServiceInstance -Identity "DevSearch2013"

Start-SPEnterpriseSearchServiceInstance -Identity $hostA

Get-SPEnterpriseSearchServiceInstance -Identity $hostA

$ssa = Get-SPEnterpriseSearchServiceApplication

$newTopology = New-SPEnterpriseSearchTopology -SearchApplication $ssa

New-SPEnterpriseSearchAdminComponent -SearchTopology $newTopology -SearchServiceInstance $hostA

New-SPEnterpriseSearchCrawlComponent -SearchTopology $newTopology -SearchServiceInstance $hostA

New-SPEnterpriseSearchContentProcessingComponent -SearchTopology $newTopology -SearchServiceInstance $hostA

New-SPEnterpriseSearchAnalyticsProcessingComponent -SearchTopology $newTopology -SearchServiceInstance $hostA

New-SPEnterpriseSearchQueryProcessingComponent -SearchTopology $newTopology -SearchServiceInstance $hostA

New-SPEnterpriseSearchIndexComponent -SearchTopology $newTopology -SearchServiceInstance $hostA -IndexPartition 0

Set-SPEnterpriseSearchTopology -Identity $newTopology

其中DevSearch2013它指的是当前搜索server机器名.按照上述代码。执行判决而下降.您将能够改变一个新的搜索server。

时间: 2024-10-10 13:27:35

sharepoint 2013 更改搜索server组态的相关文章

sharepoint 2013 更改搜索服务器配置

1.在新的搜索服务器中,安装sharepoint server 2013,并且连接到已有sharepoint 服务器场,完成之后,就可以配置新的搜索服务器. 打开sharepoint powershell 2013 管理员运行如下代码: $hostA = Get-SPEnterpriseSearchServiceInstance -Identity "DevSearch2013" Start-SPEnterpriseSearchServiceInstance -Identity $ho

sharepoint 2013 使用SharePoint powershell 2013更改搜索server方法

$hostA = Get-SPEnterpriseSearchServiceInstance -Identity "DevSearch2013" Start-SPEnterpriseSearchServiceInstance -Identity $hostA Get-SPEnterpriseSearchServiceInstance -Identity $hostA $ssa = Get-SPEnterpriseSearchServiceApplication $newTopology

sharepoint 2013 使用SharePoint powershell 2013更改搜索服务器方法

$hostA = Get-SPEnterpriseSearchServiceInstance -Identity "DevSearch2013" Start-SPEnterpriseSearchServiceInstance -Identity $hostA Get-SPEnterpriseSearchServiceInstance -Identity $hostA $ssa = Get-SPEnterpriseSearchServiceApplication $newTopology

SharePoint 2013 禁用搜索服务

原文:SharePoint 2013 禁用搜索服务 前言,在SharePoint2013中,对于硬件需求的提升,让我们虚机里安装总是一筹莫展,尤其开启了搜索服务以后,对于内存的消耗就更加严重,尤其对于我们开发者来说,搜索服务并不是必须开启的,所以,我们需要禁用掉不需要的服务,来减轻开发环境的压力. 首先对比一下是否开启搜索对于服务器内存的压力 特别要说,笔记本配置Dell1464,CPU:I5 M430,内存:4GB ddr3 1333 X2条. 不开启搜索时任务管理器,内存占用46%,机器运行

SharePoint 2013 开发——搜索架构及扩展

??博客地址:http://blog.csdn.net/FoxDave SharePoint 2013高度整合了搜索引擎,在一个场中只有一个搜索服务应用程序(SSA).它集成了FAST,只有一个代码库,不同的授权层次启用不同的搜索功能,但是有些功能在云端是不可用的. 下图从开发者的视角展示了搜索架构,摘选自SharePoint高级编程. 图中标记灰色的部分就是我们在开发过程中可以应用或扩展的部分.我们可以通过REST或CSOM API来对查询模块进行定义和扩展:通过BCS来创建新的索引连接:借助

How to install SharePoint 2013 on Windows Server 2012 R2

[Update 26.02.2014] Many thanks to everybody commented on this post. As Falk already mentioned in the comments, a Service Pack for SharePoint 2013 has been recently released. This release makes this article obsolete, as any compatibility issues seems

SharePoint 2013 企业搜索架构示例

??博客地址:http://blog.csdn.net/FoxDave 本文参考自微软官方的Chart,我们来看一下企业中对于不同规模SharePoint搜索的场的架构是什么样的. 对于搜索场的规模,我们用爬网的Item的数量来衡量.关于搜索过程和搜索组件的交互信息,查看Search Architectures for SharePoint®  Server 2013. 搜索中的数据库有以下四个角色: 1. 搜索管理数据库(Search administration database) 存储搜索

SharePoint 2013 设置搜索导航(Search Navigation)

需求: 在SearchPoint 2013 的搜索导航(Search Navigation)上添加一个Orders 链接, 搜索时点击该链接跳转至./orderresult.aspx, 该页面只显示contentype 为order 的list items(从当前搜索页面中过滤出示contentype 为order 的list items并显示). 实现以上需求的步聚: 1. 创建一个content type, 命名为order a.  在IE中打开 http://SharePoint2013W

SharePoint 2013 搜索爬网功能

最近在政府部门介绍SharePoint 2013 新功能,我也准备了很多,比如SharePoint 2013的Search.以后有机会谈谈Office Web App,Workflow等. SharePoint 2013的搜索功能很强大,特别是在社交领域的搜索让我耳目一新(如发掘知识,发现人际关系等).如下所示是一个SharePoint 普通搜索,可以看到实现对Office的全文检索(当然还包含很多,比如PDF). 启用Search Service Application SharePoint