Hi ,
We have deployed OO in new server . Is there any way to copy all the CP, system property and system account from existing environment to new environment with central values updated.. OO version 2020.01
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hi ,
We have deployed OO in new server . Is there any way to copy all the CP, system property and system account from existing environment to new environment with central values updated.. OO version 2020.01
Hi,
There is no official way to move system properties and system accounts from the old system to the new one. Furthermore, even if you were to try to move entire tables' content from the old central db to the new one you would end up with encryption key issues and missing content issues that would pretty much render your new system inoperable.
For the time being you can export the content packs from the old environment and import them to the new one so that you have the base structure in place in the new system and if the old central is still operational you can create a flow that iterates through the old system's configuration items and populates the values in the new system.
Hope this helps,
Vlad
Can you help me to how to iterate through system accounts in old central and deploy in new central
As per the Oo documentation on API (https://docs.microfocus.com/doc/Operations_Orchestration/2023.05/ConfigurationItemsContent) you can use GET /config-items/system-accounts api call to obtain the list of all System Accounts your user has entitlements to in the list.
This list can then be iterated with a list iterator and for each returned system account you can use GET /config-items/{type}/{path} api to get the latest active values that are available in central at the time. If there are central overrides this api will return the central overrides, otherwise it will return the deployed values.
Regards,
Vlad
Hi Thank you. but when i was iterating passwords are masked how we update that value to another central
Hi,
While it is true that the passwords for system accounts are encrypted, the encryption format is something that OO Central is able to understand and update correctly when passed through as flow variables. In the end the new central the correct value will be added without any 3rd party being able to read it as clear text.
Regards,
Vlad