Reputation: 11
We have 3-4 application in AEM 5.6.1 and now we are migrating one of the applications to AEM 6.1. We will be creating packages of application from 5.6.1 and deploying them to new instance AEM 6.1.
Is it all we need to do ?
Or else we require any other steps or modifications also ?
Upvotes: 1
Views: 1686
Reputation: 43
For migrating content from old aem server to new version aem server we followed the below approaches. My answer is mainly focused on content migration.
Approaches:
I have provided some answers here as well, checkout : Migrate AEM user generated content
For coding migration upward migration can be enetertained because of aem's backward compatibilty, you just need to take the package and deploy into a new version instance. Some of the things might not work due to below reasons and you have to do some houskeeping in this scenario after this you should be able to migrate code as well.
Upvotes: 0
Reputation: 4648
Since AEM 6.1 removes support for CRX2, you must first migrate the repository to Apache Oak before upgrading if you are using an AEM 5.x or AEM 6.0 with a CRX2 backend installation.
This doc helps.
Upvotes: 3
Reputation: 555
There are a couple of things I had come across:
Upvotes: 0
Reputation: 151
Moving package will do the trick, but you have to check if you are using any deprecated methods which might let your code to fail.
Upvotes: 0
Reputation: 865
Some problems with yours components and code may be founded.
You may find additional iformation on Adobe Upgrade page
Upvotes: 0