前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SharePoint 2013 Service 状态无法启动,显示“启动中(Starting)”

SharePoint 2013 Service 状态无法启动,显示“启动中(Starting)”

作者头像
用户1161731
发布2018-01-11 14:31:44
1.4K0
发布2018-01-11 14:31:44
举报
文章被收录于专栏:木宛城主木宛城主

Problem

在SharePoint 2013 Central Administration中启动 SharePoint Service(也称为:Service Machine Instance)时,有时会出现"卡住"这种情况,直接的体现就是某个SharePoint Service一直停留在Starting状态,如下图所示:

Resolution

当SharePoint Service的状态为Starting时,不管经过多少时间,仍然没有被启动,就仿佛被"卡住了"那样。不幸的是,无法通过Central Administration来重启此SharePoint Service 。所以只能通过PowerShell来解决这个问题。

  • Option 1
代码语言:javascript
复制
Add-PSSnapin Microsoft.SharePoint.PowerShell

$instance=Get-SPServiceInstance | Where {$_.Status -like "Provisioning"}

$instance.Unprovision()

$instance.Provision()
  • Option 2
代码语言:javascript
复制
Add-PSSnapin Microsoft.SharePoint.PowerShell

$instance=Get-SPServiceInstance | Where {$_.TypeName -eq "Search Host Controller Service"}

Stop-SPServiceInstance -Identity "SharePoint Service Instance Id" //换为实际Farm中Service Instance Id,为GUID

Start-SPServiceInstance -Identity "SharePoint Service Instance Id " 
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015-02-27 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Problem
  • Resolution
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档