简体   繁体   中英

How to migrate data from OUD 11g to OUD 12c

We are migrating from 11g to 12c. We have installed 12c (OIM, OAM, OUD). What is the best way forward for migrating user data because OIM contains user data with encrypted password?

First export all your data in a ldif file using export-ldif command, then make sure you copy all existing schemas (especialy if you have custom ones) to the new server and finnaly use dsconfig option allow-pre-encoded-password in your default password schema, the command would look like this:

./dsconfig -h localhost -p 4444 -D "cn=Directory Manager" -w "passwd" -X -n set-password-policy-prop –policy-name "Default Password Policy" –advanced –set allow-pre-encoded-passwords:true –trustAll

And then you can import your data ldif, using import-ldif command.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM