Posted by
Michał Juśkowiak
|
Posted in
SharePoint
|
Posted on
04:53
When you've finished configure all farm settings after new installation check if your web applications are accessible from your's Web Front Ends. If you receive below error:
"HTTP Error 401.1 – Unauthorized: Access is denied due to invalid credentials" don't be sad, because Microsoft have two solutions for this type of issue. I have always use method 1.
Posted by
Michał Juśkowiak
|
Posted in
SharePoint
|
Posted on
04:31
Prerequisite
The URL of the application will be the same after content moving
There is no infrastructure changes during the backup and restore process
The essential steps of the content db moving
1.Site collection backup
The stsadm command which make the backup is the following:
stsadm -o backup -url <site collection url> -filename <backup filename>
Posted by
Leszek Polnik
|
Posted in
SharePoint
|
Posted on
04:36
If you need to check or unlock site collection(s) automatically you can use this script. You can also add it at the end of any stsadm backup script by adding:
powershell.exe "& 'c:\folder\Get-SiteLock.ps1' -unlock"
This way it will check all site collections of all web applications for read-only locks and unlocks them if found. Post SP2 site collection backup sets the site collection as read-only during the backup but sometimes doesn't unlock them correctly after the backup.