This error occurs when Oracle Universal Installer (OUI) or RapidWiz cannot find the Oracle Central Inventory (oraInventory).
Central Inventory does not exist. Skipping central inventory check...
Trying local inventory in Oracle Home...
Cannot find oraInventory
Please create oraInst.loc in the proper directory for your operating system.
The contents should look like this:
inventory_loc=/oracle/oraInventory
where "/oracle/oraInventory" is the direcotry where the central inventory is to be located.
Trying local inventory in Oracle Home...
Cannot find oraInventory
Please create oraInst.loc in the proper directory for your operating system.
The contents should look like this:
inventory_loc=/oracle/oraInventory
where "/oracle/oraInventory" is the direcotry where the central inventory is to be located.
1. Check if oraInst.loc exists
On Linux:
# cat /etc/oraInst.loc
If the file does not exist, create it.
2. Create Oracle Inventory Directory
As root: DB Side
# mkdir -p /oradata/prod/app/oraInventory
# chown -R oracle:dba/oradata/prod/app/oraInventory
# chmod -R 775 /oradata/prod/app/oraInventoryAs root: Application Side
Adjust ownership & directory according to your installation user and group.# mkdir -p /apps/EBS122/oraInventory/apps/EBS122/oraInventory
# chown -R applmgr:dba/apps/EBS122/oraInventory
# chmod -R 7753. Create
/etc/oraInst.locAs root:
#vi /etc/oraInst.locContents: DB Side
inventory_loc=/oradata/prod/app/oraInventory inst_group=dba
Contents: Application Side
inventory_loc=/apps/EBS122/oraInventory inst_group=dba
Set permissions:
chmod 664 /etc/oraInst.loc4. Verify
As root:#cat /etc/oraInst.loc
No comments:
Post a Comment