码迷,mamicode.com
首页 > 其他好文 > 详细

为sharepoint 2013 开启 State Service

时间:2017-03-23 22:49:39      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:sharepoint

State Service的作用:

The State Service service application is used to maintain state. This is one of those goofy .NET
developer things which is the equivalent of writing on your hand. It holds the information
temporarily while you use it and then it goes away. Some people assume this isn’t necessary but even
out-of-the-box features use it so just Go ahead and provision it to save looking up the error messages
later.

State Service在sharepoint中是无法通过图形化界面安装的,必须通过powershell命令来完成安装:

1. At the prompt, type the following and press Enter:
New-SPStateServiceApplication -Name "State Service Application"
2. At the prompt, type the following and press Enter:
Get-SPStateServiceApplication| New-SPStateServiceApplicationProxy
-defaultproxygroup
3. At the prompt, type the following and press Enter:
Get-SPStateServiceApplication| New-SPStateServiceDatabase -Name
"State_Service_DB"
4. At the prompt, type the following and press Enter:
Get-spdatabase | where-object {$_.type -eq
"Microsoft.Office.Server.Administration.StateDatabase"} |
initialize-spstateservicedatabase


本文出自 “博深” 博客,转载请与作者联系!

为sharepoint 2013 开启 State Service

标签:sharepoint

原文地址:http://pclzr.blog.51cto.com/30415/1909738

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!