機械翻訳について

Oracle Platform Security Servicesのモデリング

WDTモデルのOPSSInitializationセクションを使用して、上位スタックFusion Middleware製品に必要な資格証明を初期化できます。 これらの資格証明は、ドメインの作成時にのみ適用できます。

Oracle Identity Governanceの初期化

この例では、Oracle Identity Governanceで使用するためのOPSS資格証明を構成する方法を示します。

domainInfo:
    AdminUserName: '@@PROP:adminUser@@'
    AdminPassword: '@@PROP:adminPass@@'
    OPSSInitialization:
        Credential:
            oim:
                TargetKey:
                    keystore:
                        Username: keystore
                        Password: '@@PROP:keystorePass@@'
                    OIMSchemaPassword:
                        # database schema prefix + _OIM
                        Username: PREFIX_OIM
                        # database schema password
                        Password: '@@PROP:dbSchemaPass@@'
                    sysadmin:
                        Username: xelsysadm
                        Password: '@@PROP:sysAdminPass@@'
                    WeblogicAdminKey:
                        # match to WLS admin credentials
                        Username: '@@PROP:adminUser@@'
                        Password: '@@PROP:adminPass@@'

Oracle Data Integratorの初期化中

この例では、Oracle Data Integratorで使用するOPSS資格証明を構成する方法を示します。

domainInfo:
    AdminUserName: '@@PROP:adminUser@@'
    AdminPassword: '@@PROP:adminPass@@'
    RCUDbInfo:
        rcu_prefix: PREFIX
        rcu_admin_password: '@@PROP:dbAdminPass@@'
        # for ODI, the schema password has to be < 10 characters
        rcu_schema_password: '@@PROP:dbSchemaPass@@'
        rcu_db_conn_string: '@@PROP:dbConnect@@'
        # WORK_REPO_PASSWORD is the database schema password
        # SUPERVISOR_PASSWORD needs to match TargetKey password in credential
        rcu_variables: 'SUPERVISOR_PASSWORD=@@PROP:supvPass@@,WORK_REPO_PASSWORD=@@PROP:dbSchemaPass@@,WORK_REPOSITORY_TYPE=D,WORK_REPO_NAME=WORKREP,ENCRYPTION_ALGORITHM=AES-128'
    OPSSInitialization:
        Credential:
            oracle.odi.credmap:
                TargetKey:
                    SUPERVISOR:
                        Username: mySupervisor
                        Password: '@@PROP:supvPass@@'