While using the ESM to migrate policies between environments, the following error occurs due to a naming / GUID problem:
Migration failed: Import failed when processing entity: POLICY, <name> (#<GUID>) due to: (name) must be unique ().
This error occurs as the policy GUID's for the same service do not match between the two environments. ?A typical cause of this problem is when a policy is manually created in the destination environment which will assign a new GUID. At this point the two environments services cannot be matched by the ESM.
To correct this error, you can use the attached policy to update a Destination environment from a Source environment. ?The Source environment is read for the policy GUID's and the Destination environment has the policy GUID's updated to match those from the Source environment. ?The GUID alignment needs to be rolled through all the available environments. ?For example, PROD will be used to update UAT which will then update DEV.
While following this process, there are certain restrictions that must be observed, including the following:
No development work is being done on either environment
For the services to be re-aligned, it is essential that they have unique names as these are used to match services. ?The policy does not check for unique names but you can use a SQL statement similar to below to ensure there are no duplicates;
The steps for deploying and running the re-alignment are as follows:
As this process will directly update the database, it is strongly recommended to take a backup of the database before starting. This will allow easy rollback in the event of any problems. On the Destination envrironment run the following command;
mysqldump --all-databases -u root -p'<password>' | gzip > ~/all.sql.gz
where <password> is replaced with the correct value for the MySQL root account
Create a JDBC connection name 'Migration' that points to the local MySQL database. Do this on both nodes.?
<Please see attached file for image>
Create a REST service in the target destination for the alignment with a resolution path of?/migration?
Import the attached policy and ensure the JDBC connection has the correct username and password?
Use the ESM to copy the /migrate policy to the Prod environment. This ensures the migration policy has matching GUID's
Ensure the Prod service has the correct username and password entered for the MySQL connection
On the Destination environment, within the Task 'Manage Certificates' import in the SSL certificate for the Source environment and make sure to enable use for SSL?connections
<Please see attached file for image>
<Please see attached file for image>
<Please see attached file for image>
Enter in the following URL in a browser:
to align the policy fragments
http://<target_environment_FQDN>:8080/migration?type=align&mode=policyFrag&source=<source_environment_FQDN>
to align services
http://<target_environment_FQDN>:8080/migration?type=align&mode=services&source=<source_environment_FQDN>
Attachments: