0% found this document useful (0 votes)
42 views144 pages

19c RAC On VirtualBox

Uploaded by

iamsouravkumars
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views144 pages

19c RAC On VirtualBox

Uploaded by

iamsouravkumars
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 144

Implementing Oracle Database 19c (19.

20) RAC on Oracle Linux 8 Using


VirtualBox and Vagrant

I have completed Oracle Real Application Clusters (RAC) 19c installation using this method on
the following host operating system with 16 GB RAM.

Windows 11 Pro (64-bit)

Download and install the following software from below links.

1. VirtualBox

2. Vagrant

3. Git

VirtualBox 7.0.10

https://www.virtualbox.org/wiki/Downloads

Install Vagrant

Install or update to v2.3.7 (latest version) of Vagrant to get started.

https://developer.hashicorp.com/vagrant/downloads
Install Git

Download the latest (2.42.0) 64-bit version of Git for Windows. This is the most recent
maintained build. It was released 5 days ago, on 2023-08-21.

https://git-scm.com/download/win

You will need to download the 19c Grid Infrastructure and Database zip files from below link.

https://www.oracle.com/database/technologies/oracle19c-linux-downloads.html

Grid: LINUX.X64_193000_grid_home.zip

Database: LINUX.X64_193000_db_home.zip
You will also need to download the below patches from My Oracle Support website.

https://support.oracle.com

Patch 35370167

Patch 6880880
Clone Repository

Pick an area on your PC file system (C:\git\oraclebase in my case) to act as the base for this git
repository and issue the following command.

git clone https://github.com/oraclebase/vagrant.git

Copy the Oracle software and patches under the "C:\git\oraclebase\vagrant\rac\ol8_19\software"


subdirectory.
From the " C:\git\oraclebase\vagrant\rac\ol7_18 " subdirectory, the structure should look like
this.

```

$ tree

+--- config

| +--- install.env

| +--- vagrant.yml

+--- dns

| +--- scripts

| | +--- root_setup.sh

| | +--- setup.sh

| +--- Vagrantfile

+--- node1

| +--- scripts

| | +--- oracle_create_database.sh

| | +--- oracle_db_software_installation.sh

| | +--- oracle_grid_software_config.sh

| | +--- oracle_grid_software_installation.sh

| | +--- oracle_user_environment_setup.sh

| | +--- root_setup.sh

| | +--- setup.sh

| +--- Vagrantfile

+--- node2
| +--- scripts

| | +--- oracle_user_environment_setup.sh

| | +--- root_setup.sh

| | +--- setup.sh

| +--- Vagrantfile

+--- README.md

+--- shared_scripts

| +--- configure_chrony.sh

| +--- configure_hosts_base.sh

| +--- configure_hosts_scan.sh

| +--- configure_shared_disks.sh

| +--- install_os_packages.sh

| +--- oracle_software_patch.sh

| +--- prepare_u01_disk.sh

+--- software

| +--- LINUX.X64_193000_db_home.zip

| +--- LINUX.X64_193000_grid_home.zip

| +--- p6880880_190000_Linux-x86-64.zip

| +--- p35370167_190000_Linux-x86-64.zip

| +--- put_software_here.txt

```
## Amend File Paths

The "config" directory contains a "install.env" and a "vagrant.yml" file. The combination of these
two files contain all the config used for this build. You can alter the configuration of the build here,
but remember to make sure the combination of the two stay consistent.

At minimum you will have to amend the following paths in the "vagrant.yml" file, providing
suitable paths for the shared disks.

```

asm_crs_disk_1: /u05/VirtualBox/shared/ol8_19_rac/asm_crs_disk_1.vdi

asm_crs_disk_2: /u05/VirtualBox/shared/ol8_19_rac/asm_crs_disk_2.vdi

asm_crs_disk_3: /u05/VirtualBox/shared/ol8_19_rac/asm_crs_disk_3.vdi

asm_crs_disk_size: 2

asm_data_disk_1: /u05/VirtualBox/shared/ol8_19_rac/asm_data_disk_1.vdi

asm_data_disk_size: 40

asm_reco_disk_1: /u05/VirtualBox/shared/ol8_19_rac/asm_reco_disk_1.vdi

asm_reco_disk_size: 20

```

For example, if you were working on a Windows PC, you might create a path called
"C:\VirtualBox\shared\ol8_19_rac" and use the following settings.

```

asm_crs_disk_1: C:\VirtualBox\shared\ol8_19_rac\asm_crs_disk_1.vdi

asm_crs_disk_2: C:\VirtualBox\shared\ol8_19_rac\asm_crs_disk_2.vdi
asm_crs_disk_3: C:\VirtualBox\shared\ol8_19_rac\asm_crs_disk_3.vdi

asm_crs_disk_size: 2

asm_data_disk_1: C:\VirtualBox\shared\ol8_19_rac\asm_data_disk_1.vdi

asm_data_disk_size: 40

asm_reco_disk_1: C:\VirtualBox\shared\ol8_19_rac\asm_reco_disk_1.vdi

asm_reco_disk_size: 20

```

If you don't alter them, they will get written to "C:\u05\VirtualBox\shared\ol8_19_rac".

## Build the RAC

The following commands will leave you with a functioning RAC installation.

Start the DNS server.

```

cd dns

vagrant up

```

Start the second node of the cluster. This must be running before you start the first node.

```
cd ../node2

vagrant up

```

Start the first node of the cluster. This will perform all of the installation’s operations. Depending
on the spec of the host system, this could take a long time. On one of my servers it took about 3.5
hours to complete.

```

cd ../node1

vagrant up

```

## Turn Off RAC

Perform the following to turn off the RAC cleanly.

```

cd ../node2

vagrant halt

cd ../node1

vagrant halt

cd dns

vagrant halt

```

## Remove Whole RAC


The following commands will destroy all VMs and the associated files, so you can run the
process again.

```

cd ../node2

vagrant destroy -f

cd ../node1

vagrant destroy -f

cd dns

vagrant destroy -f

```

Check all the shared disks have been removed as expected. If they are left behind they will be
reused, which will cause problems.

## DHCP Server Issue

If the VirtualBox DHCP server is enabled, you may see something like this.

* DNS up and running.

* Node2 up and running.

* Node1 grid configuration fails with the following error.


```

default: Do grid software-only installation. Wed Nov 18 23:32:46 UTC 2020

default:
******************************************************************************

default: Launching Oracle Grid Infrastructure Setup Wizard...

default: [FATAL] [INS-40718] Single Client Access Name (SCAN):ol7-19-scan could not be
resolved.

default: CAUSE: The name you provided as the SCAN could not be resolved using TCP/IP
host name lookup.

default: ACTION: Provide name to use for the SCAN for which the domain can be resolved.

```

I have seen this a few times on a Windows laptop (my main workstation). I've not seen it on
macOS or Linux. It is almost like Node1 can't see the DNS, even though it is there, and Node2
can see it. I figure it must be some silly eccentricity of VirtualBox on Windows.

There are two workarounds for this.

Disable the VirtualBox DHCP server. Navigate to "File > Host Network Manager > DHCP
Server (tab)". Uncheck the "Enable Server" checkbox and click the "Apply" button.

Alternatively, do the following during the startup process.

* Start up DNS.

* Start Node2.

* Start Node1.
* While Node1 is doing the OS prerequisites, stop and start the DNS node (vagrant halt, then
vagrant up). That's not a rebuild. Just a restart. Clearly the DNS must be restarted before the
installation takes place.

Something about the DNS restart allows Node1 to see the DNS.

Reference Link: https://oracle-base.com/articles/19c/oracle-db-19c-rac-installation-on-oracle-


linux-8-using-virtualbox

## 19c (19.20) RAC Build Log

Windows PowerShell

Copyright (C) Microsoft Corporation. All rights reserved.

Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows

PS C:\git\oraclebase\vagrant\rac\ol8_19> cd dns

PS C:\git\oraclebase\vagrant\rac\ol8_19\dns> vagrant up

Bringing machine 'default' up with 'virtualbox' provider...

==> default: Importing base box 'oraclebase/oracle-8'...

==> default: Matching MAC address for NAT networking...

==> default: Checking if box 'oraclebase/oracle-8' version '2023.07.20' is up to date...

==> default: Setting the name of the VM: ol8_19_dns

==> default: Clearing any previously set network interfaces...

==> default: Preparing network interfaces based on configuration...

default: Adapter 1: nat


default: Adapter 2: hostonly

==> default: Forwarding ports...

default: 22 (guest) => 2222 (host) (adapter 1)

==> default: Running 'pre-boot' VM customizations...

==> default: Booting VM...

==> default: Waiting for machine to boot. This may take a few minutes...

default: SSH address: 127.0.0.1:2222

default: SSH username: vagrant

default: SSH auth method: private key

default:

default: Vagrant insecure key detected. Vagrant will automatically replace

default: this with a newly generated keypair for better security.

default:

default: Inserting generated public key within guest...

default: Removing insecure key from the guest if it's present...

default: Key inserted! Disconnecting and reconnecting using new SSH key...

==> default: Machine booted and ready!

==> default: Checking for guest additions in VM...

==> default: Configuring and enabling network interfaces...

==> default: Mounting shared folders...

default: /vagrant => C:/git/oraclebase/vagrant/rac/ol8_19/dns

default: /vagrant_config => C:/git/oraclebase/vagrant/rac/ol8_19/config

default: /vagrant_scripts => C:/git/oraclebase/vagrant/rac/ol8_19/shared_scripts


==> default: Running provisioner: shell...

default: Running: inline script

default:
******************************************************************************

default: Setup Start. Sun Aug 27 19:59:45 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: /vagrant_config/install.env: line 104: -1: substring expression < 0

default: Set root password and configure networking. Sun Aug 27 19:59:45 UTC 2023

default:
******************************************************************************

default: Changing password for user root.

default: passwd: all authentication tokens updated successfully.

default:
******************************************************************************

default: Amend hosts file with public, private and virtual IPs. Sun Aug 27 19:59:45 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Amend hosts file with SCAN IPs. Sun Aug 27 19:59:45 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Firewall. Sun Aug 27 19:59:45 UTC 2023


default:
******************************************************************************

default:
******************************************************************************

default: Install dnsmasq. Sun Aug 27 19:59:45 UTC 2023

default:
******************************************************************************

default: Oracle Linux 8 BaseOS Latest (x86_64) 8.5 MB/s | 62 MB 00:07

default: Oracle Linux 8 Application Stream (x86_64) 8.5 MB/s | 48 MB 00:05

default: Latest Unbreakable Enterprise Kernel Release 7 7.0 MB/s | 19 MB 00:02

default: Last metadata expiration check: 0:00:04 ago on Sun 27 Aug 2023 08:00:29 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: dnsmasq x86_64 2.79-26.el8 ol8_appstream 321 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:
default: Total download size: 321 k

default: Installed size: 651 k

default: Downloading Packages:

default: dnsmasq-2.79-26.el8.x86_64.rpm 500 kB/s | 321 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 498 kB/s | 321 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Running scriptlet: dnsmasq-2.79-26.el8.x86_64 1/1

default: Installing : dnsmasq-2.79-26.el8.x86_64 1/1

default: Running scriptlet: dnsmasq-2.79-26.el8.x86_64 1/1

default: Verifying : dnsmasq-2.79-26.el8.x86_64 1/1

default:

default: Installed:

default: dnsmasq-2.79-26.el8.x86_64

default:

default: Complete!

default: New password: Retype new password: Created symlink /etc/systemd/system/multi-


user.target.wants/dnsmasq.service → /usr/lib/systemd/system/dnsmasq.service.
default:
******************************************************************************

default: Setup End. Sun Aug 27 20:00:41 UTC 2023

default:
******************************************************************************

PS C:\git\oraclebase\vagrant\rac\ol8_19\dns> cd ../node2

PS C:\git\oraclebase\vagrant\rac\ol8_19\node2> vagrant up

Bringing machine 'default' up with 'virtualbox' provider...

==> default: Importing base box 'oraclebase/oracle-8'...

==> default: Matching MAC address for NAT networking...

==> default: Checking if box 'oraclebase/oracle-8' version '2023.07.20' is up to date...

==> default: Setting the name of the VM: ol8_19_rac2

==> default: Fixed port collision for 22 => 2222. Now on port 2200.

==> default: Clearing any previously set network interfaces...

==> default: Preparing network interfaces based on configuration...

default: Adapter 1: nat

default: Adapter 2: hostonly

default: Adapter 3: intnet

==> default: Forwarding ports...

default: 1521 (guest) => 1522 (host) (adapter 1)

default: 5500 (guest) => 5502 (host) (adapter 1)

default: 22 (guest) => 2200 (host) (adapter 1)

==> default: Running 'pre-boot' VM customizations...

==> default: Booting VM...


==> default: Waiting for machine to boot. This may take a few minutes...

default: SSH address: 127.0.0.1:2200

default: SSH username: vagrant

default: SSH auth method: private key

default:

default: Vagrant insecure key detected. Vagrant will automatically replace

default: this with a newly generated keypair for better security.

default:

default: Inserting generated public key within guest...

default: Removing insecure key from the guest if it's present...

default: Key inserted! Disconnecting and reconnecting using new SSH key...

==> default: Machine booted and ready!

==> default: Checking for guest additions in VM...

==> default: Configuring and enabling network interfaces...

==> default: Mounting shared folders...

default: /vagrant => C:/git/oraclebase/vagrant/rac/ol8_19/node2

default: /vagrant_config => C:/git/oraclebase/vagrant/rac/ol8_19/config

default: /vagrant_scripts => C:/git/oraclebase/vagrant/rac/ol8_19/shared_scripts

default: /vagrant_software => C:/git/oraclebase/vagrant/rac/ol8_19/software

==> default: Running provisioner: shell...

default: Running: inline script

default:
******************************************************************************

default: Setup Start. Sun Aug 27 20:08:33 UTC 2023


default:
******************************************************************************

default:
******************************************************************************

default: Prepare /u01 disk. Sun Aug 27 20:08:33 UTC 2023

default:
******************************************************************************

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.

default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0xbd624666.

default:

default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-209715199,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-209715199, default
209715199):

default: Created a new partition 1 of type 'Linux' and of size 100 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.


default:

default: meta-data=/dev/sdb1 isize=512 agcount=4, agsize=6553536 blks

default: = sectsz=512 attr=2, projid32bit=1

default: = crc=1 finobt=1, sparse=1, rmapbt=0

default: = reflink=1 bigtime=0 inobtcount=0

default: data = bsize=4096 blocks=26214144, imaxpct=25

default: = sunit=0 swidth=0 blks

default: naming =version 2 bsize=4096 ascii-ci=0, ftype=1

default: log =internal log bsize=4096 blocks=25600, version=2

default: = sectsz=512 sunit=0 blks, lazy-count=1

default: realtime =none extsz=4096 blocks=0, rtextents=0

default:
******************************************************************************

default: Prepare yum repos and install base packages. Sun Aug 27 20:08:34 UTC 2023

default:
******************************************************************************

default: Oracle Linux 8 BaseOS Latest (x86_64) 8.1 MB/s | 62 MB 00:07

default: Oracle Linux 8 Application Stream (x86_64) 8.4 MB/s | 48 MB 00:05

default: Latest Unbreakable Enterprise Kernel Release 7 6.4 MB/s | 19 MB 00:02

default: Last metadata expiration check: 0:00:05 ago on Sun 27 Aug 2023 08:09:18 PM UTC.

default: Package yum-utils-4.0.21-19.0.1.el8_8.noarch is already installed.

default: Package zip-3.0-23.el8.x86_64 is already installed.

default: Package unzip-6.0-46.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.


default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:11 ago on Sun 27 Aug 2023 08:09:18 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: oracle-epel-release-el8 x86_64 1.0-5.el8 ol8_baseos_latest 15 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total download size: 15 k

default: Installed size: 18 k

default: Downloading Packages:

default: oracle-epel-release-el8-1.0-5.el8.x86_64.rpm 56 kB/s | 15 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 55 kB/s | 15 kB 00:00


default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : oracle-epel-release-el8-1.0-5.el8.x86_64 1/1

default: Verifying : oracle-epel-release-el8-1.0-5.el8.x86_64 1/1

default:

