Steps Performed 11.configure Transparent Data Encryption For CDB (Conditional)
This document contains Oracle database commands to configure Transparent Data Encryption (TDE) by creating a keystore, setting the wallet root and TDE configuration, and opening the keystore with a password. The keystore is created at '/u01/oracle/ebsupg/19c/admin/tde' and configured for auto-login with a backup for extra security.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
61 views1 page
Steps Performed 11.configure Transparent Data Encryption For CDB (Conditional)
This document contains Oracle database commands to configure Transparent Data Encryption (TDE) by creating a keystore, setting the wallet root and TDE configuration, and opening the keystore with a password. The keystore is created at '/u01/oracle/ebsupg/19c/admin/tde' and configured for auto-login with a backup for extra security.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
alter system set WALLET_ROOT='/u01/oracle/ebsupg/19c/admin/' scope=spfile;
alter system set tde_configuration="KEYSTORE_CONFIGURATION=FILE" scope=both;
ADMINISTER KEY MANAGEMENT CREATE KEYSTORE '/u01/oracle/ebsupg/19c/admin/tde' IDENTIFIED BY dxbmcn2020; administer key management set keystore open identified by dxbmcn2020; ADMINISTER KEY MANAGEMENT CREATE LOCAL AUTO_LOGIN KEYSTORE FROM KEYSTORE '/u01/oracle/ebsupg/19c/admin/tde' IDENTIFIED BY dxbmcn2020; administer key management set keystore open force keystore identified by dxbmcn2020; administer key management set key force keystore identified by dxbmcn2020 with backup;