I have a big corporate portal (on SharePonit 2010) and now I want to make a copy of it for my tests. So the problem is how make a copy of portal (maybe without documemts) from http://server1 to http://server2 ?
|
|
migrated from stackoverflow.com Nov 29 '12 at 17:50
|
To back up a site collection, you must use the following stsadm command.
To restore a site collection, you must use the following Stsadm command.
If you want to copy the whole web application follow these steps
This will copy all the documents in document library. This method supports more than 2TB content database size. |
|||||||||||
|
|
sharepoint-site-collection-from-one-Server-to-another-Server |
|||
|
|
You should then try to go with the site template option. It gives you the option to save a copy of the site without the content and restore it to a different server. Refer to the image below:
|
|||
|
|
|
There are three ways to do this Central admin: go to backup and restore section Here you can take of site collection and restore from backup stsadm command To back up a site collection, you must use the following stsadm command.
To restore a site collection, you must use the following Stsadm command.
powershell command
is the ID or URL for the site collection you want to back up. is the path to where the backup file is located. If you want to overwrite a previously used backup file, use the Force parameter. You can use the NoSiteLock parameter to keep the read-only lock from being set on the site collection while it is being backed up. However, using this parameter can enable users to change the site collection while it is being backed up and could lead to possible data corruption during backup. To display the site collection GUID or URL at the Windows PowerShell command prompt, type the following command:
is URL for the site collection you want to restore. is name of the database server where the site collection resides. is the name of the content database. If you want to restore the site collection to a specific content database, use the DatabaseServer and DatabaseName parameters to specify the content database. If you do not specify a content database, the site collection will be restored to a content database chosen by SharePoint 2013. If you are restoring a host-named site collection, use the Identity parameter to specify the URL of the host-named site collection and use the HostHeader parameter to specify the URL of the Web application that will hold the host-named site collection. If you want to overwrite an existing site collection, use the Force parameter. |
|||
|
|

