19c database binary download
Go to below link to download the golden image from Oracle Edelivery,
https://edelivery.oracle.com/osdc/faces/SoftwareDelivery
Please search the 19c database product in the search bar as below,
Download the highlighted version of the database as below,
Then click continue,
Select the platform and put a tick on oracle database 19c and click on continue,
Please go to below link to download RU patch,
https://updates.oracle.com/download/32841500.html
19c database installation
If you are using RHEL7 or CentOS7, you can pick up the PRM from the OL7 repository and install it. It will pull the dependencies from your normal repositories,
curl -o oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm
yum -y localinstall oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm
Please provide the permission as below for the mount points,
mkdir -p /u01/app/oracle/product/19.0.0/dbhome_1
chown -R oracle:oinstall /u01 /oradata /oraarchive
chmod -R 775 /u01 /oradata /oraarchive
Create the new groups and users,
groupadd -g 54321 oinstall
groupadd -g 54322 dba
groupadd -g 54323 oper
useradd -u 54321 -g oinstall -G dba,oper oracle
Unzip the content of the zip file to /u01/app/oracle/product/19.0.0/dbhome_1 location,
unzip V982063-01.zip -d /u01/app/oracle/product/19.0.0/dbhome_1/
Unzip the RU patch also,
unzip p32841500_190000_Linux-x86-64\ \(2\).zip
Go to below link to download opatch version of 12.2.0.1.23 or later,
https://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=6880880
Use the opatch to apply RU to database installation,
cd /u01/app/oracle/product/19.0.0/dbhome_1/
[oracle@testdb dbhome_1]$ ./runInstaller -applyRU /oraarchive/iso/32841500/32844504/ -silent
Preparing the home to patch...
Applying the patch /oraarchive/iso/32841500/32844504/...
Successfully applied the patch.
The log can be found at: /tmp/InstallActions2022-05-23_01-02-53PM/installerPatchActions_2022-05-23_01-02-53PM.log
Launching Oracle Database Setup Wizard...
[FATAL] [INS-32013] The Oracle base location is empty.
ACTION: Specify a path for Oracle base location.
Moved the install session logs to:
/u01/app/oraInventory/logs/InstallActions2022-05-23_01-02-53PM
Now we have to install the database software. Please follow the below steps,
cd /u01/app/oracle/product/19.0.0/dbhome_1/
[oracle@posdrdb dbhome_1]$ ./runInstaller
Select set up software only and click next,
0 Comments
Post a Comment