default: Installed:

default: oracle-epel-release-el8-1.0-5.el8.x86_64

default:

default: Complete!

default: Oracle Linux 8 EPEL Packages for Development (x 8.3 MB/s | 52 MB 00:06

default: Oracle Linux 8 EPEL Modular Packages for Develo 305 kB/s | 322 kB 00:01

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: sshpass x86_64 1.09-4.el8 ol8_appstream 30 k


default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total download size: 30 k

default: Installed size: 43 k

default: Downloading Packages:

default: sshpass-1.09-4.el8.x86_64.rpm 69 kB/s | 30 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 68 kB/s | 30 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : sshpass-1.09-4.el8.x86_64 1/1

default: Running scriptlet: sshpass-1.09-4.el8.x86_64 1/1

default: Verifying : sshpass-1.09-4.el8.x86_64 1/1

default:

default: Installed:
default: sshpass-1.09-4.el8.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:00:09 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
=============================

default: Package Arch Version Repository Size

default:
=====================================================================
=============================

default: Installing:

default: oracle-database-preinstall-19c x86_64 1.0-2.el8 ol8_appstream 31


k

default: Installing dependencies:

default: bind-libs x86_64 32:9.11.36-8.el8_8.1 ol8_appstream 175 k

default: bind-libs-lite x86_64 32:9.11.36-8.el8_8.1 ol8_appstream 1.2


M

default: bind-license noarch 32:9.11.36-8.el8_8.1 ol8_appstream 104 k

default: bind-utils x86_64 32:9.11.36-8.el8_8.1 ol8_appstream 453 k

default: fstrm x86_64 0.6.1-3.el8 ol8_appstream 29 k

default: ksh x86_64 20120801-257.0.1.el8 ol8_appstream 929 k

default: libX11-xcb x86_64 1.6.8-5.el8 ol8_appstream 14 k

default: libXcomposite x86_64 0.4.4-14.el8 ol8_appstream 28 k

default: libXi x86_64 1.7.10-1.el8 ol8_appstream 49 k


default: libXinerama x86_64 1.1.4-1.el8 ol8_appstream 15 k

default: libXrandr x86_64 1.5.2-1.el8 ol8_appstream 34 k

default: libXrender x86_64 0.9.10-7.el8 ol8_appstream 33 k

default: libXtst x86_64 1.2.3-7.el8 ol8_appstream 22 k

default: libXv x86_64 1.0.11-7.el8 ol8_appstream 20 k

default: libXxf86dga x86_64 1.1.5-1.el8 ol8_appstream 26 k

default: libXxf86misc x86_64 1.0.4-1.el8 ol8_appstream 23 k

default: libXxf86vm x86_64 1.1.4-9.el8 ol8_appstream 19 k

default: libaio x86_64 0.3.112-1.el8 ol8_baseos_latest 33 k

default: libaio-devel x86_64 0.3.112-1.el8 ol8_baseos_latest 19 k

default: libdmx x86_64 1.1.4-3.el8 ol8_appstream 22 k

default: libnsl x86_64 2.28-225.0.3.el8 ol8_baseos_latest 108 k

default: libstdc++-devel x86_64 8.5.0-18.0.2.el8 ol8_appstream 2.1 M

default: lm_sensors-libs x86_64 3.4.0-23.20180522git70f7e08.el8


ol8_baseos_latest 59 k

default: protobuf-c x86_64 1.3.0-6.el8 ol8_appstream 37 k

default: python3-bind noarch 32:9.11.36-8.el8_8.1 ol8_appstream 151


k

default: smartmontools x86_64 1:7.1-1.el8 ol8_baseos_latest 544 k

default: sysstat x86_64 11.7.3-9.0.1.el8 ol8_appstream 427 k

default: xorg-x11-utils x86_64 7.5-28.el8 ol8_appstream 136 k

default: xorg-x11-xauth x86_64 1:1.0.9-12.el8 ol8_appstream 39 k

default:

default: Transaction Summary


default:
=====================================================================
=============================

default: Install 30 Packages

default:

default: Total download size: 6.7 M

default: Installed size: 24 M

default: Downloading Packages:

default: (1/30): libaio-0.3.112-1.el8.x86_64.rpm 68 kB/s | 33 kB 00:00

default: (2/30): libaio-devel-0.3.112-1.el8.x86_64.rpm 39 kB/s | 19 kB 00:00

default: (3/30): libnsl-2.28-225.0.3.el8.x86_64.rpm 190 kB/s | 108 kB 00:00

default: (4/30): lm_sensors-libs-3.4.0-23.20180522git70f 352 kB/s | 59 kB 00:00

default: (5/30): bind-libs-9.11.36-8.el8_8.1.x86_64.rpm 913 kB/s | 175 kB 00:00

default: (6/30): bind-license-9.11.36-8.el8_8.1.noarch.r 982 kB/s | 104 kB 00:00

default: (7/30): smartmontools-7.1-1.el8.x86_64.rpm 1.2 MB/s | 544 kB 00:00

default: (8/30): fstrm-0.6.1-3.el8.x86_64.rpm 316 kB/s | 29 kB 00:00

default: (9/30): bind-utils-9.11.36-8.el8_8.1.x86_64.rpm 2.1 MB/s | 453 kB 00:00

default: (10/30): bind-libs-lite-9.11.36-8.el8_8.1.x86_6 2.3 MB/s | 1.2 MB 00:00

default: (11/30): libX11-xcb-1.6.8-5.el8.x86_64.rpm 148 kB/s | 14 kB 00:00

default: (12/30): libXcomposite-0.4.4-14.el8.x86_64.rpm 328 kB/s | 28 kB 00:00

default: (13/30): libXi-1.7.10-1.el8.x86_64.rpm 515 kB/s | 49 kB 00:00

default: (14/30): ksh-20120801-257.0.1.el8.x86_64.rpm 3.7 MB/s | 929 kB 00:00

default: (15/30): libXinerama-1.1.4-1.el8.x86_64.rpm 171 kB/s | 15 kB 00:00

default: (16/30): libXrandr-1.5.2-1.el8.x86_64.rpm 381 kB/s | 34 kB 00:00


default: (17/30): libXrender-0.9.10-7.el8.x86_64.rpm 351 kB/s | 33 kB 00:00

default: (18/30): libXtst-1.2.3-7.el8.x86_64.rpm 244 kB/s | 22 kB 00:00

default: (19/30): libXv-1.0.11-7.el8.x86_64.rpm 223 kB/s | 20 kB 00:00

default: (20/30): libXxf86dga-1.1.5-1.el8.x86_64.rpm 265 kB/s | 26 kB 00:00

default: (21/30): libXxf86misc-1.0.4-1.el8.x86_64.rpm 252 kB/s | 23 kB 00:00

default: (22/30): libXxf86vm-1.1.4-9.el8.x86_64.rpm 222 kB/s | 19 kB 00:00

default: (23/30): libdmx-1.1.4-3.el8.x86_64.rpm 209 kB/s | 22 kB 00:00

default: (24/30): oracle-database-preinstall-19c-1.0-2.e 324 kB/s | 31 kB 00:00

default: (25/30): protobuf-c-1.3.0-6.el8.x86_64.rpm 300 kB/s | 37 kB 00:00

default: (26/30): python3-bind-9.11.36-8.el8_8.1.noarch. 1.1 MB/s | 151 kB 00:00

default: (27/30): libstdc++-devel-8.5.0-18.0.2.el8.x86_6 7.1 MB/s | 2.1 MB 00:00

default: (28/30): sysstat-11.7.3-9.0.1.el8.x86_64.rpm 2.6 MB/s | 427 kB 00:00

default: (29/30): xorg-x11-utils-7.5-28.el8.x86_64.rpm 1.3 MB/s | 136 kB 00:00

default: (30/30): xorg-x11-xauth-1.0.9-12.el8.x86_64.rpm 433 kB/s | 39 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 3.5 MB/s | 6.7 MB 00:01

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : protobuf-c-1.3.0-6.el8.x86_64 1/30


default: Installing : fstrm-0.6.1-3.el8.x86_64 2/30

default: Installing : bind-license-32:9.11.36-8.el8_8.1.noarch 3/30

default: Installing : bind-libs-lite-32:9.11.36-8.el8_8.1.x86_64 4/30

default: Installing : libXrender-0.9.10-7.el8.x86_64 5/30

default: Installing : libXi-1.7.10-1.el8.x86_64 6/30

default: Installing : libaio-0.3.112-1.el8.x86_64 7/30

default: Installing : libaio-devel-0.3.112-1.el8.x86_64 8/30

default: Installing : libXtst-1.2.3-7.el8.x86_64 9/30

default: Installing : libXrandr-1.5.2-1.el8.x86_64 10/30

default: Installing : bind-libs-32:9.11.36-8.el8_8.1.x86_64 11/30

default: Installing : python3-bind-32:9.11.36-8.el8_8.1.noarch 12/30

default: Installing : bind-utils-32:9.11.36-8.el8_8.1.x86_64 13/30

default: Installing : xorg-x11-xauth-1:1.0.9-12.el8.x86_64 14/30

default: Installing : libstdc++-devel-8.5.0-18.0.2.el8.x86_64 15/30

default: Installing : libdmx-1.1.4-3.el8.x86_64 16/30

default: Installing : libXxf86vm-1.1.4-9.el8.x86_64 17/30

default: Installing : libXxf86misc-1.0.4-1.el8.x86_64 18/30

default: Installing : libXxf86dga-1.1.5-1.el8.x86_64 19/30

default: Installing : libXv-1.0.11-7.el8.x86_64 20/30

default: Installing : libXinerama-1.1.4-1.el8.x86_64 21/30

default: Installing : libXcomposite-0.4.4-14.el8.x86_64 22/30

default: Installing : libX11-xcb-1.6.8-5.el8.x86_64 23/30

default: Installing : xorg-x11-utils-7.5-28.el8.x86_64 24/30


default: Installing : ksh-20120801-257.0.1.el8.x86_64 25/30

default: Running scriptlet: ksh-20120801-257.0.1.el8.x86_64 25/30

default: Running scriptlet: smartmontools-1:7.1-1.el8.x86_64 26/30

default: Installing : smartmontools-1:7.1-1.el8.x86_64 26/30

default: Running scriptlet: smartmontools-1:7.1-1.el8.x86_64 26/30

default: Installing : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 27/30

default: Running scriptlet: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 27/30

default: Installing : sysstat-11.7.3-9.0.1.el8.x86_64 28/30

default: Running scriptlet: sysstat-11.7.3-9.0.1.el8.x86_64 28/30

default: Installing : libnsl-2.28-225.0.3.el8.x86_64 29/30

default: Running scriptlet: oracle-database-preinstall-19c-1.0-2.el8.x86_64 30/30

default: Installing : oracle-database-preinstall-19c-1.0-2.el8.x86_64 30/30

default: Running scriptlet: oracle-database-preinstall-19c-1.0-2.el8.x86_64 30/30

default: Verifying : libaio-0.3.112-1.el8.x86_64 1/30

default: Verifying : libaio-devel-0.3.112-1.el8.x86_64 2/30

default: Verifying : libnsl-2.28-225.0.3.el8.x86_64 3/30

default: Verifying : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 4/30

default: Verifying : smartmontools-1:7.1-1.el8.x86_64 5/30

default: Verifying : bind-libs-32:9.11.36-8.el8_8.1.x86_64 6/30

default: Verifying : bind-libs-lite-32:9.11.36-8.el8_8.1.x86_64 7/30

default: Verifying : bind-license-32:9.11.36-8.el8_8.1.noarch 8/30

default: Verifying : bind-utils-32:9.11.36-8.el8_8.1.x86_64 9/30

default: Verifying : fstrm-0.6.1-3.el8.x86_64 10/30


default: Verifying : ksh-20120801-257.0.1.el8.x86_64 11/30

default: Verifying : libX11-xcb-1.6.8-5.el8.x86_64 12/30

default: Verifying : libXcomposite-0.4.4-14.el8.x86_64 13/30

default: Verifying : libXi-1.7.10-1.el8.x86_64 14/30

default: Verifying : libXinerama-1.1.4-1.el8.x86_64 15/30

default: Verifying : libXrandr-1.5.2-1.el8.x86_64 16/30

default: Verifying : libXrender-0.9.10-7.el8.x86_64 17/30

default: Verifying : libXtst-1.2.3-7.el8.x86_64 18/30

default: Verifying : libXv-1.0.11-7.el8.x86_64 19/30

default: Verifying : libXxf86dga-1.1.5-1.el8.x86_64 20/30

default: Verifying : libXxf86misc-1.0.4-1.el8.x86_64 21/30

default: Verifying : libXxf86vm-1.1.4-9.el8.x86_64 22/30

default: Verifying : libdmx-1.1.4-3.el8.x86_64 23/30

default: Verifying : libstdc++-devel-8.5.0-18.0.2.el8.x86_64 24/30

default: Verifying : oracle-database-preinstall-19c-1.0-2.el8.x86_64 25/30

default: Verifying : protobuf-c-1.3.0-6.el8.x86_64 26/30

default: Verifying : python3-bind-32:9.11.36-8.el8_8.1.noarch 27/30

default: Verifying : sysstat-11.7.3-9.0.1.el8.x86_64 28/30

default: Verifying : xorg-x11-utils-7.5-28.el8.x86_64 29/30

default: Verifying : xorg-x11-xauth-1:1.0.9-12.el8.x86_64 30/30

default:

default: Installed:

default: bind-libs-32:9.11.36-8.el8_8.1.x86_64
default: bind-libs-lite-32:9.11.36-8.el8_8.1.x86_64

default: bind-license-32:9.11.36-8.el8_8.1.noarch

default: bind-utils-32:9.11.36-8.el8_8.1.x86_64

default: fstrm-0.6.1-3.el8.x86_64

default: ksh-20120801-257.0.1.el8.x86_64

default: libX11-xcb-1.6.8-5.el8.x86_64

default: libXcomposite-0.4.4-14.el8.x86_64

default: libXi-1.7.10-1.el8.x86_64

default: libXinerama-1.1.4-1.el8.x86_64

default: libXrandr-1.5.2-1.el8.x86_64

default: libXrender-0.9.10-7.el8.x86_64

default: libXtst-1.2.3-7.el8.x86_64

default: libXv-1.0.11-7.el8.x86_64

default: libXxf86dga-1.1.5-1.el8.x86_64

default: libXxf86misc-1.0.4-1.el8.x86_64

default: libXxf86vm-1.1.4-9.el8.x86_64

default: libaio-0.3.112-1.el8.x86_64

default: libaio-devel-0.3.112-1.el8.x86_64

default: libdmx-1.1.4-3.el8.x86_64

default: libnsl-2.28-225.0.3.el8.x86_64

default: libstdc++-devel-8.5.0-18.0.2.el8.x86_64

default: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x86_64

default: oracle-database-preinstall-19c-1.0-2.el8.x86_64
default: protobuf-c-1.3.0-6.el8.x86_64

default: python3-bind-32:9.11.36-8.el8_8.1.noarch

default: smartmontools-1:7.1-1.el8.x86_64

default: sysstat-11.7.3-9.0.1.el8.x86_64

default: xorg-x11-utils-7.5-28.el8.x86_64

default: xorg-x11-xauth-1:1.0.9-12.el8.x86_64

default:

default: Complete!

default:
******************************************************************************

default: Add extra OS packages. Most should be present. Sun Aug 27 20:10:23 UTC 2023

default:
******************************************************************************

default: Last metadata expiration check: 0:00:30 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package bc-1.07.1-5.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:34 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package binutils-2.30-119.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:38 ago on Sun 27 Aug 2023 08:09:54 PM UTC.
default: No match for argument: compat-libstdc++-33

default: Error: Unable to find a match: compat-libstdc++-33

default: Last metadata expiration check: 0:00:42 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package elfutils-libelf-0.188-3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:46 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package elfutils-libelf-devel-0.188-3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:50 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: fontconfig-devel x86_64 2.13.1-4.el8 ol8_baseos_latest 151 k

default: Installing dependencies:

default: bzip2-devel x86_64 1.0.6-26.el8 ol8_baseos_latest 224 k


default: dejavu-fonts-common noarch 2.35-7.el8 ol8_baseos_latest 74 k

default: dejavu-sans-fonts noarch 2.35-7.el8 ol8_baseos_latest 1.5 M

default: expat-devel x86_64 2.2.5-11.0.1.el8 ol8_baseos_latest 57 k

default: fontconfig x86_64 2.13.1-4.el8 ol8_baseos_latest 274 k

default: fontpackages-filesystem noarch 1.44-22.el8 ol8_baseos_latest 16 k

default: freetype-devel x86_64 2.9.1-9.el8 ol8_baseos_latest 464 k

default: libpng-devel x86_64 2:1.6.34-5.el8 ol8_baseos_latest 327 k

default: libuuid-devel x86_64 2.32.1-42.el8_8 ol8_baseos_latest 99 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 10 Packages

default:

default: Total download size: 3.1 M

default: Installed size: 11 M

default: Downloading Packages:

default: (1/10): dejavu-fonts-common-2.35-7.el8.noarch.r 158 kB/s | 74 kB 00:00

default: (2/10): bzip2-devel-1.0.6-26.el8.x86_64.rpm 396 kB/s | 224 kB 00:00

default: (3/10): expat-devel-2.2.5-11.0.1.el8.x86_64.rpm 496 kB/s | 57 kB 00:00

default: (4/10): fontconfig-2.13.1-4.el8.x86_64.rpm 1.5 MB/s | 274 kB 00:00

default: (5/10): fontconfig-devel-2.13.1-4.el8.x86_64.rp 718 kB/s | 151 kB 00:00

default: (6/10): fontpackages-filesystem-1.44-22.el8.noa 194 kB/s | 16 kB 00:00


default: (7/10): dejavu-sans-fonts-2.35-7.el8.noarch.rpm 1.7 MB/s | 1.5 MB 00:00

default: (8/10): libpng-devel-1.6.34-5.el8.x86_64.rpm 2.6 MB/s | 327 kB 00:00

default: (9/10): libuuid-devel-2.32.1-42.el8_8.x86_64.rp 1.0 MB/s | 99 kB 00:00

default: (10/10): freetype-devel-2.9.1-9.el8.x86_64.rpm 1.9 MB/s | 464 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 3.0 MB/s | 3.1 MB 00:01

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : fontpackages-filesystem-1.44-22.el8.noarch 1/10

default: Installing : dejavu-fonts-common-2.35-7.el8.noarch 2/10

default: Installing : dejavu-sans-fonts-2.35-7.el8.noarch 3/10

default: Installing : fontconfig-2.13.1-4.el8.x86_64 4/10

default: Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 4/10

default: Installing : libuuid-devel-2.32.1-42.el8_8.x86_64 5/10

default: Installing : libpng-devel-2:1.6.34-5.el8.x86_64 6/10

default: Installing : expat-devel-2.2.5-11.0.1.el8.x86_64 7/10

default: Installing : bzip2-devel-1.0.6-26.el8.x86_64 8/10

default: Installing : freetype-devel-2.9.1-9.el8.x86_64 9/10

default: Installing : fontconfig-devel-2.13.1-4.el8.x86_64 10/10


default: Running scriptlet: fontconfig-devel-2.13.1-4.el8.x86_64 10/10

default: Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 10/10

default: Verifying : bzip2-devel-1.0.6-26.el8.x86_64 1/10

default: Verifying : dejavu-fonts-common-2.35-7.el8.noarch 2/10

default: Verifying : dejavu-sans-fonts-2.35-7.el8.noarch 3/10

default: Verifying : expat-devel-2.2.5-11.0.1.el8.x86_64 4/10

default: Verifying : fontconfig-2.13.1-4.el8.x86_64 5/10

default: Verifying : fontconfig-devel-2.13.1-4.el8.x86_64 6/10

default: Verifying : fontpackages-filesystem-1.44-22.el8.noarch 7/10

default: Verifying : freetype-devel-2.9.1-9.el8.x86_64 8/10

default: Verifying : libpng-devel-2:1.6.34-5.el8.x86_64 9/10

default: Verifying : libuuid-devel-2.32.1-42.el8_8.x86_64 10/10

default:

default: Installed:

default: bzip2-devel-1.0.6-26.el8.x86_64

default: dejavu-fonts-common-2.35-7.el8.noarch

default: dejavu-sans-fonts-2.35-7.el8.noarch

default: expat-devel-2.2.5-11.0.1.el8.x86_64

default: fontconfig-2.13.1-4.el8.x86_64

default: fontconfig-devel-2.13.1-4.el8.x86_64

default: fontpackages-filesystem-1.44-22.el8.noarch

default: freetype-devel-2.9.1-9.el8.x86_64

default: libpng-devel-2:1.6.34-5.el8.x86_64
default: libuuid-devel-2.32.1-42.el8_8.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:00:59 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package glibc-2.28-225.0.3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:03 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package glibc-devel-2.28-225.0.3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:07 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package ksh-20120801-257.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:11 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libaio-0.3.112-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!
default: Last metadata expiration check: 0:01:15 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libaio-devel-0.3.112-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:19 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libXrender-0.9.10-7.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:22 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: libXrender-devel x86_64 0.9.10-7.el8 ol8_appstream 22 k

default: Installing dependencies:

default: libX11-devel x86_64 1.6.8-5.el8 ol8_appstream 976 k

default: libXau-devel x86_64 1.0.9-3.el8 ol8_appstream 21 k

default: libxcb-devel x86_64 1.13.1-1.el8 ol8_appstream 1.1 M


default: xorg-x11-proto-devel noarch 2020.1-3.el8 ol8_appstream 280 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 5 Packages

default:

default: Total download size: 2.3 M

default: Installed size: 5.4 M

default: Downloading Packages:

default: (1/5): libXau-devel-1.0.9-3.el8.x86_64.rpm 52 kB/s | 21 kB 00:00

default: (2/5): libXrender-devel-0.9.10-7.el8.x86_64.rpm 56 kB/s | 22 kB 00:00

default: (3/5): xorg-x11-proto-devel-2020.1-3.el8.noarch 780 kB/s | 280 kB 00:00

default: (4/5): libX11-devel-1.6.8-5.el8.x86_64.rpm 1.2 MB/s | 976 kB 00:00

default: (5/5): libxcb-devel-1.13.1-1.el8.x86_64.rpm 1.9 MB/s | 1.1 MB 00:00

default: --------------------------------------------------------------------------------

default: Total 2.4 MB/s | 2.3 MB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1


default: Installing : xorg-x11-proto-devel-2020.1-3.el8.noarch 1/5

default: Installing : libXau-devel-1.0.9-3.el8.x86_64 2/5

default: Installing : libxcb-devel-1.13.1-1.el8.x86_64 3/5

default: Installing : libX11-devel-1.6.8-5.el8.x86_64 4/5

default: Installing : libXrender-devel-0.9.10-7.el8.x86_64 5/5

default: Running scriptlet: libXrender-devel-0.9.10-7.el8.x86_64 5/5

default: Verifying : libX11-devel-1.6.8-5.el8.x86_64 1/5

default: Verifying : libXau-devel-1.0.9-3.el8.x86_64 2/5

default: Verifying : libXrender-devel-0.9.10-7.el8.x86_64 3/5

default: Verifying : libxcb-devel-1.13.1-1.el8.x86_64 4/5

default: Verifying : xorg-x11-proto-devel-2020.1-3.el8.noarch 5/5

default:

default: Installed:

default: libX11-devel-1.6.8-5.el8.x86_64 libXau-devel-1.0.9-3.el8.x86_64

default: libXrender-devel-0.9.10-7.el8.x86_64 libxcb-devel-1.13.1-1.el8.x86_64

default: xorg-x11-proto-devel-2020.1-3.el8.noarch

default:

default: Complete!

default: Last metadata expiration check: 0:01:31 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libX11-1.6.8-5.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!
default: Last metadata expiration check: 0:01:36 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libXau-1.0.9-3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:41 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libXi-1.7.10-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:45 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libXtst-1.2.3-7.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:49 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libgcc-8.5.0-18.0.2.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:53 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.


default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: rdma-core-devel x86_64 44.0-2.el8.1 ol8_baseos_latest 385 k

default: Installing dependencies:

default: infiniband-diags x86_64 44.0-2.el8.1 ol8_baseos_latest 323 k

default: libibumad x86_64 44.0-2.el8.1 ol8_baseos_latest 33 k

default: librdmacm x86_64 44.0-2.el8.1 ol8_baseos_latest 78 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 4 Packages

default:

default: Total download size: 819 k

default: Installed size: 1.8 M

default: Downloading Packages:

default: (1/4): libibumad-44.0-2.el8.1.x86_64.rpm 75 kB/s | 33 kB 00:00

default: (2/4): librdmacm-44.0-2.el8.1.x86_64.rpm 157 kB/s | 78 kB 00:00

default: (3/4): infiniband-diags-44.0-2.el8.1.x86_64.rpm 466 kB/s | 323 kB 00:00


default: (4/4): rdma-core-devel-44.0-2.el8.1.x86_64.rpm 1.0 MB/s | 385 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 985 kB/s | 819 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : libibumad-44.0-2.el8.1.x86_64 1/4

default: Installing : infiniband-diags-44.0-2.el8.1.x86_64 2/4

default: Installing : librdmacm-44.0-2.el8.1.x86_64 3/4

default: Installing : rdma-core-devel-44.0-2.el8.1.x86_64 4/4

default: Running scriptlet: rdma-core-devel-44.0-2.el8.1.x86_64 4/4

default: Verifying : infiniband-diags-44.0-2.el8.1.x86_64 1/4

default: Verifying : libibumad-44.0-2.el8.1.x86_64 2/4

default: Verifying : librdmacm-44.0-2.el8.1.x86_64 3/4

default: Verifying : rdma-core-devel-44.0-2.el8.1.x86_64 4/4

default:

default: Installed:

default: infiniband-diags-44.0-2.el8.1.x86_64 libibumad-44.0-2.el8.1.x86_64

default: librdmacm-44.0-2.el8.1.x86_64 rdma-core-devel-44.0-2.el8.1.x86_64

default:
default: Complete!

default: Last metadata expiration check: 0:02:00 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libstdc++-8.5.0-18.0.2.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:04 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libstdc++-devel-8.5.0-18.0.2.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:08 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libxcb-1.13.1-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:12 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package make-1:4.2.1-11.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:15 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package net-tools-2.0-0.52.20160912git.el8.x86_64 is already installed.


default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:19 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package nfs-utils-1:2.3.3-59.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:23 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: No match for argument: python

default: There are following alternatives for "python": python2, python3.11, python36,
python38, python39

default: Error: Unable to find a match: python

default: Last metadata expiration check: 0:02:27 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: No match for argument: python-configshell

default: Error: Unable to find a match: python-configshell

default: Last metadata expiration check: 0:02:31 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: No match for argument: python-rtslib

default: Error: Unable to find a match: python-rtslib

default: Last metadata expiration check: 0:02:34 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: No match for argument: python-six

default: Error: Unable to find a match: python-six

default: Last metadata expiration check: 0:02:38 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.


default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: targetcli noarch 2.1.53-2.el8 ol8_appstream 80 k

default: Installing dependencies:

default: python3-rtslib noarch 2.1.75-4.0.1.el8 ol8_baseos_latest 104 k

default: target-restore noarch 2.1.75-4.0.1.el8 ol8_baseos_latest 25 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 3 Packages

default:

default: Total download size: 208 k

default: Installed size: 930 k

default: Downloading Packages:

default: (1/3): target-restore-2.1.75-4.0.1.el8.noarch.r 67 kB/s | 25 kB 00:00

default: (2/3): targetcli-2.1.53-2.el8.noarch.rpm 162 kB/s | 80 kB 00:00

default: (3/3): python3-rtslib-2.1.75-4.0.1.el8.noarch.r 195 kB/s | 104 kB 00:00

default: --------------------------------------------------------------------------------
default: Total 375 kB/s | 208 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : python3-rtslib-2.1.75-4.0.1.el8.noarch 1/3

default: Installing : target-restore-2.1.75-4.0.1.el8.noarch 2/3

default: Running scriptlet: target-restore-2.1.75-4.0.1.el8.noarch 2/3

default: Installing : targetcli-2.1.53-2.el8.noarch 3/3

default: Running scriptlet: targetcli-2.1.53-2.el8.noarch 3/3

default: Verifying : python3-rtslib-2.1.75-4.0.1.el8.noarch 1/3

default: Verifying : target-restore-2.1.75-4.0.1.el8.noarch 2/3

default: Verifying : targetcli-2.1.53-2.el8.noarch 3/3

default:

default: Installed:

default: python3-rtslib-2.1.75-4.0.1.el8.noarch target-restore-2.1.75-4.0.1.el8.noarch

default: targetcli-2.1.53-2.el8.noarch

default:

default: Complete!

default: Last metadata expiration check: 0:02:45 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package smartmontools-1:7.1-1.el8.x86_64 is already installed.


default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:49 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package sysstat-11.7.3-9.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:52 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: unixODBC x86_64 2.3.7-1.el8 ol8_appstream 458 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:
default: Total download size: 458 k

default: Installed size: 1.6 M

default: Downloading Packages:

default: unixODBC-2.3.7-1.el8.x86_64.rpm 697 kB/s | 458 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 693 kB/s | 458 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : unixODBC-2.3.7-1.el8.x86_64 1/1

default: Running scriptlet: unixODBC-2.3.7-1.el8.x86_64 1/1

default: Verifying : unixODBC-2.3.7-1.el8.x86_64 1/1

default:

default: Installed:

default: unixODBC-2.3.7-1.el8.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:02:59 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libnsl-2.28-225.0.3.el8.x86_64 is already installed.

default: Dependencies resolved.


default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:03:03 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: libnsl i686 2.28-225.0.3.el8 ol8_baseos_latest 111 k

default: Installing dependencies:

default: glibc i686 2.28-225.0.3.el8 ol8_baseos_latest 2.0 M

default: Installing weak dependencies:

default: glibc-gconv-extra i686 2.28-225.0.3.el8 ol8_baseos_latest 1.6 M

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 3 Packages

default:

default: Total download size: 3.7 M

default: Installed size: 11 M


default: Downloading Packages:

default: (1/3): libnsl-2.28-225.0.3.el8.i686.rpm 217 kB/s | 111 kB 00:00

default: (2/3): glibc-gconv-extra-2.28-225.0.3.el8.i686. 1.7 MB/s | 1.6 MB 00:00

default: (3/3): glibc-2.28-225.0.3.el8.i686.rpm 2.0 MB/s | 2.0 MB 00:00

default: --------------------------------------------------------------------------------

default: Total 3.7 MB/s | 3.7 MB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : glibc-gconv-extra-2.28-225.0.3.el8.i686 1/3

default: Running scriptlet: glibc-gconv-extra-2.28-225.0.3.el8.i686 1/3

default: Running scriptlet: glibc-2.28-225.0.3.el8.i686 2/3

default: Installing : glibc-2.28-225.0.3.el8.i686 2/3

default: Running scriptlet: glibc-2.28-225.0.3.el8.i686 2/3

default: Installing : libnsl-2.28-225.0.3.el8.i686 3/3

default: Running scriptlet: libnsl-2.28-225.0.3.el8.i686 3/3

default: Verifying : glibc-2.28-225.0.3.el8.i686 1/3

default: Verifying : glibc-gconv-extra-2.28-225.0.3.el8.i686 2/3

default: Verifying : libnsl-2.28-225.0.3.el8.i686 3/3

default:
default: Installed:

default: glibc-2.28-225.0.3.el8.i686 glibc-gconv-extra-2.28-225.0.3.el8.i686

default: libnsl-2.28-225.0.3.el8.i686

default:

default: Complete!

default: Last metadata expiration check: 0:03:11 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Package libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:03:14 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: libnsl2 i686 1.2.0-2.20180605git4a062cf.el8 ol8_baseos_latest 61 k

default: Installing dependencies:

default: keyutils-libs i686 1.5.10-9.el8 ol8_baseos_latest 34 k

default: krb5-libs i686 1.18.2-25.0.1.el8_8 ol8_baseos_latest 901 k

default: libcom_err i686 1.46.2-2.el8 ol8_UEKR7 51 k


default: libselinux i686 2.9-8.el8 ol8_baseos_latest 172 k

default: libsepol i686 2.9-3.el8 ol8_baseos_latest 366 k

default: libtirpc i686 1.1.4-8.el8 ol8_baseos_latest 122 k

default: libverto i686 0.3.2-2.el8 ol8_baseos_latest 25 k

default: openssl-libs i686 1:1.1.1k-9.el8_7 ol8_baseos_latest 1.5 M

default: pcre2 i686 10.32-3.el8_6 ol8_baseos_latest 246 k

default: zlib i686 1.2.11-21.el8_7 ol8_baseos_latest 105 k

default: Installing weak dependencies:

default: openssl-pkcs11 i686 0.4.10-3.el8 ol8_baseos_latest 70 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 12 Packages

default:

default: Total download size: 3.6 M

default: Installed size: 8.3 M

default: Downloading Packages:

default: (1/12): keyutils-libs-1.5.10-9.el8.i686.rpm 90 kB/s | 34 kB 00:00

default: (2/12): libnsl2-1.2.0-2.20180605git4a062cf.el8. 148 kB/s | 61 kB 00:00

default: (3/12): libselinux-2.9-8.el8.i686.rpm 660 kB/s | 172 kB 00:00

default: (4/12): libsepol-2.9-3.el8.i686.rpm 1.1 MB/s | 366 kB 00:00

default: (5/12): krb5-libs-1.18.2-25.0.1.el8_8.i686.rpm 1.2 MB/s | 901 kB 00:00


default: (6/12): libtirpc-1.1.4-8.el8.i686.rpm 1.0 MB/s | 122 kB 00:00

default: (7/12): libverto-0.3.2-2.el8.i686.rpm 289 kB/s | 25 kB 00:00

default: (8/12): openssl-pkcs11-0.4.10-3.el8.i686.rpm 623 kB/s | 70 kB 00:00

default: (9/12): pcre2-10.32-3.el8_6.i686.rpm 1.6 MB/s | 246 kB 00:00

default: (10/12): openssl-libs-1.1.1k-9.el8_7.i686.rpm 6.0 MB/s | 1.5 MB 00:00

default: (11/12): zlib-1.2.11-21.el8_7.i686.rpm 880 kB/s | 105 kB 00:00

default: (12/12): libcom_err-1.46.2-2.el8.i686.rpm 567 kB/s | 51 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 3.3 MB/s | 3.6 MB 00:01

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : libcom_err-1.46.2-2.el8.i686 1/12

default: Installing : zlib-1.2.11-21.el8_7.i686 2/12

default: Installing : openssl-pkcs11-0.4.10-3.el8.i686 3/12

default: Installing : openssl-libs-1:1.1.1k-9.el8_7.i686 4/12

default: Running scriptlet: openssl-libs-1:1.1.1k-9.el8_7.i686 4/12

default: Installing : pcre2-10.32-3.el8_6.i686 5/12

default: Installing : libverto-0.3.2-2.el8.i686 6/12

default: Installing : libsepol-2.9-3.el8.i686 7/12


default: Running scriptlet: libsepol-2.9-3.el8.i686 7/12

default: Installing : libselinux-2.9-8.el8.i686 8/12

default: Running scriptlet: libselinux-2.9-8.el8.i686 8/12

default: Installing : keyutils-libs-1.5.10-9.el8.i686 9/12

default: Installing : krb5-libs-1.18.2-25.0.1.el8_8.i686 10/12

default: Installing : libtirpc-1.1.4-8.el8.i686 11/12

default: Running scriptlet: libtirpc-1.1.4-8.el8.i686 11/12

default: Installing : libnsl2-1.2.0-2.20180605git4a062cf.el8.i686 12/12

default: Running scriptlet: libnsl2-1.2.0-2.20180605git4a062cf.el8.i686 12/12

default: Verifying : keyutils-libs-1.5.10-9.el8.i686 1/12

default: Verifying : krb5-libs-1.18.2-25.0.1.el8_8.i686 2/12

default: Verifying : libnsl2-1.2.0-2.20180605git4a062cf.el8.i686 3/12

default: Verifying : libselinux-2.9-8.el8.i686 4/12

default: Verifying : libsepol-2.9-3.el8.i686 5/12

default: Verifying : libtirpc-1.1.4-8.el8.i686 6/12

default: Verifying : libverto-0.3.2-2.el8.i686 7/12

default: Verifying : openssl-libs-1:1.1.1k-9.el8_7.i686 8/12

default: Verifying : openssl-pkcs11-0.4.10-3.el8.i686 9/12

default: Verifying : pcre2-10.32-3.el8_6.i686 10/12

default: Verifying : zlib-1.2.11-21.el8_7.i686 11/12

default: Verifying : libcom_err-1.46.2-2.el8.i686 12/12

default:

default: Installed:
default: keyutils-libs-1.5.10-9.el8.i686

default: krb5-libs-1.18.2-25.0.1.el8_8.i686

default: libcom_err-1.46.2-2.el8.i686

default: libnsl2-1.2.0-2.20180605git4a062cf.el8.i686

default: libselinux-2.9-8.el8.i686

default: libsepol-2.9-3.el8.i686

default: libtirpc-1.1.4-8.el8.i686

default: libverto-0.3.2-2.el8.i686

default: openssl-libs-1:1.1.1k-9.el8_7.i686

default: openssl-pkcs11-0.4.10-3.el8.i686

default: pcre2-10.32-3.el8_6.i686

default: zlib-1.2.11-21.el8_7.i686

default:

default: Complete!

default:
******************************************************************************

default: Firewall. Sun Aug 27 20:13:15 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: SELinux. Sun Aug 27 20:13:15 UTC 2023

default:
******************************************************************************

default:
******************************************************************************
default: Set root and oracle password and change ownership of /u01. Sun Aug 27 20:13:15
UTC 2023

default:
******************************************************************************

default: Changing password for user root.

default: passwd: all authentication tokens updated successfully.

default: Changing password for user oracle.

default: passwd: all authentication tokens updated successfully.

default:
******************************************************************************

default: Amend hosts file with public, private and virtual IPs. Sun Aug 27 20:13:15 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Enable chronyd service. Sun Aug 27 20:13:15 UTC 2023

default:
******************************************************************************

default: 200 OK

default: 200 OK

default:
******************************************************************************

default: Configure shared disks. Sun Aug 27 20:13:16 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Partition disks. Sun Aug 27 20:13:16 UTC 2023


default:
******************************************************************************

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.

default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0xd487bb65.

default:

default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-4194303,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-4194303, default 4194303):

