Environment:

  • Exadata X9M2
  • Virtual environment with KVM
  • Oracle Home in use: 19.22.0.0
  • Oracle Home to remove: 12.1.0.2
  • OS Linux 7.9
  • VM Name: ex2-itouglab01

Check if the home is in use

Connect to VM where you want to remove the oracle home and check as root if it is in use on both nodes:

Save KVM image info:

As root save info about the KVM image from fstab file:

This can be useful because oedacli remove from the fstab related mount point

Backup all useful home data

Back up the following directories in the oracle home:

  • admin
  • assistants
  • dbs
  • network
  • sqlplus

If you have changed something else outside these directories, it should be better that you backup also changed ones.

Check environment on Exadata:

Connect to Physical Exadata Database Server on node 1 and go to the directory onecommand (available usually only on node 1):

This directory contains OEDA files generated for Exadata setup, in particular XML files related to VMs configurations:

In the subdirectory Linux-x64 you can find OEDACLI setup:

Setup root password:

Before to start activity you have to set root password for the involved VM.

There are different ways to complete this task:

  1. Using genPasswordHash.sh tool to save the root password in OEDA encrypted file
  2. Using root private key for ssh connection

My choice is the second one because if you are using different password for different VMs you don’t have to change it each time.

To complete this task copy in the Workdir all the private keys of involved VMs and physical hosts too so that OEDACLI will be able to connect on each of them.

The SYNTAX for rsa files is the following:

Example:

Check XML file is valid and available:

First of all open OEDACLI and load XML file (in the /EXAVMIMAGES/onecommand directory) related to the VM where you want to drop the oracle home:

Then load XML file related to th VM that you want to update:

If you exit from oedacli you can find automatic backup files generated in the same path including date and time of the activity:

The correct file is the one without any additional info other that VM’s name.

Delete oracle home:

Execute the following steps to drop the unused oracle home:

STEP 1: Load XML file

Load XML file of the involved VM:

STEP 2: List Database Homes and cluster

Check the list of database homes available in the VM to be sure the one you want to delete is correctly listed:

List clusters configuration to be sure that you are working on the right one:

STEP 3: List XML actions

Check the list of XML actions to be sure that there is nothing pending and everything has been deployed correctly:

STEP 4: Reset XMLACTIONS

Clean already completed actions:

STEP 5: List XML actions

STEP 6: Define delete home command

Just to check for syntax errors execute the command to delete the home (this will not be executed but only saved in the list of actions in pending):

STEP 7: Save the current action

Save the delete action in memory:

STEP 8: List XML actions

Check pending actions:

STEP 9: Merge the current action

This activity merge the actions before to deploy them:

If you are deleting a database home previously used, you could receive an error like the following:

Even if you are using the database in a new ORACLE_HOME, OEDACLI XML file could be still connected to the ORACLE_HOME you are going to delete, so execute ALTER DATABASE to set the new ORACLE_HOME.

Check involved databases to understand the correct home to set:

Check database homes available to be sure that the home id is related to the one you are deleting:

Check on the virtual machine to confirm the home used:

Reset actions:

Alter databases involved to set the correct home (in this case both container and pluggable):

Save action:

List actions:

Merge actions:

List actions:

Deploy is a quite quick operation, so you can execute it directly fro the command line interface:

Or you can create a CMD file and execute it, but we will see this in the second part of the article.

Now we are ready to remove the Oracle Home and image disks associated, this will be done in part 2 of the article.

BIBLIOGRAPHY

https://docs.oracle.com/en/engineered-systems/exadata-database-machine/dbmmn/detach-command.html

https://docs.oracle.com/en/engineered-systems/exadata-database-machine/dbmin/oedacli-command-reference1.html

https://docs.oracle.com/en/engineered-systems/exadata-database-machine/dbmin/delete-databasehome.html