关于回复SharePoint 2010中的问题
你好,我的作业环境是SharePoint Foundation的2010+的Windows Server2008 R2+ SQL Server 2008的R2作为公司的EIP网站。
因为要做测试的关系,必须把目前正在上线中的EIP
我先在上线中的EIP网站伺服器中的的SharePoint管理管理命令介面,使用以下指令将上线中的EIP网站资料备份出来:
stsadm.exe的-O备份网址http://eipsvr文件名D:\备份\ eipsvrbackup.dat覆盖“
可以正常的备份出来。
我接下来进入测试的EIP网站使用的SHAREPOINT伺服器中,将备份的档案复制到D:\备份\路径下,在SHAREPOINT管理命令介面用以下的指令回写到测试环境:
“STSADM.EXE-O-恢复URL http://eiptest文件名D:\备份\ eipsvrbackup.dat覆盖”
却发生以下的错误:
“缺少作业名称或作业名称无效”
在区网内任何一台的电脑的网址列输入http://eiptest都可以连线到测试环境的SHAREPOINT网站,但是就是无法把先前备份的资料回写进去。
有人知道该如何解决吗?
感谢回覆。 sharepoint sql?server foundation 协同作业 STSADM
[解决办法]
SharePoint 2010备份最好用PowerShell
http://ranaictiu-technicalblog.blogspot.com/2010/06/sharepoint-2010-backuprestore-with.html
In SharePoint 2010, PowerShell command Backup-SPSite is used for taking backup. you can get details of the command from the msdn link. The following command will backup the site collection ‘http://myserver’.
Backup-SPSite -Identity http://myserver -Path "c:\backup\file.bak"
Restore a Site Collection with PowerShell command
To restore site collection you’ll use the following command. Use –Force if you want to overwrite the existing site collection
Restore-SPSite -Identity http://myserver -Path "c:\backup\file.bak"
[解决办法]
1,网站设置里有个备份功能
2,一般要使用工具的,具体你可以网上搜索一下。