错误截图错误日志位置:C:\ProgramFiles\CommonFiles\microsoftshared\WebServerExtensions\15\LOGS主要错误ThecurrentuserisnotanSharePointServerfarmadministrator.处理过程查看了当前User确实不是场管理员,但......
2022-04-11 67 SharePoint ERROR the current user not Server farm 错误
一.安装部署Feature
在使用Stsadm命令前,可以参考此文章Sharepoint学习笔记-- 如何在系统Path中添加STSADM的快速引用(Add STSADM in path)
以下是操作步骤:
1.把Wsp文件拷贝到你要部署的服务器指定目录下eg: D:\ Sp2010\Wsp\Myfeature.wsp
2.以Administrator方式进入命令提示窗口 command line (Run -> cmd )
3.添加 solution:
stsadm -o addsolution -filename {PATH\WSPFILENAME}
( eg. stsadm -o addsolution -filename D:\ Sp2010\Wsp\Myfeature.wsp)
4.部署solution:
stsadm -o deploysolution -name {WSPFILENAME} -url {SITEURL} –allowgacdeployment -immediate
( eg. stsadm -o deploysolution –name Myfeature.wsp -url http://myserver-Sp1:2010 –allowgacdeployment –immediate )
如果Feature的作用域不是”Web”,那么,可以不要上面的‘ -url {SITEURL} ‘ 参数
5. 转到你刚才所部署的Feature所在的网站集上(eg: http://myserver-Sp1:2010)
Site Actions menuà site settingsàSite Collection AdministrationàSite collection features ,找到你刚才部署的feature,点击Activate 激活它。然后你就可以在此网站集或其下的子网站集中使用它了。
二. 移除Feature
需要下面两个步骤:
1.stsadm -o retractsolution -name {WSPFILENAME}
(eg. stsadm -o retractsolution -name Myfeature.wsp )
2.stsadm -o deletesolution -name {WSPFILENAME}
(eg. stsadm -o deletesolution -name Myfeature.wsp )
也可通过Sharepoint的用户操作界面来实现,方法是:
Central administration-->System Settings-->Farm Management-->Manage Farm Solutions-->选中你要操作的 solution-->在界面顶部点击 ‘Retract solution’-->等候片刻,等此操作完成后-->在此界面顶部点击 ‘Remove solution’。这样就移除了你想要移除的Feature。
要证实你是否真正地移除了你的Feature,你可以进入你所操作的网站集: Site Actions-->GalleriesàSolutions下查看此Feature是否存在。
或者SiteActions-->Site Collection Administration-->Site Collection Features下查看此Feature是否而在.
三、涉及的常用STSADM COMMANDS
1. Add the solution
stsadm -o addsolution -filename {WSPFILENAME}
2. Deploy the solution
stsadm -o deploysolution -name {WSPFILENAME} -url {SITEURL}
3. Install the feature
stsadm -o installfeature -filename {FeatureFolder}\feature.xml
4. Activate the feature
stsadm -o activatefeature -id {FEATUREID} -url {SITEURL} -force
5. Deactive the feature
Stsadm.exe -o deactivatefeature -filename “C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\TEMPLATE\FEATURES\MyFeature\feature.xml” -ur http://myserver-SP1:2010/
6.Uninstall the feature
stsadm -o uninstallfeature -filename
7.Retract Solution
stsadm -o retractsolution -name [-url] [-allcontenturls] [-time] [-immediate]
8.Delete Solution
stsadm -o deletesolution -name
当你在Sharepoint Farm的一个台服务器上部署了指定的Feature后,SPTimer服务会自动 synchronise/deploy (同步/部署)这个solution 到此Farm中其它服务器上。
标签: SharePoint如何使用StsadmInstalling或Uninstalling
相关文章
SharePoint2013爬网报错AnunrecognizedHTTPresponsewasreceivedwhenattemptingtocrawlthisitem.Verifywhethertheitemcanbeaccessedusingyourbrowser.然后登陆网站,发现在服务器上输入3次用户名密码白页,考虑到......
2022-04-11 449 SharePoint ERROR unrecognized HTTP response was received
最近使用SharePoint中,遇到一个需要重命名网站集的需求,主要是网站用数据库备份/还原的方式,想要改网站集的地址,然后搜了一下PowerShell:$site=Get-SPSite-Identityhttp://server/sites/Demo$site.......
2022-04-11 299 SharePoint重命名网站集名称