default: Created a new partition 1 of type 'Linux' and of size 2 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.

default:

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.
default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0x6dd7f120.

default:

default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-4194303,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-4194303, default 4194303):

default: Created a new partition 1 of type 'Linux' and of size 2 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.

default:

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.

default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0x49a8b810.

default:
default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-4194303,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-4194303, default 4194303):

default: Created a new partition 1 of type 'Linux' and of size 2 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.

default:

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.

default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0x50315cc9.

default:

default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-83886079,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-83886079, default 83886079):
default: Created a new partition 1 of type 'Linux' and of size 40 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.

default:

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.

default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0x3ea236d1.

default:

default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-41943039,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-41943039, default 41943039):

default: Created a new partition 1 of type 'Linux' and of size 20 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.


default:

default: /dev/sda

default: /dev/sda1

default: /dev/sda2

default: /dev/sda3

default: /dev/sdb

default: /dev/sdb1

default: /dev/sdc

default: /dev/sdc1

default: /dev/sdd

default: /dev/sdd1

default: /dev/sde

default: /dev/sde1

default: /dev/sdf

default: /dev/sdf1

default: /dev/sdg

default: /dev/sdg1

default:
******************************************************************************

default: Configure udev. Sun Aug 27 20:13:16 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Reload UDEV Rules. Sun Aug 27 20:13:16 UTC 2023


