Thursday, December 29, 2016



SharePoint Upgrade
SharePoint 2016 has come with many enhancements, encouraging organizations to migrate to this latest version. This post will take you through a step by step process on how you can upgrade your SharePoint 2013 to SharePoint 2016.
Note that you can upgrade your SharePoint instance from one server to another without any downtime. As this is a live migration, I would suggest you to take complete backup of the server and the database before continuing.
If you are running SharePoint 2010 and want to migrate, there is no method to migrate it directly to SharePoint 2016.
SharePoint 2016 migration
Here are the steps that you need to follow:
  • Create SharePoint 2013 farm
  • Attach SharePoint 2010 database to SharePoint 2013 farm
  • Upgrade site collections to full SharePoint 2013 mode
  • Create a new SharePoint 2016 farm  
  • Attach SharePoint 2013 database to SharePoint 2016 database server  
Here I am assuming that you have done all the prerequisites before starting this migration process. That means you’ve already installed SharePoint 2016 server, but if you are finding difficulty to do so, you can follow my previous post here.

Also, before starting the process go to your old SharePoint 2013 database Server, copy the WSS_Content content database of your site collection (which you want to migrate to SharePoint 2016) to the new SharePoint 2016 database server.
  1. Login to your old SQL Server Management Studio, select WSS_content ,go to task, and select copy database.
  2. SharePoint 2016

  3. You will get a database copy wizard. Click on Next.
  4. SharePoint Migration

  5. Verify source server properties.
  6. Migration SharePoint 2016
  7. Select the destination Server where you want to copy this WSS_contect DB.
  8. SharePoint 2016 migration
  9. In select the transfer method wizard, use SQL Management Object method if you want to do the migration without down time.
  10. SharePoint 2013 to SharePoint 2016 migration
  11. Select a database to copy. Select WSS_Content. Click on Next.
  12. SharePoint Migration 2016
  13. Configure the properties of a destination database.
  14. SharePoint 2016
  15. Select Logins here.
  16. SharePoint Project Server 2016
  17. Configure the package created.
  18. SharePoint 2016
  19. Select Run immediately option. If you need to schedule them, select Schedule option.

  20. Review the summary and click on Finish.
  21. SharePoint Migration process
  22. It will take a while to perform the operation.

  23. Once the database is restored, go back to your SharePoint 2016 Central Administration and setup your SharePoint Web Application to use the copied WSS_Content database. Go to Application Management -> Manage Web Applications.
  24. SharePoint2016_migration
  25. Create a new web application.
  26. SharePoint 2016
  27. Set new web application properties.

  28. Once the new application is created, open the SharePoint powershell as the administrator and run below commmands:
  1. Test your content database using command
  2. Test-SPContentDatabase -Name <database name> -Web Application <Web application name>


  3. Dismount the new database which is created by detault when the site collection is created.
  4. Dismount-SPContentDatabase "<Db Name>"


  5. Run the cmdlet to attach SharePoint 2013 content database to new SharePoint 2016 site collection.
  6. Mount-SPContentDatabase "WSS_Content_Home" -DatabaseServer “IN-SRV05” – WebApplication http://aspl-collab04/
    SharePoint 2016
  7. The upgrade will take 10 to 15 minutes to complete, and sometimes even an hour. Once it is completed, you will get a message like below:
  8. sharepoint 2016
  9. If your SharePoint site has a customized web solution, then run cmdlet to add SP solution
  10. Add-SPSolution C:\Service.wsp ( Path of wsp solution)

    SP2016
  11. After adding SP solution, we need to install this solution to our newly created web application use cmdlet:
Install-SPSolution –Identity Service.wsp –WebApplication   http://aspl-collab04/   –GACDeployment
And there you are! Now open your updated SharePoint site. Like you can see Advaiya’s updated SharePoint site as below: 
SharePoint Migration
  

No comments:

Post a Comment