5.9 Cleaning Up Installation
Perform the following steps to clean up an OAA, OARM, and OUA installation completely.
- From the installation host, connect to the management container and delete the file
based vault and the logs from their respective NFS
mounts:
kubectl exec -n <namespace> -ti oaamgmt-oaa-mgmt-7d7597c694-tzzdz -- /bin/bash $ rm -rf /u01/oracle/logs/* $ rm -rf /u01/oracle/service/store/oaa/.* $ exit
- Run the following to find the helm charts
installed:
For example:helm ls -n <namespace>
The output will look similar to the following:helm ls -n oaans
Delete the OAA charts:NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION oaainstall oaans 1 <date> deployed oaa-1.0.0-<tag> 0.1.0 oaamgmt oaans 1 <date> deployed oaa-mgmt-1.0.0-<tag> 0.1.0
helm delete oaainstall -n oaans helm delete oaamgmt -n oaans
- Outside the container,
run:
kubectl get pods -n oaans
If any pods remain then run:kubectl delete <pod_name> -n <namespace>
- Delete the OAuth client and resources:
- Encode the OAM administrator user and its password by using
the
command:
For example:echo -n <username>:<password> | base64
This value should be used forecho -n oamadmin:<password> | base64
<ENCODED_OAMADMIN>
in the examples below. - Delete the OAuth Client. For
example:
curl --location --request DELETE 'http://<OAuth_Host>:<OAuth_port>/oam/services/rest/ssa/api/v1/oauthpolicyadmin/client?name=OAAClient&identityDomainName=OAADomain' \ --header 'Authorization: Basic <ENCODED_OAMADMIN>'
- Delete the OAuth Resource Server. For
example:
curl --location --request DELETE 'http://<OAuth_Host>:<OAuth_port>/oam/services/rest/ssa/api/v1/oauthpolicyadmin/application?name=OAAResource&identityDomainName=OAADomain' \ --header 'Authorization: Basic <ENCODED_OAMADMIN>'
- Delete the OAuth Domain. For
example:
curl --location --request DELETE 'http://<OAuth_Host>:<OAuth_port>/oam/services/rest/ssa/api/v1/oauthpolicyadmin/oauthidentitydomain?name=OAADomain' \ --header 'Authorization: Basic <ENCODED_OAMADMIN>'
- Encode the OAM administrator user and its password by using
the
command:
- Login to the Oracle Access Management Administration console and perform the
following tasks:
- In the Application Security Launchpad, click Application Domains.
- In the Search Application Domains screen, click Search.
- In the Search Results, click IAM Suite.
- Click Resources and Search
- For any resources that use the OAA_MFA-Policy, edit the resource and choose a different policy. Click Apply.
- Click on the Authentication Policies tab and delete the OAA_MFA-Policy. Click Delete to confirm.
- In the Application Security Launchpad, click Authentication Schemes. Click Search. Delete the OAA-MFA-Scheme and click Delete to confirm.
- In the Application Security Launchpad, click Authentication Modules. Click Search. Delete the OAA-MFA-Authn-Module and click Delete to confirm.
- Drop the database schemas as follows, Replace
<OAA_RCU_PREFIX>
with your OAA schema. You can find the schema name used for the installation in theinstallOAA.properties
, for exampledatabase.schema=DEV_OAA
:sqlplus sys/<password> as SYSDBA alter session set "_oracle_script"=TRUE; ** Required for PDB’s only ** drop user <OAA_RCU_PREFIX>_OAA cascade; delete from SCHEMA_VERSION_REGISTRY where comp_name='Oracle Advanced Authentication' and OWNER=UPPER('<OAA_RCU_PREFIX>_OAA'); commit; set pages 0 set feedback off spool /tmp/drop_directories.sql select 'drop directory '||directory_name||';' from all_directories where directory_name like 'EXPORT%' / spool off @/tmp/drop_directories
- In order to repeat the pull/tag/push of the OAA images, remove the directory
$WORKDIR/oaaimages/oaa-install/oaainstall-tmp
before rerunning theinstallManagementContainer.sh
script.