default:
******************************************************************************

default: brw-rw----. 1 root disk 8, 1 Aug 27 20:07 /dev/sda1

default: brw-rw----. 1 root disk 8, 17 Aug 27 20:08 /dev/sdb1

default: brw-rw----. 1 root disk 8, 33 Aug 27 20:13 /dev/sdc1

default: brw-rw----. 1 root disk 8, 49 Aug 27 20:13 /dev/sdd1

default: brw-rw----. 1 root disk 8, 65 Aug 27 20:13 /dev/sde1

default: brw-rw----. 1 root disk 8, 81 Aug 27 20:13 /dev/sdf1

default: brw-------. 1 root root 8, 97 Aug 27 20:13 /dev/sdg1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:13 /dev/oracleasm/asm-crs-disk1 -> ../sdc1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:13 /dev/oracleasm/asm-crs-disk2 -> ../sdd1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:13 /dev/oracleasm/asm-crs-disk3 -> ../sde1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:13 /dev/oracleasm/asm-data-disk1 -> ../sdf1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:13 /dev/oracleasm/asm-reco-disk1 -> ../sdg1

default:
******************************************************************************

default: Set Hostname. Sun Aug 27 20:14:06 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Create environment scripts. Sun Aug 27 20:14:07 UTC 2023

default:
******************************************************************************

default:
******************************************************************************
default: Create directories. Sun Aug 27 20:14:07 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Passwordless SSH Setup for oracle. Sun Aug 27 20:14:07 UTC 2023

default:
******************************************************************************

default: New password: Retype new password: New password: Retype new password: # ol8-
19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: Sun Aug 27 20:14:08 UTC 2023

default:
******************************************************************************

default: Passwordless SSH Setup for root. Sun Aug 27 20:14:08 UTC 2023
default:
******************************************************************************

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: Sun Aug 27 20:14:09 UTC 2023

default:
******************************************************************************

default: Setup End. Sun Aug 27 20:14:09 UTC 2023

default:
******************************************************************************

PS C:\git\oraclebase\vagrant\rac\ol8_19\node2> cd ../node1

PS C:\git\oraclebase\vagrant\rac\ol8_19\node1> vagrant up

Bringing machine 'default' up with 'virtualbox' provider...

==> default: Importing base box 'oraclebase/oracle-8'...

==> default: Matching MAC address for NAT networking...


==> default: Checking if box 'oraclebase/oracle-8' version '2023.07.20' is up to date...

==> default: Setting the name of the VM: ol8_19_rac1

==> default: Fixed port collision for 22 => 2222. Now on port 2201.

==> default: Clearing any previously set network interfaces...

==> default: Preparing network interfaces based on configuration...

default: Adapter 1: nat

default: Adapter 2: hostonly

default: Adapter 3: intnet

==> default: Forwarding ports...

default: 1521 (guest) => 1521 (host) (adapter 1)

default: 5500 (guest) => 5500 (host) (adapter 1)

default: 22 (guest) => 2201 (host) (adapter 1)

==> default: Running 'pre-boot' VM customizations...

==> default: Booting VM...

==> default: Waiting for machine to boot. This may take a few minutes...

default: SSH address: 127.0.0.1:2201

default: SSH username: vagrant

default: SSH auth method: private key

default:

default: Vagrant insecure key detected. Vagrant will automatically replace

default: this with a newly generated keypair for better security.

default:

default: Inserting generated public key within guest...


default: Removing insecure key from the guest if it's present...

default: Key inserted! Disconnecting and reconnecting using new SSH key...

==> default: Machine booted and ready!

==> default: Checking for guest additions in VM...

==> default: Configuring and enabling network interfaces...

==> default: Mounting shared folders...

default: /vagrant => C:/git/oraclebase/vagrant/rac/ol8_19/node1

default: /vagrant_config => C:/git/oraclebase/vagrant/rac/ol8_19/config

default: /vagrant_scripts => C:/git/oraclebase/vagrant/rac/ol8_19/shared_scripts

default: /vagrant_software => C:/git/oraclebase/vagrant/rac/ol8_19/software

==> default: Running provisioner: shell...

default: Running: inline script

default:
******************************************************************************

default: Setup Start. Sun Aug 27 20:16:22 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Prepare /u01 disk. Sun Aug 27 20:16:22 UTC 2023

default:
******************************************************************************

default:

default: Welcome to fdisk (util-linux 2.32.1).

default: Changes will remain in memory only, until you decide to write them.
default: Be careful before using the write command.

default:

default: Device does not contain a recognized partition table.

default: Created a new DOS disklabel with disk identifier 0x2f15b527.

default:

default: Command (m for help): Partition type

default: p primary (0 primary, 0 extended, 4 free)

default: e extended (container for logical partitions)

default: Select (default p): Partition number (1-4, default 1): First sector (2048-209715199,
default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-209715199, default
209715199):

default: Created a new partition 1 of type 'Linux' and of size 100 GiB.

default:

default: Command (m for help): The partition table has been altered.

default: Calling ioctl() to re-read partition table.

default: Syncing disks.

default:

default: meta-data=/dev/sdb1 isize=512 agcount=4, agsize=6553536 blks

default: = sectsz=512 attr=2, projid32bit=1

default: = crc=1 finobt=1, sparse=1, rmapbt=0

default: = reflink=1 bigtime=0 inobtcount=0

default: data = bsize=4096 blocks=26214144, imaxpct=25

default: = sunit=0 swidth=0 blks

default: naming =version 2 bsize=4096 ascii-ci=0, ftype=1


default: log =internal log bsize=4096 blocks=25600, version=2

default: = sectsz=512 sunit=0 blks, lazy-count=1

default: realtime =none extsz=4096 blocks=0, rtextents=0

default:
******************************************************************************

default: Prepare yum repos and install base packages. Sun Aug 27 20:16:23 UTC 2023

default:
******************************************************************************

default: Oracle Linux 8 BaseOS Latest (x86_64) 8.6 MB/s | 62 MB 00:07

default: Oracle Linux 8 Application Stream (x86_64) 7.5 MB/s | 48 MB 00:06

default: Latest Unbreakable Enterprise Kernel Release 7 6.4 MB/s | 19 MB 00:02

default: Last metadata expiration check: 0:00:05 ago on Sun 27 Aug 2023 08:17:08 PM UTC.

default: Package yum-utils-4.0.21-19.0.1.el8_8.noarch is already installed.

default: Package zip-3.0-23.el8.x86_64 is already installed.

default: Package unzip-6.0-46.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:10 ago on Sun 27 Aug 2023 08:17:08 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size


default:
=====================================================================
===========

default: Installing:

default: oracle-epel-release-el8 x86_64 1.0-5.el8 ol8_baseos_latest 15 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total download size: 15 k

default: Installed size: 18 k

default: Downloading Packages:

default: oracle-epel-release-el8-1.0-5.el8.x86_64.rpm 57 kB/s | 15 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 53 kB/s | 15 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : oracle-epel-release-el8-1.0-5.el8.x86_64 1/1


default: Verifying : oracle-epel-release-el8-1.0-5.el8.x86_64 1/1

default:

default: Installed:

default: oracle-epel-release-el8-1.0-5.el8.x86_64

default:

default: Complete!

