Upgrade site collection from SP2010 to SP2013(Part 2)
续上一篇随笔:Upgrade site collection from SP2010 to SP2013(Part 1)
- Create a web application which can't include any site collection in order to let it as our portal web application.
- Testing and mounting the content database to our portal web application.
PowerShell statement: Test-SPContentDatabase -Name <database_name> -
WebApplication http://<sharepoint_server_application>
e.g. Test-SPContentDatabase -Name WSS_Content_SPTeamPortal -WebApplication http://SPTeamPortal/
PowerShell statement: Mount-SPContentDatabase -Name <database_name> -WebApplication http://<sharepoint_server_application>
e.g. Mount-SPContentDatabase -Name WSS_Content_SPTeamPortal -WebApplication http://SPTeamPortal/
- Convert the identity authentication of our portal web application from Windows to Claims.
PowerShell statement: Convert-SPWebApplication -Identity "https://<webappurl>" -To Claims –RetainPermissions [-Force]
e.g. Convert-SPWebApplication -Identity "http://SPTeamPortal/" -To Claims –RetainPermissions
- Upgrade the experience of our portal site collection and My Site's site collection from SP2010 to SP2013.
The status of upgrade site collection as following:
- Run the search service to execute a full crawl.
未完待续,还有第三篇