Established 2013
[ Tools ]
Documentum: Crypto Initialization Problem
Created: 2 May 2010 Modified:
- Shutdown all the repositories on the target server
- Backup the database
- Rename the AEK file or rename it and move it some where else
- From sql on the database, run the following statements
- SQL> update dm_docbase_config_s set i_crypto_key = ‘ ‘.
- SQL> update dm_docbase_config_s set i_ticket_crypto_key = ‘ ‘.
- SQL> select r_object_id from dmi_vstamp_s where i_application = ‘dm_docbase_config_crypto_key_init’;
- SQL> delete from dmi_object_type where r_object_id = ‘returned r_object_id from above’;
- SQL> commit;
- SQL> delete from dmi_vstamp_s where r_object_id = ‘returned r_object_id from step above’
- SQL> commit;
- SQL> select r_object_id from dmi_vstamp_s where i_application = ‘dm_docbase_config_ticket_crypto_key_init’;
- SQL> delete from dmi_object_type where r_object_id = ‘returned r_object_id from above’;
- SQL> delete from dmi_vstamp_s where r_object_id = ‘returned r_object_id from step above’
- SQL> commit
- Change to the $DM_HOME/bin directory. Run dm_crypto_create
- To re-encrypt the dbpasswd.txt file do the following:
- cd $DM_HOME/bin
- dm_encrypt_password -docbase -rdbms -encrypt
- You need to perform all steps except running cm_crypto_create for each repository. Running dm_crypto_create should only be run once.
- Startup the repositories.
tags: Documentum - crypto - initialization