default: Oracle Linux 8 EPEL Packages for Development (x 7.8 MB/s | 52 MB 00:06

default: Oracle Linux 8 EPEL Modular Packages for Develo 360 kB/s | 322 kB 00:00

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: sshpass x86_64 1.09-4.el8 ol8_appstream 30 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total download size: 30 k


default: Installed size: 43 k

default: Downloading Packages:

default: sshpass-1.09-4.el8.x86_64.rpm 82 kB/s | 30 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 81 kB/s | 30 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : sshpass-1.09-4.el8.x86_64 1/1

default: Running scriptlet: sshpass-1.09-4.el8.x86_64 1/1

default: Verifying : sshpass-1.09-4.el8.x86_64 1/1

default:

default: Installed:

default: sshpass-1.09-4.el8.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:00:09 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
=============================
default: Package Arch Version Repository Size

default:
=====================================================================
=============================

default: Installing:

default: oracle-database-preinstall-19c x86_64 1.0-2.el8 ol8_appstream 31


k

default: Installing dependencies:

default: bind-libs x86_64 32:9.11.36-8.el8_8.1 ol8_appstream 175 k

default: bind-libs-lite x86_64 32:9.11.36-8.el8_8.1 ol8_appstream 1.2


M

default: bind-license noarch 32:9.11.36-8.el8_8.1 ol8_appstream 104 k

default: bind-utils x86_64 32:9.11.36-8.el8_8.1 ol8_appstream 453 k

default: fstrm x86_64 0.6.1-3.el8 ol8_appstream 29 k

default: ksh x86_64 20120801-257.0.1.el8 ol8_appstream 929 k

default: libX11-xcb x86_64 1.6.8-5.el8 ol8_appstream 14 k

default: libXcomposite x86_64 0.4.4-14.el8 ol8_appstream 28 k

default: libXi x86_64 1.7.10-1.el8 ol8_appstream 49 k

default: libXinerama x86_64 1.1.4-1.el8 ol8_appstream 15 k

default: libXrandr x86_64 1.5.2-1.el8 ol8_appstream 34 k

default: libXrender x86_64 0.9.10-7.el8 ol8_appstream 33 k

default: libXtst x86_64 1.2.3-7.el8 ol8_appstream 22 k

default: libXv x86_64 1.0.11-7.el8 ol8_appstream 20 k

default: libXxf86dga x86_64 1.1.5-1.el8 ol8_appstream 26 k

default: libXxf86misc x86_64 1.0.4-1.el8 ol8_appstream 23 k


default: libXxf86vm x86_64 1.1.4-9.el8 ol8_appstream 19 k

default: libaio x86_64 0.3.112-1.el8 ol8_baseos_latest 33 k

default: libaio-devel x86_64 0.3.112-1.el8 ol8_baseos_latest 19 k

default: libdmx x86_64 1.1.4-3.el8 ol8_appstream 22 k

default: libnsl x86_64 2.28-225.0.3.el8 ol8_baseos_latest 108 k

default: libstdc++-devel x86_64 8.5.0-18.0.2.el8 ol8_appstream 2.1 M

default: lm_sensors-libs x86_64 3.4.0-23.20180522git70f7e08.el8


ol8_baseos_latest 59 k

default: protobuf-c x86_64 1.3.0-6.el8 ol8_appstream 37 k

default: python3-bind noarch 32:9.11.36-8.el8_8.1 ol8_appstream 151


k

default: smartmontools x86_64 1:7.1-1.el8 ol8_baseos_latest 544 k

default: sysstat x86_64 11.7.3-9.0.1.el8 ol8_appstream 427 k

default: xorg-x11-utils x86_64 7.5-28.el8 ol8_appstream 136 k

default: xorg-x11-xauth x86_64 1:1.0.9-12.el8 ol8_appstream 39 k

default:

default: Transaction Summary

default:
=====================================================================
=============================

default: Install 30 Packages

default:

default: Total download size: 6.7 M

default: Installed size: 24 M

default: Downloading Packages:


default: (1/30): libaio-devel-0.3.112-1.el8.x86_64.rpm 64 kB/s | 19 kB 00:00

default: (2/30): libaio-0.3.112-1.el8.x86_64.rpm 89 kB/s | 33 kB 00:00

default: (3/30): lm_sensors-libs-3.4.0-23.20180522git70f 324 kB/s | 59 kB 00:00

default: (4/30): libnsl-2.28-225.0.3.el8.x86_64.rpm 212 kB/s | 108 kB 00:00

default: (5/30): bind-libs-9.11.36-8.el8_8.1.x86_64.rpm 780 kB/s | 175 kB 00:00

default: (6/30): smartmontools-7.1-1.el8.x86_64.rpm 1.3 MB/s | 544 kB 00:00

default: (7/30): bind-license-9.11.36-8.el8_8.1.noarch.r 790 kB/s | 104 kB 00:00

default: (8/30): bind-utils-9.11.36-8.el8_8.1.x86_64.rpm 2.7 MB/s | 453 kB 00:00

default: (9/30): fstrm-0.6.1-3.el8.x86_64.rpm 252 kB/s | 29 kB 00:00

default: (10/30): bind-libs-lite-9.11.36-8.el8_8.1.x86_6 2.6 MB/s | 1.2 MB 00:00

default: (11/30): libX11-xcb-1.6.8-5.el8.x86_64.rpm 152 kB/s | 14 kB 00:00

default: (12/30): libXcomposite-0.4.4-14.el8.x86_64.rpm 313 kB/s | 28 kB 00:00

default: (13/30): ksh-20120801-257.0.1.el8.x86_64.rpm 4.8 MB/s | 929 kB 00:00

default: (14/30): libXi-1.7.10-1.el8.x86_64.rpm 508 kB/s | 49 kB 00:00

default: (15/30): libXinerama-1.1.4-1.el8.x86_64.rpm 183 kB/s | 15 kB 00:00

default: (16/30): libXrandr-1.5.2-1.el8.x86_64.rpm 386 kB/s | 34 kB 00:00

default: (17/30): libXtst-1.2.3-7.el8.x86_64.rpm 252 kB/s | 22 kB 00:00

default: (18/30): libXrender-0.9.10-7.el8.x86_64.rpm 341 kB/s | 33 kB 00:00

default: (19/30): libXv-1.0.11-7.el8.x86_64.rpm 227 kB/s | 20 kB 00:00

default: (20/30): libXxf86dga-1.1.5-1.el8.x86_64.rpm 294 kB/s | 26 kB 00:00

default: (21/30): libXxf86misc-1.0.4-1.el8.x86_64.rpm 250 kB/s | 23 kB 00:00

default: (22/30): libXxf86vm-1.1.4-9.el8.x86_64.rpm 218 kB/s | 19 kB 00:00

default: (23/30): libdmx-1.1.4-3.el8.x86_64.rpm 249 kB/s | 22 kB 00:00


default: (24/30): oracle-database-preinstall-19c-1.0-2.e 366 kB/s | 31 kB 00:00

default: (25/30): protobuf-c-1.3.0-6.el8.x86_64.rpm 415 kB/s | 37 kB 00:00

default: (26/30): python3-bind-9.11.36-8.el8_8.1.noarch. 1.5 MB/s | 151 kB 00:00

default: (27/30): sysstat-11.7.3-9.0.1.el8.x86_64.rpm 2.9 MB/s | 427 kB 00:00

default: (28/30): xorg-x11-utils-7.5-28.el8.x86_64.rpm 1.3 MB/s | 136 kB 00:00

default: (29/30): xorg-x11-xauth-1.0.9-12.el8.x86_64.rpm 430 kB/s | 39 kB 00:00

default: (30/30): libstdc++-devel-8.5.0-18.0.2.el8.x86_6 4.4 MB/s | 2.1 MB 00:00

default: --------------------------------------------------------------------------------

default: Total 3.7 MB/s | 6.7 MB 00:01

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : protobuf-c-1.3.0-6.el8.x86_64 1/30

default: Installing : fstrm-0.6.1-3.el8.x86_64 2/30

default: Installing : bind-license-32:9.11.36-8.el8_8.1.noarch 3/30

default: Installing : bind-libs-lite-32:9.11.36-8.el8_8.1.x86_64 4/30

default: Installing : libXrender-0.9.10-7.el8.x86_64 5/30

default: Installing : libXi-1.7.10-1.el8.x86_64 6/30

default: Installing : libaio-0.3.112-1.el8.x86_64 7/30

default: Installing : libaio-devel-0.3.112-1.el8.x86_64 8/30


default: Installing : libXtst-1.2.3-7.el8.x86_64 9/30

default: Installing : libXrandr-1.5.2-1.el8.x86_64 10/30

default: Installing : bind-libs-32:9.11.36-8.el8_8.1.x86_64 11/30

default: Installing : python3-bind-32:9.11.36-8.el8_8.1.noarch 12/30

default: Installing : bind-utils-32:9.11.36-8.el8_8.1.x86_64 13/30

default: Installing : xorg-x11-xauth-1:1.0.9-12.el8.x86_64 14/30

default: Installing : libstdc++-devel-8.5.0-18.0.2.el8.x86_64 15/30

default: Installing : libdmx-1.1.4-3.el8.x86_64 16/30

default: Installing : libXxf86vm-1.1.4-9.el8.x86_64 17/30

default: Installing : libXxf86misc-1.0.4-1.el8.x86_64 18/30

default: Installing : libXxf86dga-1.1.5-1.el8.x86_64 19/30

default: Installing : libXv-1.0.11-7.el8.x86_64 20/30

default: Installing : libXinerama-1.1.4-1.el8.x86_64 21/30

default: Installing : libXcomposite-0.4.4-14.el8.x86_64 22/30

default: Installing : libX11-xcb-1.6.8-5.el8.x86_64 23/30

default: Installing : xorg-x11-utils-7.5-28.el8.x86_64 24/30

default: Installing : ksh-20120801-257.0.1.el8.x86_64 25/30

default: Running scriptlet: ksh-20120801-257.0.1.el8.x86_64 25/30

default: Running scriptlet: smartmontools-1:7.1-1.el8.x86_64 26/30

default: Installing : smartmontools-1:7.1-1.el8.x86_64 26/30

default: Running scriptlet: smartmontools-1:7.1-1.el8.x86_64 26/30

default: Installing : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 27/30

default: Running scriptlet: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 27/30


default: Installing : sysstat-11.7.3-9.0.1.el8.x86_64 28/30

default: Running scriptlet: sysstat-11.7.3-9.0.1.el8.x86_64 28/30

default: Installing : libnsl-2.28-225.0.3.el8.x86_64 29/30

default: Running scriptlet: oracle-database-preinstall-19c-1.0-2.el8.x86_64 30/30

default: Installing : oracle-database-preinstall-19c-1.0-2.el8.x86_64 30/30

default: Running scriptlet: oracle-database-preinstall-19c-1.0-2.el8.x86_64 30/30

default: Verifying : libaio-0.3.112-1.el8.x86_64 1/30

default: Verifying : libaio-devel-0.3.112-1.el8.x86_64 2/30

default: Verifying : libnsl-2.28-225.0.3.el8.x86_64 3/30

default: Verifying : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 4/30

default: Verifying : smartmontools-1:7.1-1.el8.x86_64 5/30

default: Verifying : bind-libs-32:9.11.36-8.el8_8.1.x86_64 6/30

default: Verifying : bind-libs-lite-32:9.11.36-8.el8_8.1.x86_64 7/30

default: Verifying : bind-license-32:9.11.36-8.el8_8.1.noarch 8/30

default: Verifying : bind-utils-32:9.11.36-8.el8_8.1.x86_64 9/30

default: Verifying : fstrm-0.6.1-3.el8.x86_64 10/30

default: Verifying : ksh-20120801-257.0.1.el8.x86_64 11/30

default: Verifying : libX11-xcb-1.6.8-5.el8.x86_64 12/30

default: Verifying : libXcomposite-0.4.4-14.el8.x86_64 13/30

default: Verifying : libXi-1.7.10-1.el8.x86_64 14/30

default: Verifying : libXinerama-1.1.4-1.el8.x86_64 15/30

default: Verifying : libXrandr-1.5.2-1.el8.x86_64 16/30

default: Verifying : libXrender-0.9.10-7.el8.x86_64 17/30


default: Verifying : libXtst-1.2.3-7.el8.x86_64 18/30

default: Verifying : libXv-1.0.11-7.el8.x86_64 19/30

default: Verifying : libXxf86dga-1.1.5-1.el8.x86_64 20/30

default: Verifying : libXxf86misc-1.0.4-1.el8.x86_64 21/30

default: Verifying : libXxf86vm-1.1.4-9.el8.x86_64 22/30

default: Verifying : libdmx-1.1.4-3.el8.x86_64 23/30

default: Verifying : libstdc++-devel-8.5.0-18.0.2.el8.x86_64 24/30

default: Verifying : oracle-database-preinstall-19c-1.0-2.el8.x86_64 25/30

default: Verifying : protobuf-c-1.3.0-6.el8.x86_64 26/30

default: Verifying : python3-bind-32:9.11.36-8.el8_8.1.noarch 27/30

default: Verifying : sysstat-11.7.3-9.0.1.el8.x86_64 28/30

default: Verifying : xorg-x11-utils-7.5-28.el8.x86_64 29/30

default: Verifying : xorg-x11-xauth-1:1.0.9-12.el8.x86_64 30/30

default:

default: Installed:

default: bind-libs-32:9.11.36-8.el8_8.1.x86_64

default: bind-libs-lite-32:9.11.36-8.el8_8.1.x86_64

default: bind-license-32:9.11.36-8.el8_8.1.noarch

default: bind-utils-32:9.11.36-8.el8_8.1.x86_64

default: fstrm-0.6.1-3.el8.x86_64

default: ksh-20120801-257.0.1.el8.x86_64

default: libX11-xcb-1.6.8-5.el8.x86_64

default: libXcomposite-0.4.4-14.el8.x86_64
default: libXi-1.7.10-1.el8.x86_64

default: libXinerama-1.1.4-1.el8.x86_64

default: libXrandr-1.5.2-1.el8.x86_64

default: libXrender-0.9.10-7.el8.x86_64

default: libXtst-1.2.3-7.el8.x86_64

default: libXv-1.0.11-7.el8.x86_64

default: libXxf86dga-1.1.5-1.el8.x86_64

default: libXxf86misc-1.0.4-1.el8.x86_64

default: libXxf86vm-1.1.4-9.el8.x86_64

default: libaio-0.3.112-1.el8.x86_64

default: libaio-devel-0.3.112-1.el8.x86_64

default: libdmx-1.1.4-3.el8.x86_64

default: libnsl-2.28-225.0.3.el8.x86_64

default: libstdc++-devel-8.5.0-18.0.2.el8.x86_64

default: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x86_64

default: oracle-database-preinstall-19c-1.0-2.el8.x86_64

default: protobuf-c-1.3.0-6.el8.x86_64

default: python3-bind-32:9.11.36-8.el8_8.1.noarch

default: smartmontools-1:7.1-1.el8.x86_64

default: sysstat-11.7.3-9.0.1.el8.x86_64

default: xorg-x11-utils-7.5-28.el8.x86_64

default: xorg-x11-xauth-1:1.0.9-12.el8.x86_64

default:
default: Complete!

default:
******************************************************************************

default: Add extra OS packages. Most should be present. Sun Aug 27 20:18:14 UTC 2023

default:
******************************************************************************

default: Last metadata expiration check: 0:00:30 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package bc-1.07.1-5.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:34 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package binutils-2.30-119.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:38 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: No match for argument: compat-libstdc++-33

default: Error: Unable to find a match: compat-libstdc++-33

default: Last metadata expiration check: 0:00:42 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package elfutils-libelf-0.188-3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!
default: Last metadata expiration check: 0:00:46 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package elfutils-libelf-devel-0.188-3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:00:50 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: fontconfig-devel x86_64 2.13.1-4.el8 ol8_baseos_latest 151 k

default: Installing dependencies:

default: bzip2-devel x86_64 1.0.6-26.el8 ol8_baseos_latest 224 k

default: dejavu-fonts-common noarch 2.35-7.el8 ol8_baseos_latest 74 k

default: dejavu-sans-fonts noarch 2.35-7.el8 ol8_baseos_latest 1.5 M

default: expat-devel x86_64 2.2.5-11.0.1.el8 ol8_baseos_latest 57 k

default: fontconfig x86_64 2.13.1-4.el8 ol8_baseos_latest 274 k

default: fontpackages-filesystem noarch 1.44-22.el8 ol8_baseos_latest 16 k

default: freetype-devel x86_64 2.9.1-9.el8 ol8_baseos_latest 464 k

default: libpng-devel x86_64 2:1.6.34-5.el8 ol8_baseos_latest 327 k


default: libuuid-devel x86_64 2.32.1-42.el8_8 ol8_baseos_latest 99 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 10 Packages

default:

default: Total download size: 3.1 M

default: Installed size: 11 M

default: Downloading Packages:

default: (1/10): dejavu-fonts-common-2.35-7.el8.noarch.r 153 kB/s | 74 kB 00:00

default: (2/10): bzip2-devel-1.0.6-26.el8.x86_64.rpm 381 kB/s | 224 kB 00:00

default: (3/10): expat-devel-2.2.5-11.0.1.el8.x86_64.rpm 483 kB/s | 57 kB 00:00

default: (4/10): fontconfig-2.13.1-4.el8.x86_64.rpm 1.4 MB/s | 274 kB 00:00

default: (5/10): fontconfig-devel-2.13.1-4.el8.x86_64.rp 683 kB/s | 151 kB 00:00

default: (6/10): fontpackages-filesystem-1.44-22.el8.noa 181 kB/s | 16 kB 00:00

default: (7/10): dejavu-sans-fonts-2.35-7.el8.noarch.rpm 1.7 MB/s | 1.5 MB 00:00

default: (8/10): libuuid-devel-2.32.1-42.el8_8.x86_64.rp 1.0 MB/s | 99 kB 00:00

default: (9/10): libpng-devel-1.6.34-5.el8.x86_64.rpm 2.5 MB/s | 327 kB 00:00

default: (10/10): freetype-devel-2.9.1-9.el8.x86_64.rpm 1.6 MB/s | 464 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 2.8 MB/s | 3.1 MB 00:01

default: Running transaction check


default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : fontpackages-filesystem-1.44-22.el8.noarch 1/10

default: Installing : dejavu-fonts-common-2.35-7.el8.noarch 2/10

default: Installing : dejavu-sans-fonts-2.35-7.el8.noarch 3/10

default: Installing : fontconfig-2.13.1-4.el8.x86_64 4/10

default: Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 4/10

default: Installing : libuuid-devel-2.32.1-42.el8_8.x86_64 5/10

default: Installing : libpng-devel-2:1.6.34-5.el8.x86_64 6/10

default: Installing : expat-devel-2.2.5-11.0.1.el8.x86_64 7/10

default: Installing : bzip2-devel-1.0.6-26.el8.x86_64 8/10

default: Installing : freetype-devel-2.9.1-9.el8.x86_64 9/10

default: Installing : fontconfig-devel-2.13.1-4.el8.x86_64 10/10

default: Running scriptlet: fontconfig-devel-2.13.1-4.el8.x86_64 10/10

default: Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 10/10

default: Verifying : bzip2-devel-1.0.6-26.el8.x86_64 1/10

default: Verifying : dejavu-fonts-common-2.35-7.el8.noarch 2/10

default: Verifying : dejavu-sans-fonts-2.35-7.el8.noarch 3/10

default: Verifying : expat-devel-2.2.5-11.0.1.el8.x86_64 4/10

default: Verifying : fontconfig-2.13.1-4.el8.x86_64 5/10


default: Verifying : fontconfig-devel-2.13.1-4.el8.x86_64 6/10

default: Verifying : fontpackages-filesystem-1.44-22.el8.noarch 7/10

default: Verifying : freetype-devel-2.9.1-9.el8.x86_64 8/10

default: Verifying : libpng-devel-2:1.6.34-5.el8.x86_64 9/10

default: Verifying : libuuid-devel-2.32.1-42.el8_8.x86_64 10/10

default:

default: Installed:

default: bzip2-devel-1.0.6-26.el8.x86_64

default: dejavu-fonts-common-2.35-7.el8.noarch

default: dejavu-sans-fonts-2.35-7.el8.noarch

default: expat-devel-2.2.5-11.0.1.el8.x86_64

default: fontconfig-2.13.1-4.el8.x86_64

default: fontconfig-devel-2.13.1-4.el8.x86_64

default: fontpackages-filesystem-1.44-22.el8.noarch

default: freetype-devel-2.9.1-9.el8.x86_64

default: libpng-devel-2:1.6.34-5.el8.x86_64

default: libuuid-devel-2.32.1-42.el8_8.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:00:59 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package glibc-2.28-225.0.3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.


default: Complete!

default: Last metadata expiration check: 0:01:03 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package glibc-devel-2.28-225.0.3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:07 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package ksh-20120801-257.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:11 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libaio-0.3.112-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:14 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libaio-devel-0.3.112-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:18 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libXrender-0.9.10-7.el8.x86_64 is already installed.


default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:22 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: libXrender-devel x86_64 0.9.10-7.el8 ol8_appstream 22 k

default: Installing dependencies:

default: libX11-devel x86_64 1.6.8-5.el8 ol8_appstream 976 k

default: libXau-devel x86_64 1.0.9-3.el8 ol8_appstream 21 k

default: libxcb-devel x86_64 1.13.1-1.el8 ol8_appstream 1.1 M

default: xorg-x11-proto-devel noarch 2020.1-3.el8 ol8_appstream 280 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 5 Packages

default:
default: Total download size: 2.3 M

default: Installed size: 5.4 M

default: Downloading Packages:

default: (1/5): libXrender-devel-0.9.10-7.el8.x86_64.rpm 55 kB/s | 22 kB 00:00

default: (2/5): libXau-devel-1.0.9-3.el8.x86_64.rpm 49 kB/s | 21 kB 00:00

default: (3/5): libX11-devel-1.6.8-5.el8.x86_64.rpm 1.2 MB/s | 976 kB 00:00

default: (4/5): xorg-x11-proto-devel-2020.1-3.el8.noarch 804 kB/s | 280 kB 00:00

default: (5/5): libxcb-devel-1.13.1-1.el8.x86_64.rpm 1.9 MB/s | 1.1 MB 00:00

default: --------------------------------------------------------------------------------

default: Total 2.3 MB/s | 2.3 MB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : xorg-x11-proto-devel-2020.1-3.el8.noarch 1/5

default: Installing : libXau-devel-1.0.9-3.el8.x86_64 2/5

default: Installing : libxcb-devel-1.13.1-1.el8.x86_64 3/5

default: Installing : libX11-devel-1.6.8-5.el8.x86_64 4/5

default: Installing : libXrender-devel-0.9.10-7.el8.x86_64 5/5

default: Running scriptlet: libXrender-devel-0.9.10-7.el8.x86_64 5/5

default: Verifying : libX11-devel-1.6.8-5.el8.x86_64 1/5


default: Verifying : libXau-devel-1.0.9-3.el8.x86_64 2/5

default: Verifying : libXrender-devel-0.9.10-7.el8.x86_64 3/5

default: Verifying : libxcb-devel-1.13.1-1.el8.x86_64 4/5

default: Verifying : xorg-x11-proto-devel-2020.1-3.el8.noarch 5/5

default:

default: Installed:

default: libX11-devel-1.6.8-5.el8.x86_64 libXau-devel-1.0.9-3.el8.x86_64

default: libXrender-devel-0.9.10-7.el8.x86_64 libxcb-devel-1.13.1-1.el8.x86_64

default: xorg-x11-proto-devel-2020.1-3.el8.noarch

default:

default: Complete!

default: Last metadata expiration check: 0:01:31 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libX11-1.6.8-5.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:37 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libXau-1.0.9-3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:42 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libXi-1.7.10-1.el8.x86_64 is already installed.


default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:45 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libXtst-1.2.3-7.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:50 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libgcc-8.5.0-18.0.2.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:01:53 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: rdma-core-devel x86_64 44.0-2.el8.1 ol8_baseos_latest 385 k

default: Installing dependencies:


default: infiniband-diags x86_64 44.0-2.el8.1 ol8_baseos_latest 323 k

default: libibumad x86_64 44.0-2.el8.1 ol8_baseos_latest 33 k

default: librdmacm x86_64 44.0-2.el8.1 ol8_baseos_latest 78 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 4 Packages

default:

default: Total download size: 819 k

default: Installed size: 1.8 M

default: Downloading Packages:

default: (1/4): libibumad-44.0-2.el8.1.x86_64.rpm 86 kB/s | 33 kB 00:00

default: (2/4): librdmacm-44.0-2.el8.1.x86_64.rpm 158 kB/s | 78 kB 00:00

default: (3/4): infiniband-diags-44.0-2.el8.1.x86_64.rpm 488 kB/s | 323 kB 00:00

default: (4/4): rdma-core-devel-44.0-2.el8.1.x86_64.rpm 1.1 MB/s | 385 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 1.1 MB/s | 819 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction


default: Preparing : 1/1

default: Installing : libibumad-44.0-2.el8.1.x86_64 1/4

default: Installing : infiniband-diags-44.0-2.el8.1.x86_64 2/4

default: Installing : librdmacm-44.0-2.el8.1.x86_64 3/4

default: Installing : rdma-core-devel-44.0-2.el8.1.x86_64 4/4

default: Running scriptlet: rdma-core-devel-44.0-2.el8.1.x86_64 4/4

default: Verifying : infiniband-diags-44.0-2.el8.1.x86_64 1/4

default: Verifying : libibumad-44.0-2.el8.1.x86_64 2/4

default: Verifying : librdmacm-44.0-2.el8.1.x86_64 3/4

default: Verifying : rdma-core-devel-44.0-2.el8.1.x86_64 4/4

default:

default: Installed:

default: infiniband-diags-44.0-2.el8.1.x86_64 libibumad-44.0-2.el8.1.x86_64

default: librdmacm-44.0-2.el8.1.x86_64 rdma-core-devel-44.0-2.el8.1.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:02:01 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libstdc++-8.5.0-18.0.2.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:05 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libstdc++-devel-8.5.0-18.0.2.el8.x86_64 is already installed.


default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:09 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libxcb-1.13.1-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:13 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package make-1:4.2.1-11.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:18 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package net-tools-2.0-0.52.20160912git.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:22 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package nfs-utils-1:2.3.3-59.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!
default: Last metadata expiration check: 0:02:26 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: No match for argument: python

default: There are following alternatives for "python": python2, python3.11, python36,
python38, python39

default: Error: Unable to find a match: python

default: Last metadata expiration check: 0:02:29 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: No match for argument: python-configshell

default: Error: Unable to find a match: python-configshell

default: Last metadata expiration check: 0:02:33 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: No match for argument: python-rtslib

default: Error: Unable to find a match: python-rtslib

default: Last metadata expiration check: 0:02:37 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: No match for argument: python-six

default: Error: Unable to find a match: python-six

default: Last metadata expiration check: 0:02:41 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: targetcli noarch 2.1.53-2.el8 ol8_appstream 80 k

default: Installing dependencies:


default: python3-rtslib noarch 2.1.75-4.0.1.el8 ol8_baseos_latest 104 k

default: target-restore noarch 2.1.75-4.0.1.el8 ol8_baseos_latest 25 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 3 Packages

default:

default: Total download size: 208 k

default: Installed size: 930 k

default: Downloading Packages:

default: (1/3): target-restore-2.1.75-4.0.1.el8.noarch.r 66 kB/s | 25 kB 00:00

default: (2/3): targetcli-2.1.53-2.el8.noarch.rpm 163 kB/s | 80 kB 00:00

default: (3/3): python3-rtslib-2.1.75-4.0.1.el8.noarch.r 200 kB/s | 104 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 376 kB/s | 208 kB 00:00

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : python3-rtslib-2.1.75-4.0.1.el8.noarch 1/3


default: Installing : target-restore-2.1.75-4.0.1.el8.noarch 2/3

default: Running scriptlet: target-restore-2.1.75-4.0.1.el8.noarch 2/3

default: Installing : targetcli-2.1.53-2.el8.noarch 3/3

default: Running scriptlet: targetcli-2.1.53-2.el8.noarch 3/3

default: Verifying : python3-rtslib-2.1.75-4.0.1.el8.noarch 1/3

default: Verifying : target-restore-2.1.75-4.0.1.el8.noarch 2/3

default: Verifying : targetcli-2.1.53-2.el8.noarch 3/3

default:

default: Installed:

default: python3-rtslib-2.1.75-4.0.1.el8.noarch target-restore-2.1.75-4.0.1.el8.noarch

default: targetcli-2.1.53-2.el8.noarch

default:

default: Complete!

default: Last metadata expiration check: 0:02:47 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package smartmontools-1:7.1-1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:02:51 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package sysstat-11.7.3-9.0.1.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!
default: Last metadata expiration check: 0:02:54 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: unixODBC x86_64 2.3.7-1.el8 ol8_appstream 458 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total download size: 458 k

default: Installed size: 1.6 M

default: Downloading Packages:

default: unixODBC-2.3.7-1.el8.x86_64.rpm 696 kB/s | 458 kB 00:00

default: --------------------------------------------------------------------------------

default: Total 693 kB/s | 458 kB 00:00

default: Running transaction check

default: Transaction check succeeded.


default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : unixODBC-2.3.7-1.el8.x86_64 1/1

default: Running scriptlet: unixODBC-2.3.7-1.el8.x86_64 1/1

default: Verifying : unixODBC-2.3.7-1.el8.x86_64 1/1

default:

default: Installed:

default: unixODBC-2.3.7-1.el8.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:03:01 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libnsl-2.28-225.0.3.el8.x86_64 is already installed.

default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:03:05 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size


default:
=====================================================================
===========

default: Installing:

default: libnsl i686 2.28-225.0.3.el8 ol8_baseos_latest 111 k

default: Installing dependencies:

default: glibc i686 2.28-225.0.3.el8 ol8_baseos_latest 2.0 M

default: Installing weak dependencies:

default: glibc-gconv-extra i686 2.28-225.0.3.el8 ol8_baseos_latest 1.6 M

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 3 Packages

default:

default: Total download size: 3.7 M

default: Installed size: 11 M

default: Downloading Packages:

default: (1/3): libnsl-2.28-225.0.3.el8.i686.rpm 221 kB/s | 111 kB 00:00

default: (2/3): glibc-2.28-225.0.3.el8.i686.rpm 2.1 MB/s | 2.0 MB 00:00

default: (3/3): glibc-gconv-extra-2.28-225.0.3.el8.i686. 1.6 MB/s | 1.6 MB 00:00

default: --------------------------------------------------------------------------------

default: Total 3.8 MB/s | 3.7 MB 00:00

default: Running transaction check


default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : glibc-gconv-extra-2.28-225.0.3.el8.i686 1/3

default: Running scriptlet: glibc-gconv-extra-2.28-225.0.3.el8.i686 1/3

default: Running scriptlet: glibc-2.28-225.0.3.el8.i686 2/3

default: Installing : glibc-2.28-225.0.3.el8.i686 2/3

default: Running scriptlet: glibc-2.28-225.0.3.el8.i686 2/3

default: Installing : libnsl-2.28-225.0.3.el8.i686 3/3

default: Running scriptlet: libnsl-2.28-225.0.3.el8.i686 3/3

default: Verifying : glibc-2.28-225.0.3.el8.i686 1/3

default: Verifying : glibc-gconv-extra-2.28-225.0.3.el8.i686 2/3

default: Verifying : libnsl-2.28-225.0.3.el8.i686 3/3

default:

default: Installed:

default: glibc-2.28-225.0.3.el8.i686 glibc-gconv-extra-2.28-225.0.3.el8.i686

default: libnsl-2.28-225.0.3.el8.i686

default:

default: Complete!

default: Last metadata expiration check: 0:03:13 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Package libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64 is already installed.


default: Dependencies resolved.

default: Nothing to do.

default: Complete!

default: Last metadata expiration check: 0:03:17 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Arch Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: libnsl2 i686 1.2.0-2.20180605git4a062cf.el8 ol8_baseos_latest 61 k

default: Installing dependencies:

default: keyutils-libs i686 1.5.10-9.el8 ol8_baseos_latest 34 k

default: krb5-libs i686 1.18.2-25.0.1.el8_8 ol8_baseos_latest 901 k

default: libcom_err i686 1.46.2-2.el8 ol8_UEKR7 51 k

default: libselinux i686 2.9-8.el8 ol8_baseos_latest 172 k

default: libsepol i686 2.9-3.el8 ol8_baseos_latest 366 k

default: libtirpc i686 1.1.4-8.el8 ol8_baseos_latest 122 k

default: libverto i686 0.3.2-2.el8 ol8_baseos_latest 25 k

default: openssl-libs i686 1:1.1.1k-9.el8_7 ol8_baseos_latest 1.5 M

default: pcre2 i686 10.32-3.el8_6 ol8_baseos_latest 246 k

default: zlib i686 1.2.11-21.el8_7 ol8_baseos_latest 105 k


default: Installing weak dependencies:

default: openssl-pkcs11 i686 0.4.10-3.el8 ol8_baseos_latest 70 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 12 Packages

default:

default: Total download size: 3.6 M

default: Installed size: 8.3 M

default: Downloading Packages:

default: (1/12): keyutils-libs-1.5.10-9.el8.i686.rpm 82 kB/s | 34 kB 00:00

default: (2/12): libnsl2-1.2.0-2.20180605git4a062cf.el8. 134 kB/s | 61 kB 00:00

default: (3/12): libselinux-2.9-8.el8.i686.rpm 634 kB/s | 172 kB 00:00

default: (4/12): krb5-libs-1.18.2-25.0.1.el8_8.i686.rpm 1.1 MB/s | 901 kB 00:00

default: (5/12): libsepol-2.9-3.el8.i686.rpm 1.1 MB/s | 366 kB 00:00

default: (6/12): libtirpc-1.1.4-8.el8.i686.rpm 1.0 MB/s | 122 kB 00:00

default: (7/12): libverto-0.3.2-2.el8.i686.rpm 286 kB/s | 25 kB 00:00

default: (8/12): openssl-pkcs11-0.4.10-3.el8.i686.rpm 644 kB/s | 70 kB 00:00

default: (9/12): pcre2-10.32-3.el8_6.i686.rpm 2.2 MB/s | 246 kB 00:00

default: (10/12): zlib-1.2.11-21.el8_7.i686.rpm 895 kB/s | 105 kB 00:00

default: (11/12): libcom_err-1.46.2-2.el8.i686.rpm 532 kB/s | 51 kB 00:00

default: (12/12): openssl-libs-1.1.1k-9.el8_7.i686.rpm 4.7 MB/s | 1.5 MB 00:00


default: --------------------------------------------------------------------------------

default: Total 3.2 MB/s | 3.6 MB 00:01

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Installing : libcom_err-1.46.2-2.el8.i686 1/12

default: Installing : zlib-1.2.11-21.el8_7.i686 2/12

default: Installing : openssl-pkcs11-0.4.10-3.el8.i686 3/12

default: Installing : openssl-libs-1:1.1.1k-9.el8_7.i686 4/12

default: Running scriptlet: openssl-libs-1:1.1.1k-9.el8_7.i686 4/12

default: Installing : pcre2-10.32-3.el8_6.i686 5/12

default: Installing : libverto-0.3.2-2.el8.i686 6/12

default: Installing : libsepol-2.9-3.el8.i686 7/12

default: Running scriptlet: libsepol-2.9-3.el8.i686 7/12

default: Installing : libselinux-2.9-8.el8.i686 8/12

default: Running scriptlet: libselinux-2.9-8.el8.i686 8/12

default: Installing : keyutils-libs-1.5.10-9.el8.i686 9/12

default: Installing : krb5-libs-1.18.2-25.0.1.el8_8.i686 10/12

default: Installing : libtirpc-1.1.4-8.el8.i686 11/12

default: Running scriptlet: libtirpc-1.1.4-8.el8.i686 11/12


default: Installing : libnsl2-1.2.0-2.20180605git4a062cf.el8.i686 12/12

default: Running scriptlet: libnsl2-1.2.0-2.20180605git4a062cf.el8.i686 12/12

default: Verifying : keyutils-libs-1.5.10-9.el8.i686 1/12

default: Verifying : krb5-libs-1.18.2-25.0.1.el8_8.i686 2/12

default: Verifying : libnsl2-1.2.0-2.20180605git4a062cf.el8.i686 3/12

default: Verifying : libselinux-2.9-8.el8.i686 4/12

default: Verifying : libsepol-2.9-3.el8.i686 5/12

default: Verifying : libtirpc-1.1.4-8.el8.i686 6/12

default: Verifying : libverto-0.3.2-2.el8.i686 7/12

default: Verifying : openssl-libs-1:1.1.1k-9.el8_7.i686 8/12

default: Verifying : openssl-pkcs11-0.4.10-3.el8.i686 9/12

default: Verifying : pcre2-10.32-3.el8_6.i686 10/12

default: Verifying : zlib-1.2.11-21.el8_7.i686 11/12

default: Verifying : libcom_err-1.46.2-2.el8.i686 12/12

default:

default: Installed:

default: keyutils-libs-1.5.10-9.el8.i686

default: krb5-libs-1.18.2-25.0.1.el8_8.i686

default: libcom_err-1.46.2-2.el8.i686

default: libnsl2-1.2.0-2.20180605git4a062cf.el8.i686

default: libselinux-2.9-8.el8.i686

default: libsepol-2.9-3.el8.i686

default: libtirpc-1.1.4-8.el8.i686
default: libverto-0.3.2-2.el8.i686

default: openssl-libs-1:1.1.1k-9.el8_7.i686

default: openssl-pkcs11-0.4.10-3.el8.i686

default: pcre2-10.32-3.el8_6.i686

default: zlib-1.2.11-21.el8_7.i686

default:

default: Complete!

default:
******************************************************************************

default: Firewall. Sun Aug 27 20:21:08 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: SELinux. Sun Aug 27 20:21:08 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Set root and oracle password and change ownership of /u01. Sun Aug 27 20:21:08
UTC 2023

default:
******************************************************************************

default: Changing password for user root.

default: passwd: all authentication tokens updated successfully.

default: Changing password for user oracle.

default: passwd: all authentication tokens updated successfully.


default:
******************************************************************************

default: Amend hosts file with public, private and virtual IPs. Sun Aug 27 20:21:08 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Enable chronyd service. Sun Aug 27 20:21:08 UTC 2023

default:
******************************************************************************

default: 200 OK

default: 200 OK

default:
******************************************************************************

default: Configure shared disks. Sun Aug 27 20:21:09 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Partition disks. Sun Aug 27 20:21:09 UTC 2023

default:
******************************************************************************

default: /dev/sda

default: /dev/sda1

default: /dev/sda2

default: /dev/sda3

default: /dev/sdb
default: /dev/sdb1

default: /dev/sdc

default: /dev/sdc1

default: /dev/sdd

default: /dev/sdd1

default: /dev/sde

default: /dev/sde1

default: /dev/sdf

default: /dev/sdf1

default: /dev/sdg

default: /dev/sdg1

default:
******************************************************************************

default: Configure udev. Sun Aug 27 20:21:09 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Reload UDEV Rules. Sun Aug 27 20:21:09 UTC 2023

default:
******************************************************************************

default: brw-rw----. 1 root disk 8, 1 Aug 27 20:15 /dev/sda1

default: brw-rw----. 1 root disk 8, 17 Aug 27 20:16 /dev/sdb1

default: brw-rw----. 1 root disk 8, 33 Aug 27 20:15 /dev/sdc1

default: brw-rw----. 1 root disk 8, 49 Aug 27 20:15 /dev/sdd1


default: brw-rw----. 1 root disk 8, 65 Aug 27 20:15 /dev/sde1

default: brw-rw----. 1 root disk 8, 81 Aug 27 20:15 /dev/sdf1

default: brw-rw----. 1 root disk 8, 97 Aug 27 20:15 /dev/sdg1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:21 /dev/oracleasm/asm-crs-disk1 -> ../sdc1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:21 /dev/oracleasm/asm-crs-disk2 -> ../sdd1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:21 /dev/oracleasm/asm-crs-disk3 -> ../sde1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:21 /dev/oracleasm/asm-data-disk1 -> ../sdf1

default: lrwxrwxrwx. 1 root root 7 Aug 27 20:21 /dev/oracleasm/asm-reco-disk1 -> ../sdg1

default:
******************************************************************************

default: Set Hostname. Sun Aug 27 20:21:59 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Create environment scripts. Sun Aug 27 20:21:59 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Create directories. Sun Aug 27 20:21:59 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Passwordless SSH Setup for oracle. Sun Aug 27 20:21:59 UTC 2023
default:
******************************************************************************

default: New password: Retype new password: New password: Retype new password: # ol8-
19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: Sun Aug 27 20:22:01 UTC 2023

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0


default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed:


"/home/oracle/.ssh/id_rsa.pub"

default: /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any
that are already installed

default: /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now
it is to install the new keys

default:

default: Number of key(s) added: 1

default:

default: Now try logging into the machine, with: "ssh 'ol8-19-rac2'"

default: and check to make sure that only the key(s) you wanted were added.

default:

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0


default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed:


"/home/oracle/.ssh/id_rsa.pub"

default: /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any
that are already installed

default: /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now
it is to install the new keys

default:

default: Number of key(s) added: 1

default:

default: Now try logging into the machine, with: "ssh 'ol8-19-rac1'"

default: and check to make sure that only the key(s) you wanted were added.

default:

default:
******************************************************************************

default: Unzip grid software. Sun Aug 27 20:22:04 UTC 2023

default:
******************************************************************************
default:
******************************************************************************

default: Passwordless SSH Setup for root. Sun Aug 27 20:35:05 UTC 2023

default:
******************************************************************************

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: Sun Aug 27 20:35:06 UTC 2023

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0


default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: /bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"

default: /bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that
are already installed

default: /bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it
is to install the new keys

default:

default: Number of key(s) added: 1

default:

default: Now try logging into the machine, with: "ssh 'ol8-19-rac2'"

default: and check to make sure that only the key(s) you wanted were added.

default:

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac1.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.101:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0


default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # ol8-19-rac2.localdomain:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # 192.168.56.102:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: # localhost:22 SSH-2.0-OpenSSH_8.0

default: /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"

default: /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any
that are already installed

default: /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now
it is to install the new keys

default:

default: Number of key(s) added: 1

default:

default: Now try logging into the machine, with: "ssh 'ol8-19-rac1'"

default: and check to make sure that only the key(s) you wanted were added.

default:

default:
******************************************************************************

default: Install cvuqdisk package. Sun Aug 27 20:35:09 UTC 2023


default:
******************************************************************************

default: Last metadata expiration check: 0:17:27 ago on Sun 27 Aug 2023 08:17:44 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: cvuqdisk x86_64 1.0.10-1 @commandline 11 k

default:

default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total size: 11 k

default: Installed size: 22 k

default: Downloading Packages:

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.


default: Running transaction

default: Preparing : 1/1

default: Running scriptlet: cvuqdisk-1.0.10-1.x86_64 1/1

default: Using default group oinstall to install package

default:

default: Installing : cvuqdisk-1.0.10-1.x86_64 1/1

default: Running scriptlet: cvuqdisk-1.0.10-1.x86_64 1/1

default: Verifying : cvuqdisk-1.0.10-1.x86_64 1/1

default:

default: Installed:

default: cvuqdisk-1.0.10-1.x86_64

default:

default: Complete!

default: Last metadata expiration check: 0:25:23 ago on Sun 27 Aug 2023 08:09:54 PM UTC.

default: Dependencies resolved.

default:
=====================================================================
===========

default: Package Architecture Version Repository Size

default:
=====================================================================
===========

default: Installing:

default: cvuqdisk x86_64 1.0.10-1 @commandline 11 k

default:
default: Transaction Summary

default:
=====================================================================
===========

default: Install 1 Package

default:

default: Total size: 11 k

default: Installed size: 22 k

default: Downloading Packages:

default: Running transaction check

default: Transaction check succeeded.

default: Running transaction test

default: Transaction test succeeded.

default: Running transaction

default: Preparing : 1/1

default: Running scriptlet: cvuqdisk-1.0.10-1.x86_64 1/1

default: Using default group oinstall to install package

default:

default: Installing : cvuqdisk-1.0.10-1.x86_64 1/1

default: Running scriptlet: cvuqdisk-1.0.10-1.x86_64 1/1

default: Verifying : cvuqdisk-1.0.10-1.x86_64 1/1

default:

default: Installed:

default: cvuqdisk-1.0.10-1.x86_64
default:

default: Complete!

default:
******************************************************************************

default: Do grid software-only installation. Sun Aug 27 20:35:21 UTC 2023

default:
******************************************************************************

default: Preparing the home to patch...

default: Applying the patch /u01/software/35370167/35319490...

default: Successfully applied the patch.

default: The log can be found at: /tmp/GridSetupActions2023-08-27_08-35-


21PM/installerPatchActions_2023-08-27_08-35-21PM.log

default: Launching Oracle Grid Infrastructure Setup Wizard...

default:

default: [WARNING] [INS-41808] Possible invalid choice for OSASM Group.

default: CAUSE: The name of the group you selected for the OSASM group is commonly
used to grant other system privileges (For example: asmdba, asmoper, dba, oper).

default: ACTION: Oracle recommends that you designate asmadmin as the OSASM group.

default: [WARNING] [INS-41809] Possible invalid choice for OSDBA Group.

default: CAUSE: The group name you selected as the OSDBA for ASM group is commonly
used for Oracle Database administrator privileges.

default: ACTION: Oracle recommends that you designate asmdba as the OSDBA for ASM
group, and that the group should not be the same group as an Oracle Database OSDBA group.

default: [WARNING] [INS-41812] OSDBA and OSASM are the same OS group.

default: CAUSE: The chosen values for OSDBA group and the chosen value for OSASM
group are the same.
default: ACTION: Select an OS group that is unique for ASM administrators. The OSASM
group should not be the same as the OS groups that grant privileges for Oracle ASM access, or
for database administration.

default: [WARNING] [INS-40109] The specified Oracle Base location is not empty on this
server.

default: ACTION: Specify an empty location for Oracle Base.

default: [WARNING] [INS-13014] Target environment does not meet some optional
requirements.

default: CAUSE: Some of the optional prerequisites are not met. See logs for details.
gridSetupActions2023-08-27_08-35-21PM.log

default: ACTION: Identify the list of failed prerequisite checks from the log:
gridSetupActions2023-08-27_08-35-21PM.log. Then either from the log file or from installation
manual find the appropriate configuration to meet the prerequisites and fix it manually.

default: The response file for this session can be found at:

default: /u01/app/19.0.0/grid/install/response/grid_2023-08-27_08-35-21PM.rsp

default:

default: You can find the log of this install session at:

default: /tmp/GridSetupActions2023-08-27_08-35-21PM/gridSetupActions2023-08-27_08-
35-21PM.log

default:

default: As a root user, execute the following script(s):

default: 1. /u01/app/oraInventory/orainstRoot.sh

default: 2. /u01/app/19.0.0/grid/root.sh

default:

default: Execute /u01/app/oraInventory/orainstRoot.sh on the following nodes:

default: [ol8-19-rac1, ol8-19-rac2]

default: Execute /u01/app/19.0.0/grid/root.sh on the following nodes:


default: [ol8-19-rac1, ol8-19-rac2]

default:

default: Run the script on the local node first. After successful completion, you can start the
script in parallel on all other nodes.

default:

default: Successfully Setup Software with warning(s).

default: As install user, execute the following command to complete the configuration.

default: /u01/app/19.0.0/grid/gridSetup.sh -executeConfigTools -responseFile


/u01/app/19.0.0/grid/install/response/gridsetup.rsp [-silent]

default:

default:

default: Moved the install session logs to:

default: /u01/app/oraInventory/logs/GridSetupActions2023-08-27_08-35-21PM

default:
******************************************************************************

default: Run grid root scripts. Sun Aug 27 20:58:26 UTC 2023

default:
******************************************************************************

default: Changing permissions of /u01/app/oraInventory.

default: Adding read,write permissions for group.

default: Removing read,write,execute permissions for world.

default:

default: Changing groupname of /u01/app/oraInventory to oinstall.

default: The execution of the script is complete.

default: Changing permissions of /u01/app/oraInventory.


default: Adding read,write permissions for group.

default: Removing read,write,execute permissions for world.

default:

default: Changing groupname of /u01/app/oraInventory to oinstall.

default: The execution of the script is complete.

default: Check /u01/app/19.0.0/grid/install/root_ol8-19-rac1_2023-08-27_20-58-28-


220977041.log for the output of root script

default: Check /u01/app/19.0.0/grid/install/root_ol8-19-rac2_2023-08-27_21-10-41-


284204797.log for the output of root script

default:
******************************************************************************

default: Do grid configuration. Sun Aug 27 21:17:28 UTC 2023

default:
******************************************************************************

default: Launching Oracle Grid Infrastructure Setup Wizard...

default:

default: You can find the logs of this session at:

default: /u01/app/oraInventory/logs/GridSetupActions2023-08-27_09-17-29PM

default:

default: You can find the log of this install session at:

default: /u01/app/oraInventory/logs/UpdateNodeList2023-08-27_09-17-29PM.log

default: Successfully Configured Software.

default:
******************************************************************************

default: Create additional diskgroups. Sun Aug 27 21:21:43 UTC 2023


default:
******************************************************************************

default:

default: SQL*Plus: Release 19.0.0.0.0 - Production on Sun Aug 27 21:21:43 2023

default: Version 19.20.0.0.0

default:

default: Copyright (c) 1982, 2022, Oracle. All rights reserved.

default:

default:

default: Connected to:

default: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production

default: Version 19.20.0.0.0

default:

default: SQL> 2

default: Diskgroup created.

default:

default: SQL> 2

default: Diskgroup created.

default:

default: SQL> SQL> SQL> SQL>

default: NAME COMPATIBILITY

default: ------------------------------ ------------------------------------------------------------

default: CRS 19.0.0.0.0

default: DATA 19.0.0.0.0


default: RECO 19.0.0.0.0

default:

default: SQL> Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 -
Production

default: Version 19.20.0.0.0

default:
******************************************************************************

default: Check cluster configuration. Sun Aug 27 21:22:15 UTC 2023

default:
******************************************************************************

default: --------------------------------------------------------------------------------

default: Name Target State Server State details

default: --------------------------------------------------------------------------------

default: Local Resources

default: --------------------------------------------------------------------------------

default: ora.LISTENER.lsnr

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.chad

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.net1.network

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.ons
default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.proxy_advm

default: OFFLINE OFFLINE ol8-19-rac1 STABLE

default: OFFLINE OFFLINE ol8-19-rac2 STABLE

default: --------------------------------------------------------------------------------

default: Cluster Resources

default: --------------------------------------------------------------------------------

default: ora.ASMNET1LSNR_ASM.lsnr(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.CRS.dg(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.DATA.dg(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 OFFLINE OFFLINE STABLE

default: ora.LISTENER_SCAN1.lsnr

default: 1 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.LISTENER_SCAN2.lsnr

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.LISTENER_SCAN3.lsnr

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE


default: ora.asm(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 Started,STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 Started,STABLE

default: ora.asmnet1.asmnetwork(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.cvu

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.ol8-19-rac1.vip

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.ol8-19-rac2.vip

default: 1 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.qosmserver

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.scan1.vip

default: 1 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.scan2.vip

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.scan3.vip

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: --------------------------------------------------------------------------------

default:
******************************************************************************

default: Unzip database software. Sun Aug 27 21:22:18 UTC 2023


default:
******************************************************************************

default:
******************************************************************************

default: Do database software-only installation. Sun Aug 27 21:37:18 UTC 2023

default:
******************************************************************************

default: Preparing the home to patch...

default: Applying the patch /u01/software/35370167/35319490...

default: Successfully applied the patch.

default: The log can be found at: /u01/app/oraInventory/logs/InstallActions2023-08-27_09-37-


19PM/installerPatchActions_2023-08-27_09-37-19PM.log

default: Launching Oracle Database Setup Wizard...

default:

default: [WARNING] [INS-13014] Target environment does not meet some optional
requirements.

default: CAUSE: Some of the optional prerequisites are not met. See logs for details.
/u01/app/oraInventory/logs/InstallActions2023-08-27_09-37-19PM/installActions2023-08-
27_09-37-19PM.log

default: ACTION: Identify the list of failed prerequisite checks from the log:
/u01/app/oraInventory/logs/InstallActions2023-08-27_09-37-19PM/installActions2023-08-
27_09-37-19PM.log. Then either from the log file or from installation manual find the
appropriate configuration to meet the prerequisites and fix it manually.

default: The response file for this session can be found at:

default: /u01/app/oracle/product/19.0.0/dbhome_1/install/response/db_2023-08-27_09-37-
19PM.rsp

default:

default: You can find the log of this install session at:
default: /u01/app/oraInventory/logs/InstallActions2023-08-27_09-37-
19PM/installActions2023-08-27_09-37-19PM.log

default:

default: As a root user, execute the following script(s):

default: 1. /u01/app/oracle/product/19.0.0/dbhome_1/root.sh

default:

default: Execute /u01/app/oracle/product/19.0.0/dbhome_1/root.sh on the following nodes:

default: [ol8-19-rac1, ol8-19-rac2]

default:

default:

default: Successfully Setup Software with warning(s).

default:
******************************************************************************

default: Run DB root scripts. Sun Aug 27 22:21:19 UTC 2023

default:
******************************************************************************

default: Check /u01/app/oracle/product/19.0.0/dbhome_1/install/root_ol8-19-rac1_2023-08-


27_22-21-20-018787955.log for the output of root script

default: Check /u01/app/oracle/product/19.0.0/dbhome_1/install/root_ol8-19-rac2_2023-08-


27_22-21-20-979848813.log for the output of root script

default:
******************************************************************************

default: OJVM Patch for DB Software. Sun Aug 27 22:21:21 UTC 2023

default:
******************************************************************************

default:
******************************************************************************
default: Patch Oracle Grid Infrastructure Software. Sun Aug 27 22:21:25 UTC 2023

default: HOSTNAME=localhost.localdomain

default: ORACLE_HOME=/u01/app/oracle/product/19.0.0/dbhome_1

default:
******************************************************************************

default:
******************************************************************************

default: Unzip software. Sun Aug 27 22:21:25 UTC 2023

default:
******************************************************************************

default:

default: OPatchauto session is initiated at Sun Aug 27 22:21:26 2023

default:

default: System initialization log file is


/u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatchautodb/systemconfig2023-08-
27_10-21-33PM.log.

default:

default: Session log file is


/u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatchauto/opatchauto2023-08-27_10-22-
01PM.log

default: The id for this session is TADY

default:

default: Executing OPatch prereq operations to verify patch applicability on home


/u01/app/oracle/product/19.0.0/dbhome_1

default: Patch applicability verified successfully on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:
default: Executing patch validation checks on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Patch validation checks successfully completed on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Verifying SQL patch applicability on home /u01/app/oracle/product/19.0.0/dbhome_1

default: No sqlpatch prereq operations are required on the local node for this home

default: No step execution required.........

default:

default:

default: Preparing to bring down database service on home


/u01/app/oracle/product/19.0.0/dbhome_1

default: No step execution required.........

default:

default:

default: Bringing down database service on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Database service successfully brought down on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Performing prepatch operation on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Prepatch operation completed successfully on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:
default: Start applying binary patch on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Binary patch applied successfully on home /u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Performing postpatch operation on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Postpatch operation completed successfully on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Starting database service on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Database service successfully started on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Preparing home /u01/app/oracle/product/19.0.0/dbhome_1 after database service


restarted

default: No step execution required.........

default:

default:

default: Trying to apply SQL patch on home /u01/app/oracle/product/19.0.0/dbhome_1

default: No SQL patch operations are required on local node for this home

default:

default: OPatchAuto successful.

default:

default: --------------------------------Summary--------------------------------
default:

default: Patching is completed successfully. Please find the summary as follows:

default:

default: Host:ol8-19-rac1

default: RAC Home:/u01/app/oracle/product/19.0.0/dbhome_1

default: Version:19.0.0.0.0

default: Summary:

default:

default: ==Following patches were SUCCESSFULLY applied:

default:

default: Patch: /u01/software/35370167/35354406

default: Log:
/u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatchauto/core/opatch/opatch2023-08-
27_22-23-15PM_1.log

default:

default:

default:

default: OPatchauto session completed at Sun Aug 27 22:26:29 2023

default: Time taken to complete the session 5 minutes, 4 seconds

default:
******************************************************************************

default: Patch Oracle Grid Infrastructure Software. Sun Aug 27 22:26:30 UTC 2023

default: HOSTNAME=ol8-19-rac2

default: ORACLE_HOME=/u01/app/oracle/product/19.0.0/dbhome_1
default:
******************************************************************************

default:
******************************************************************************

default: Unzip software. Sun Aug 27 22:26:30 UTC 2023

default:
******************************************************************************

default:

default: OPatchauto session is initiated at Sun Aug 27 22:31:34 2023

default:

default: System initialization log file is


/u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatchautodb/systemconfig2023-08-
27_10-31-40PM.log.

default:

default: Session log file is


/u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatchauto/opatchauto2023-08-27_10-32-
06PM.log

default: The id for this session is APBD

default:

default: Executing OPatch prereq operations to verify patch applicability on home


/u01/app/oracle/product/19.0.0/dbhome_1

default: Patch applicability verified successfully on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Executing patch validation checks on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Patch validation checks successfully completed on home


/u01/app/oracle/product/19.0.0/dbhome_1
default:

default:

default: Verifying SQL patch applicability on home /u01/app/oracle/product/19.0.0/dbhome_1

default: No sqlpatch prereq operations are required on the local node for this home

default: No step execution required.........

default:

default:

default: Preparing to bring down database service on home


/u01/app/oracle/product/19.0.0/dbhome_1

default: No step execution required.........

default:

default:

default: Bringing down database service on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Database service successfully brought down on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Performing prepatch operation on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Prepatch operation completed successfully on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Start applying binary patch on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Binary patch applied successfully on home /u01/app/oracle/product/19.0.0/dbhome_1

default:
default:

default: Performing postpatch operation on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Postpatch operation completed successfully on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Starting database service on home /u01/app/oracle/product/19.0.0/dbhome_1

default: Database service successfully started on home


/u01/app/oracle/product/19.0.0/dbhome_1

default:

default:

default: Preparing home /u01/app/oracle/product/19.0.0/dbhome_1 after database service


restarted

default: No step execution required.........

default:

default:

default: Trying to apply SQL patch on home /u01/app/oracle/product/19.0.0/dbhome_1

default: No SQL patch operations are required on local node for this home

default:

default: OPatchAuto successful.

default:

default: --------------------------------Summary--------------------------------

default:

default: Patching is completed successfully. Please find the summary as follows:

default:
default: Host:ol8-19-rac2

default: RAC Home:/u01/app/oracle/product/19.0.0/dbhome_1

default: Version:19.0.0.0.0

default: Summary:

default:

default: ==Following patches were SUCCESSFULLY applied:

default:

default: Patch: /u01/software/35370167/35354406

default: Log:
/u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatchauto/core/opatch/opatch2023-08-
27_22-33-24PM_1.log

default:

default:

default:

default: OPatchauto session completed at Sun Aug 27 22:37:23 2023

default: Time taken to complete the session 5 minutes, 50 seconds

default:
******************************************************************************

default: Create database. Sun Aug 27 22:37:25 UTC 2023

default:
******************************************************************************

default: Prepare for db operation

default: 7% complete

default: Copying database files

default: 27% complete


default: Creating and starting Oracle instance

default: 28% complete

default: 31% complete

default: 35% complete

default: 37% complete

default: 40% complete

default: Creating cluster database views

default: 41% complete

default: 53% complete

default: Completing Database Creation

default: 57% complete

default: 59% complete

default: 60% complete

default: Creating Pluggable Databases

default: 64% complete

default: 80% complete

default: Executing Post Configuration Actions

default: 100% complete

default: Database creation complete. For details check the logfiles at:

default: /u01/app/oracle/cfgtoollogs/dbca/cdbrac.

default: Database Information:

default: Global Database Name:cdbrac

default: System Identifier(SID) Prefix:cdbrac


default: Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/cdbrac/cdbrac.log" for further
details.

default:
******************************************************************************

default: Save state of PDB to enable auto-start. Mon Aug 28 00:08:20 UTC 2023

default:
******************************************************************************

default:

default: SQL*Plus: Release 19.0.0.0.0 - Production on Mon Aug 28 00:08:20 2023

default: Version 19.20.0.0.0

default:

default: Copyright (c) 1982, 2022, Oracle. All rights reserved.

default:

default:

default: Connected to:

default: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production

default: Version 19.20.0.0.0

default:

default: SQL>

default: Pluggable database altered.

default:

default: SQL> Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 -
Production

default: Version 19.20.0.0.0

default:
******************************************************************************
default: Check cluster configuration. Mon Aug 28 00:08:20 UTC 2023

default:
******************************************************************************

default:
******************************************************************************

default: Output from crsctl stat res -t Mon Aug 28 00:08:20 UTC 2023

default:
******************************************************************************

default: --------------------------------------------------------------------------------

default: Name Target State Server State details

default: --------------------------------------------------------------------------------

default: Local Resources

default: --------------------------------------------------------------------------------

default: ora.LISTENER.lsnr

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.chad

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.net1.network

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.ons

default: ONLINE ONLINE ol8-19-rac1 STABLE

default: ONLINE ONLINE ol8-19-rac2 STABLE


default: ora.proxy_advm

default: OFFLINE OFFLINE ol8-19-rac1 STABLE

default: OFFLINE OFFLINE ol8-19-rac2 STABLE

default: --------------------------------------------------------------------------------

default: Cluster Resources

default: --------------------------------------------------------------------------------

default: ora.ASMNET1LSNR_ASM.lsnr(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.CRS.dg(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.DATA.dg(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.LISTENER_SCAN1.lsnr

default: 1 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.LISTENER_SCAN2.lsnr

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.LISTENER_SCAN3.lsnr

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.RECO.dg(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE


default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.asm(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 Started,STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 Started,STABLE

default: ora.asmnet1.asmnetwork(ora.asmgroup)

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.cdbrac.db

default: 1 ONLINE ONLINE ol8-19-rac1 Open,HOME=/u01/app/o

default: racle/product/19.0.0

default: /dbhome_1,STABLE

default: 2 ONLINE ONLINE ol8-19-rac2 Open,HOME=/u01/app/o

default: racle/product/19.0.0

default: /dbhome_1,STABLE

default: ora.cvu

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.ol8-19-rac1.vip

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.ol8-19-rac2.vip

default: 1 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.qosmserver

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.scan1.vip
default: 1 ONLINE ONLINE ol8-19-rac2 STABLE

default: ora.scan2.vip

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: ora.scan3.vip

default: 1 ONLINE ONLINE ol8-19-rac1 STABLE

default: --------------------------------------------------------------------------------

default:
******************************************************************************

default: Output from srvctl config database -d cdbrac Mon Aug 28 00:08:21 UTC 2023

default:
******************************************************************************

default: Database unique name: cdbrac

default: Database name: cdbrac

default: Oracle home: /u01/app/oracle/product/19.0.0/dbhome_1

default: Oracle user: oracle

default: Spfile: +DATA/CDBRAC/PARAMETERFILE/spfile.272.1146009607

default: Password file: +DATA/CDBRAC/PASSWORD/pwdcdbrac.256.1146004733

default: Domain:

default: Start options: open

default: Stop options: immediate

default: Database role: PRIMARY

default: Management policy: AUTOMATIC

default: Server pools:

default: Disk Groups: RECO,DATA


default: Mount point paths:

default: Services:

default: Type: RAC

default: Start concurrency:

default: Stop concurrency:

default: OSDBA group: dba

default: OSOPER group:

default: Database instances: cdbrac1,cdbrac2

default: Configured nodes: ol8-19-rac1,ol8-19-rac2

default: CSS critical: no

default: CPU count: 0

default: Memory target: 0

default: Maximum memory: 0

default: Default network number for database services:

default: Database is administrator managed

default:
******************************************************************************

default: Output from srvctl status database -d cdbrac Mon Aug 28 00:08:26 UTC 2023

default:
******************************************************************************

default: Instance cdbrac1 is running on node ol8-19-rac1

default: Instance cdbrac2 is running on node ol8-19-rac2

default:
******************************************************************************

default: Output from v$active_instances Mon Aug 28 00:08:28 UTC 2023


default:
******************************************************************************

default:

default: SQL*Plus: Release 19.0.0.0.0 - Production on Mon Aug 28 00:08:28 2023

default: Version 19.20.0.0.0

default:

default: Copyright (c) 1982, 2022, Oracle. All rights reserved.

default:

default:

default: Connected to:

default: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production

default: Version 19.20.0.0.0

default:

default: SQL>

default: INST_NAME

default: --------------------------------------------------------------------------------

default: ol8-19-rac1:cdbrac1

default: ol8-19-rac2:cdbrac2

default:

default: SQL> Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 -
Production

default: Version 19.20.0.0.0

default:
******************************************************************************

default: Setup End. Mon Aug 28 00:08:29 UTC 2023


default:
******************************************************************************

PS C:\git\oraclebase\vagrant\rac\ol8_19\node1>

You might also like