Tuesday, December 22, 2020

.bash_profile vs .bashrc


bash(1) can be started in interactive mode or non-interactive mode. It can also act as a login shell or a non-login shell.

bash(1) is started in interactive mode by your terminal emulator and can also be started in interactive mode like this:

bash
bash -i
bash -ic 'echo Hello!'

Refer: https://github.com/thoughtbot/til/blob/master/bash/bash_profile_vs_bashrc.md#:~:text=bashrc%20is%20sourced%20on%20every,with%20the%20%2D%2Dlogin%20option.&text=bash_profile%20is%20great%20for%20commands%20that%20should%20run%20only%20once%20and%20.

When you run a script through bash(1) or if you start it with the -c option, it will run in non-interactive mode:

bash script.sh
bash -c 'echo Hello!'

bash(1) is instructed to act as a login shell when you first log in to your machine or when you start bash(1) with the --login or -l option.

.bashrc is sourced on every start in interactive mode when bash(1) does not act as a login shell.

.bash_profile is only sourced when bash(1) is started as an interactive login shell, or as a non-interactive shell with the --login option.

This means that .bash_profile is great for commands that should run only once and .bashrc for commands that should run every time you start a new shell.

For example, PATH customization should only happen once, since it is not an idempotent operation. Suppose something like this was in your .bashrc:

export PATH="$PATH:/addition"

Running these commands from a newly started interactive shell would produce the output below:

bash
bash
echo "$PATH"
/original_path:/addition:/addition:/addition

Setting PATH in .bash_profile alleviates this problem.





 Difference Between .bashrc and .bash_profile

.bash_profile is read and executed when Bash is invoked as an interactive login shell, while .bashrc is executed for an interactive non-login shell.


Use .bash_profile to run commands that should run only once, such as customizing the $PATH environment variable .


Put the commands that should run every time you launch a new shell in the .bashrc file. This include your aliases and functions , custom prompts, history customizations , and so on.


Typically, ~/.bash_profile contains lines like below that source the .bashrc file. This means each time you log in to the terminal, both files are read and executed.


if [ -f ~/.bashrc ]; then

. ~/.bashrc

fi

Most Linux distributions are using ~/.profile instead of ~/.bash_profile. The ~/.profile file is read by all shells, while ~/.bash_profile only by Bash


refer:

.bashrc vs .bash_profile | Linuxize

Wednesday, December 16, 2020

Enable subscription on redhat

 reference: https://www.tecmint.com/enable-redhat-subscription-reposiories-and-updates-for-rhel-7/


Friday, November 20, 2020

Direct ODBC Connection String for DB2

 Driver={IBM DB2 ODBC DRIVER};Database=unicadb;Hostname=rhel65dbs;Port=50000;Protocol=TCPIP;Uid=root;Pwd=passw0rd;CURRENTSCHEMA=UMP


Driver={IBM DB2 ODBC DRIVER};Database=dmdb;Hostname=rhel65dbs;Port=50000;Protocol=TCPIP;Uid=datamart;Pwd=passw0rd;


Refer to: https://www.connectionstrings.com/ibm-db2-odbc/


Sunday, October 4, 2020

Open firewall ports for MariaDB

 [root@unica12node1 unica]# telnet 192.168.1.162

Trying 192.168.1.162...

telnet: connect to address 192.168.1.162: No route to host


192.168.1.162 is my MariaDB DB server.

Enable port on DB server:

[root@database my.cnf.d]# systemctl start firewalld firewalld
[root@database my.cnf.d]# firewall-cmd --add-port=3306/tcp
success
[root@database my.cnf.d]# firewall-cmd --permanent --add-port=3306/tcp
success

Test again:
[root@unica12node1 unica]# telnet 192.168.1.162 3306
Trying 192.168.1.162...
Connected to 192.168.1.162.
Escape character is '^]'.
X
5.5.5-10.5.5-MariaDB%~p5U0-1▒▒!Nsz.oi>;MO'smysql_native_password^CConnection closed by foreign host.





Thursday, September 17, 2020

Setting up DB2 ODBC Driver with MySQL Workbench

 Download drivers:

https://www.ibm.com/support/pages/db2-jdbc-driver-versions-and-downloads

https://epwt-www.mybluemix.net/software/support/trial/cst/programwebsite.wss?siteId=849&h=null&p=null


https://www.ibm.com/support/pages/db2-odbc-cli-driver-download-and-installation-information#%5B%3Ch2%3E%5DDownload%5B%3C%2Fh2%3E%5D

  1. Copy the compressed file that contains the driver onto the target machine from the internet or a DB2 Version 9 installation CD.
  2. Uncompress that file into your chosen install directory on the target machine.
  3. cd <uncompressed driver folder>/bin
    db2cli install -setup

Validate that you have the db2dsdriver.cfg file in the correct directory and that the database is registered in the Windows ODBC Administrator.

To verify where the db2dsdriver.cfg file is expected to be from the <install path>\clidriver\lib run the db2cli validate command. This will display the following:


===============================================================================
Client information for the current copy (copy name: DB2CPY11):
===============================================================================

Client Package Type : IBM Data Server ODBC & CLI Driver
Client Version (level/bit) : DB2 v11.1.1010.111 (s1610170100/64-bit)
Client Platform : NT 64BIT
Install/Instance Path : C:\PROGRA~1\CLIDRIVER

Common App Data Path : C:\ProgramData\IBM\DB2\CLIDRIVER
DB2DSDRIVER_CFG_PATH value: <not-set>
db2dsdriver.cfg Path : <Common App Data Path>\cfg\db2dsdriver.cfg
DB2CLIINIPATH value : <not-set>
db2cli.ini Path : <Common App Data Path>\cfg\db2cli.ini
db2diag.log Path : <Common App Data Path>\DB2_02\DIAG0000\db2diag.log

Note that DB2DSDRIVER_CFG_PATH and DB2CLIINIPATH are only set if the default locations are not being used.

To check if the database is correct in the db2dsdriver.cfg file execute the db2cli validate -dsn <database name>

This will show:



Keywords Valid For Value
-------------------------------------------------------------------------
DATABASE CLI,.NET,ESQL s23cv10
HOSTNAME CLI,.NET,ESQL tlba23me.torolab.ibm.com
PORT CLI,.NET,ESQL 6006
AUTHENTICATION CLI,.NET SERVER

If you don't see the driver in the Windows ODBC administrator, run db2cli install -setup

Under system data sources there will be no entries hence the reason error Data source name not
found and no default driver specified error was returned.

Resolving The Problem

Register the ODBC driver: run db2cli install -setup

Register the odbc data source: run db2cli -registerdsn -add -dsn <database name> -system

Wednesday, September 16, 2020

Configuring MariaDB OCBC connection

 Ensure unixodbc is working fine:

[root@unica12node1 lib]# odbcinst -j

unixODBC 2.3.1

DRIVERS............: /etc/odbcinst.ini

SYSTEM DATA SOURCES: /etc/odbc.ini

FILE DATA SOURCES..: /etc/ODBCDataSources

USER DATA SOURCES..: /root/.odbc.ini

SQLULEN Size.......: 8

SQLLEN Size........: 8

SQLSETPOSIROW Size.: 8



Configure /etc/odbdinst.ini
[MariaDB]
Driver=/opt/cdata/cdata-odbc-driver-for-mariadb/lib/libmariadbodbc.x64.so
Description=ODBC Driver for MariaDB
Driver          = /docker/unica/mariadb/lib/libmaodbc.so
Setup           = /docker/unica/mariadb/lib/libmaodbc.so
Driver64        = /docker/unica/mariadb/lib/libmaodbc.so
Setup64         = /docker/unica/mariadb/lib/libmaodbc.so
FileUsage       = 1



Configure /etc/odbc.ini
[root@unica12node1 lib]# cat /etc/odbc.ini
[CData MariaDB Source]
Driver=/docker/unica/mariadb/lib/libmaodbc.so
User=root
Password=P@ssw0rd
Database=unicadb
Server=192.168.1.162
Port=3306


Check driver is registered:
[root@unica12node1 lib]# odbcinst -q -d
[PostgreSQL]
[MySQL]
[MariaDB]


Test connection:
[root@unica12node1 lib]# isql -v "CData MariaDB Source"
+---------------------------------------+
| Connected!                            |
|                                       |
| sql-statement                         |
| help [tablename]                      |
| quit                                  |
|                                       |
+---------------------------------------+
SQL>




Tuesday, September 15, 2020

Download/install unixodbc

 [root@unica12node1 mariadb]# yumdownloader --destdir=./tmp --resolve unixODBC.x86_64

Loaded plugins: langpacks, product-id, subscription-manager

--> Running transaction check

---> Package unixODBC.x86_64 0:2.3.1-14.el7 will be installed

--> Finished Dependency Resolution

unixODBC-2.3.1-14.el7.x86_64.rpm                                                                                                                   | 413 kB  00:00:03

[root@unica12node1 mariadb]# ls -l

total 3316

drwxr-xr-x 2 root root      26 Sep 16 18:57 lib

-rw-r--r-- 1 root root  837805 Jan 11  2020 mariadb-connector-odbc-3.1.0-rc-rhel7-x86_64.tar.gz

drwxr-xr-x 3 root root      17 Sep 16 18:57 share

drwxr-xr-x 2 root root      46 Sep 16 19:33 tmp

-rw-r--r-- 1 root root  875028 Sep 16 11:08 unixODBC-2.2.0-5.i386.rpm

-rw-r--r-- 1 root root 1676145 Sep 16 11:02 unixODBC-2.3.9.tar.gz

[root@unica12node1 mariadb]# cd tmp

[root@unica12node1 tmp]# ls -l

total 416

-rw-r--r-- 1 root root 423196 Jun 11  2019 unixODBC-2.3.1-14.el7.x86_64.rpm

[root@unica12node1 tmp]# rpm -i unixODBC-2.3.1-14.el7.x86_64.rpm

[root@unica12node1 tmp]# odbcinst


**********************************************

* unixODBC - odbcinst                        *

**********************************************

*                                            *

* Purpose:                                   *

*                                            *

*      An ODBC Installer and Uninstaller.    *

*      Updates system files, and             *

*      increases/decreases usage counts but  *

*      does not actually copy or remove any  *

*      files.                                *

*                                            *

* Syntax:                                    *

*                                            *

*      odbcinst Action Object Options        *

*                                            *

* Action:                                    *

*                                            *

*      -i         install                    *

*      -u         uninstall                  *

*      -q         query                      *

*      -j         print config info          *

*      -c         call SQLCreateDataSource   *

*      -m         call SQLManageDataSources  *

*      --version  version                    *

*                                            *

* Object:                                    *

*                                            *

*      -d driver                             *

*      -s data source                        *

*                                            *

* Options:                                   *

*                                            *

*      -f file name of template.ini follows  *

*         this (valid for -i)                *

*      -r get template.ini from stdin, not   *

*         a template file                    *

*      -n Driver or Data Source Name follows *

*      -v turn verbose off (no info, warning *

*         or error msgs)                     *

*      -l system dsn                         *

*      -h user dsn                           *

*                                            *

* Returns:                                   *

*                                            *

*      0   Success                           *

*     !0   Failed                            *

*                                            *

* Please visit;                              *

*                                            *

*      http://www.unixodbc.org               *

*      pharvey@codebydesign.com              *

**********************************************



[root@unica12node1 tmp]# odbcinst -j

unixODBC 2.3.1

DRIVERS............: /etc/odbcinst.ini

SYSTEM DATA SOURCES: /etc/odbc.ini

FILE DATA SOURCES..: /etc/ODBCDataSources

USER DATA SOURCES..: /root/.odbc.ini

SQLULEN Size.......: 8

SQLLEN Size........: 8

SQLSETPOSIROW Size.: 8


Friday, September 11, 2020

Creation of unicadb on mariadb

 [root@database bin]# ./mysql -h localhost -u root -pP@ssw0rd

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MariaDB connection id is 13

Server version: 10.5.5-MariaDB MariaDB Server


Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


MariaDB [(none)]> create database unicadb;

Query OK, 1 row affected (0.011 sec)


MariaDB [(none)]> create user platuser identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.025 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to platuser;

Query OK, 0 rows affected (0.004 sec)


MariaDB [(none)]> create user campuser identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.002 sec)


MariaDB [(none)]> create user mouser identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> create user intuser identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> create user lrnuser identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.000 sec)


MariaDB [(none)]> create user platweb identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> create user platcallcntr identified by 'P@ssw0rd';

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to campuser;

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to mouser;

Query OK, 0 rows affected (0.000 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to intuser;

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to lrnuser;

Query OK, 0 rows affected (0.000 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to platweb;

Query OK, 0 rows affected (0.000 sec)


MariaDB [(none)]> grant all privileges on unicadb.* to platcallcntr;

Query OK, 0 rows affected (0.000 sec)


Thursday, September 10, 2020

Mariadb Connection Issues (Host not allowed to connect to this MariaDB Server)

 Here is  a good source:

https://mariadb.com/kb/en/troubleshooting-connection-issues/


Here is my problem:



[root@database bin]# ./mysql -h localhost -u root -pP@ssw0rd

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MariaDB connection id is 7

Server version: 10.5.5-MariaDB MariaDB Server


Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


MariaDB [(none)]> SELECT User, Host FROM mysql.user WHERE Host <> 'localhost';

+------+------------------------------------+

| User | Host                               |

+------+------------------------------------+

|      | rhel-server-7.6-x86-64.localdomain |

+------+------------------------------------+

1 row in set (0.005 sec)


MariaDB [(none)]> GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.%'   IDENTIFIED BY 'P@ssw0rd' WITH GRANT OPTION;

Query OK, 0 rows affected (0.001 sec)


MariaDB [(none)]> SELECT User, Host FROM mysql.user WHERE Host <> 'localhost';

+------+------------------------------------+

| User | Host                               |

+------+------------------------------------+

| root | 192.168.1.%                        |

|      | rhel-server-7.6-x86-64.localdomain |

+------+------------------------------------+

2 rows in set (0.001 sec)


MariaDB [(none)]>


Saturday, August 22, 2020

Installing Oracle 19 in RPM mode

 https://juanmercadoit.com/2020/04/07/install-oracle-19c-rpm-package-mode/


To uninstall:

[root@database init.d]# rpm -qa | grep oracle

oracle-database-preinstall-19c-1.0-1.el7.x86_64

oracle-database-ee-19c-1.0-1.x86_64

[root@database init.d]# rpm -e oracle-database-ee-19c-1.0-1.x86_64

[root@database init.d]# rpm -qa | grep oracle

oracle-database-preinstall-19c-1.0-1.el7.x86_64


Installing Oracle 19c on RedHat

 http://www.br8dba.com/tag/step-by-step-oracle-19c-installation-on-linux/


But before that, you need to install the pre-requisites

yum -y install oracle-database-preinstall-19c


notify_only=0






root@rhel-server-7 ~]#  curl -o oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current

                                 Dload  Upload   Total   Spent    Left  Speed

100 18204  100 18204    0     0  82566      0 --:--:-- --:--:-- --:--:-- 83123

[root@rhel-server-7 ~]# yum install -y oracle-database-preinstall-19c                                                                                                                         Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager

No package oracle-database-preinstall-19c available.

Error: Nothing to do

[root@rhel-server-7 ~]# yum -y localinstall oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm

Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager

Examining oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm: oracle-database-preinstall-19c-1.0-1.el7.x86_64

Marking oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm to be installed

Resolving Dependencies

--> Running transaction check

---> Package oracle-database-preinstall-19c.x86_64 0:1.0-1.el7 will be installed

--> Processing Dependency: compat-libstdc++-33 for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Processing Dependency: ksh for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Processing Dependency: libaio-devel for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Running transaction check

---> Package ksh.x86_64 0:20120801-142.el7 will be installed

---> Package libaio-devel.x86_64 0:0.3.109-13.el7 will be installed

---> Package oracle-database-preinstall-19c.x86_64 0:1.0-1.el7 will be installed

--> Processing Dependency: compat-libstdc++-33 for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Finished Dependency Resolution

Error: Package: oracle-database-preinstall-19c-1.0-1.el7.x86_64 (/oracle-database-preinstall-19c-1.0-1.el7.x86_64)

           Requires: compat-libstdc++-33

**********************************************************************

yum can be configured to try to resolve such errors by temporarily enabling

disabled repos and searching for missing dependencies.

To enable this functionality please set 'notify_only=0' in /etc/yum/pluginconf.d/search-disabled-repos.conf

**********************************************************************


Error: Package: oracle-database-preinstall-19c-1.0-1.el7.x86_64 (/oracle-database-preinstall-19c-1.0-1.el7.x86_64)

           Requires: compat-libstdc++-33

 You could try using --skip-broken to work around the problem

 You could try running: rpm -Va --nofiles --nodigest

[root@rhel-server-7 ~]# vi  /etc/yum/pluginconf.d/search-disabled-repos.conf

[root@rhel-server-7 ~]# yum -y localinstall oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm

Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager

Examining oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm: oracle-database-preinstall-19c-1.0-1.el7.x86_64

Marking oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm to be installed

Resolving Dependencies

--> Running transaction check

---> Package oracle-database-preinstall-19c.x86_64 0:1.0-1.el7 will be installed

--> Processing Dependency: compat-libstdc++-33 for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Processing Dependency: ksh for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Processing Dependency: libaio-devel for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Running transaction check

---> Package ksh.x86_64 0:20120801-142.el7 will be installed

---> Package libaio-devel.x86_64 0:0.3.109-13.el7 will be installed

---> Package oracle-database-preinstall-19c.x86_64 0:1.0-1.el7 will be installed

--> Processing Dependency: compat-libstdc++-33 for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Finished Dependency Resolution

Error: Package: oracle-database-preinstall-19c-1.0-1.el7.x86_64 (/oracle-database-preinstall-19c-1.0-1.el7.x86_64)

           Requires: compat-libstdc++-33

**********************************************************************

Dependency resolving failed due to missing dependencies.

Some repositories on your system are disabled, but yum can enable them

and search for missing dependencies. This will require downloading

metadata for disabled repositories and may take some time and traffic.

**********************************************************************


rhel-7-server-satellite-tools-6.2-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.2-rpms/x86_64/group                                                                                                                    |  790 B  00:00:00

rhel-7-server-satellite-tools-6.2-rpms/x86_64/updateinfo                                                                                                               |  13 kB  00:00:00

rhel-7-server-satellite-tools-6.2-rpms/x86_64/primary_db                                                                                                               |  52 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.4-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.4-rpms/7Server/x86_64/group                                                                                                        | 1.0 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.4-rpms/7Server/x86_64/updateinfo                                                                                                   | 8.0 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.4-rpms/7Server/x86_64/primary_db                                                                                                   |  41 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-e4s-rpms/7Server/x86_64                                                                                                                | 4.0 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-e4s-rpms/7Server/x86_64/group                                                                                                          | 2.3 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-e4s-rpms/7Server/x86_64/updateinfo                                                                                                     |  27 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-e4s-rpms/7Server/x86_64/primary_db                                                                                                     |  40 kB  00:00:00

rhel-atomic-7-cdk-2.3-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-2.3-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-2.3-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-2.3-rpms/x86_64/primary_db                                                                                                                           | 1.3 kB  00:00:00

rhel-ha-for-rhel-7-server-fastrack-rpms/x86_64                                                                                                                         | 3.7 kB  00:00:00

rhel-ha-for-rhel-7-server-fastrack-rpms/x86_64/group                                                                                                                   |  104 B  00:00:00

rhel-ha-for-rhel-7-server-fastrack-rpms/x86_64/updateinfo                                                                                                              |   91 B  00:00:00

rhel-ha-for-rhel-7-server-fastrack-rpms/x86_64/primary_db                                                                                                              | 1.5 kB  00:00:00

rhel-rs-for-rhel-7-server-eus-rpms/7Server/x86_64                                                                                                                      | 3.4 kB  00:00:00

rhel-rs-for-rhel-7-server-eus-rpms/7Server/x86_64/group                                                                                                                |  23 kB  00:00:00

rhel-rs-for-rhel-7-server-eus-rpms/7Server/x86_64/updateinfo                                                                                                           | 121 kB  00:00:00

rhel-rs-for-rhel-7-server-eus-rpms/7Server/x86_64/primary_db                                                                                                           | 340 kB  00:00:00

rhel-7-server-rhceph-2-tools-rpms/7Server/x86_64                                                                                                                       | 4.0 kB  00:00:00

rhel-7-server-rhceph-2-tools-rpms/7Server/x86_64/group                                                                                                                 |  124 B  00:00:00

rhel-7-server-rhceph-2-tools-rpms/7Server/x86_64/updateinfo                                                                                                            |  52 kB  00:00:00

rhel-7-server-rhceph-2-tools-rpms/7Server/x86_64/primary_db                                                                                                            | 258 kB  00:00:00

rhel-atomic-7-cdk-3.8-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.8-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.8-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.8-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-sap-for-rhel-7-server-e4s-rpms/7Server/x86_64                                                                                                                     | 4.0 kB  00:00:00

rhel-sap-for-rhel-7-server-e4s-rpms/7Server/x86_64/group                                                                                                               | 5.9 kB  00:00:00

rhel-sap-for-rhel-7-server-e4s-rpms/7Server/x86_64/updateinfo                                                                                                          |  39 kB  00:00:00

rhel-sap-for-rhel-7-server-e4s-rpms/7Server/x86_64/primary_db                                                                                                          |  54 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-rpms/7Server/x86_64/group                                                                                                        | 1.0 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-rpms/7Server/x86_64/updateinfo                                                                                                   | 9.4 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-rpms/7Server/x86_64/primary_db                                                                                                   |  41 kB  00:00:00

rhel-7-server-e4s-optional-rpms/7Server/x86_64                                                                                                                         | 3.8 kB  00:00:00

rhel-7-server-e4s-optional-rpms/7Server/x86_64/group                                                                                                                   |  26 kB  00:00:00

rhel-7-server-e4s-optional-rpms/7Server/x86_64/updateinfo                                                                                                              | 2.1 MB  00:00:00

rhel-7-server-e4s-optional-rpms/7Server/x86_64/primary_db                                                                                                              | 9.4 MB  00:00:01

rhel-7-server-openstack-7.0-tools-rpms/7Server/x86_64                                                                                                                  | 3.8 kB  00:00:00

rhel-7-server-openstack-7.0-tools-rpms/7Server/x86_64/group                                                                                                            |  124 B  00:00:00

rhel-7-server-openstack-7.0-tools-rpms/7Server/x86_64/updateinfo                                                                                                       |  29 kB  00:00:00

rhel-7-server-openstack-7.0-tools-rpms/7Server/x86_64/primary_db                                                                                                       |  36 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-puppet4-rpms/7Server/x86_64                                                                                                      | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-puppet4-rpms/7Server/x86_64/group                                                                                                |  499 B  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-puppet4-rpms/7Server/x86_64/updateinfo                                                                                           | 2.1 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.3-puppet4-rpms/7Server/x86_64/primary_db                                                                                           | 5.3 kB  00:00:00

rhel-7-server-ansible-2.9-rpms/x86_64                                                                                                                                  | 4.0 kB  00:00:00

rhel-7-server-ansible-2.9-rpms/x86_64/group                                                                                                                            |  124 B  00:00:00

rhel-7-server-ansible-2.9-rpms/x86_64/updateinfo                                                                                                                       | 4.2 kB  00:00:00

rhel-7-server-ansible-2.9-rpms/x86_64/primary_db                                                                                                                       |  14 kB  00:00:00

rhel-7-server-openstack-12-tools-rpms/x86_64                                                                                                                           | 3.8 kB  00:00:00

rhel-7-server-openstack-12-tools-rpms/x86_64/group                                                                                                                     |  124 B  00:00:00

rhel-7-server-openstack-12-tools-rpms/x86_64/updateinfo                                                                                                                |  37 kB  00:00:00

rhel-7-server-openstack-12-tools-rpms/x86_64/primary_db                                                                                                                |  41 kB  00:00:00

rhel-7-server-ansible-2-rpms/x86_64                                                                                                                                    | 4.0 kB  00:00:00

rhel-7-server-ansible-2-rpms/x86_64/group                                                                                                                              |  124 B  00:00:00

rhel-7-server-ansible-2-rpms/x86_64/updateinfo                                                                                                                         |  35 kB  00:00:00

rhel-7-server-ansible-2-rpms/x86_64/primary_db                                                                                                                         |  43 kB  00:00:00

rhel-rs-for-rhel-7-server-fastrack-rpms/x86_64                                                                                                                         | 3.7 kB  00:00:00

rhel-rs-for-rhel-7-server-fastrack-rpms/x86_64/group                                                                                                                   |  104 B  00:00:00

rhel-rs-for-rhel-7-server-fastrack-rpms/x86_64/updateinfo                                                                                                              |   76 B  00:00:00

rhel-rs-for-rhel-7-server-fastrack-rpms/x86_64/primary_db                                                                                                              | 1.5 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-rpms/7Server/x86_64                                                                                                                    | 4.0 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-rpms/7Server/x86_64/group                                                                                                              | 3.0 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-rpms/7Server/x86_64/updateinfo                                                                                                         |  33 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-rpms/7Server/x86_64/primary_db                                                                                                         |  39 kB  00:00:00

rhel-7-server-satellite-tools-6.3-puppet4-rpms/x86_64                                                                                                                  | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.3-puppet4-rpms/x86_64/group                                                                                                            |  499 B  00:00:00

rhel-7-server-satellite-tools-6.3-puppet4-rpms/x86_64/updateinfo                                                                                                       | 2.0 kB  00:00:00

rhel-7-server-satellite-tools-6.3-puppet4-rpms/x86_64/primary_db                                                                                                       | 5.3 kB  00:00:00

rhel-7-server-openstack-9-tools-rpms/7Server/x86_64                                                                                                                    | 3.8 kB  00:00:00

rhel-7-server-openstack-9-tools-rpms/7Server/x86_64/group                                                                                                              |  124 B  00:00:00

rhel-7-server-openstack-9-tools-rpms/7Server/x86_64/updateinfo                                                                                                         |  14 kB  00:00:00

rhel-7-server-openstack-9-tools-rpms/7Server/x86_64/primary_db                                                                                                         |  36 kB  00:00:00

rhel-7-server-ansible-2.5-rpms/x86_64                                                                                                                                  | 4.0 kB  00:00:00

rhel-7-server-ansible-2.5-rpms/x86_64/group                                                                                                                            |  124 B  00:00:00

rhel-7-server-ansible-2.5-rpms/x86_64/updateinfo                                                                                                                       |  13 kB  00:00:00

rhel-7-server-ansible-2.5-rpms/x86_64/primary_db                                                                                                                       |  19 kB  00:00:00

rhel-ha-for-rhel-7-server-eus-rpms/7Server/x86_64                                                                                                                      | 3.4 kB  00:00:00

rhel-ha-for-rhel-7-server-eus-rpms/7Server/x86_64/group                                                                                                                |  13 kB  00:00:00

rhel-ha-for-rhel-7-server-eus-rpms/7Server/x86_64/updateinfo                                                                                                           |  86 kB  00:00:00

rhel-ha-for-rhel-7-server-eus-rpms/7Server/x86_64/primary_db                                                                                                           | 265 kB  00:00:00

rhel-7-server-ansible-2.8-rpms/x86_64                                                                                                                                  | 4.0 kB  00:00:00

rhel-7-server-ansible-2.8-rpms/x86_64/group                                                                                                                            |  124 B  00:00:00

rhel-7-server-ansible-2.8-rpms/x86_64/updateinfo                                                                                                                       | 4.8 kB  00:00:00

rhel-7-server-ansible-2.8-rpms/x86_64/primary_db                                                                                                                       |  16 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.7-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.7-rpms/7Server/x86_64/group                                                                                                        |  124 B  00:00:00

rhel-7-server-e4s-satellite-tools-6.7-rpms/7Server/x86_64/updateinfo                                                                                                   | 4.4 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.7-rpms/7Server/x86_64/primary_db                                                                                                   |  19 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.3-puppet4-rpms/7Server/x86_64                                                                                                      | 3.8 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.3-puppet4-rpms/7Server/x86_64/group                                                                                                |  124 B  00:00:00

rhel-7-server-eus-satellite-tools-6.3-puppet4-rpms/7Server/x86_64/updateinfo                                                                                           | 2.1 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.3-puppet4-rpms/7Server/x86_64/primary_db                                                                                           | 5.3 kB  00:00:00

rhel-7-server-crw-text-only-rpms/x86_64                                                                                                                                | 3.7 kB  00:00:00

rhel-7-server-crw-text-only-rpms/x86_64/group                                                                                                                          |  124 B  00:00:00

rhel-7-server-crw-text-only-rpms/x86_64/updateinfo                                                                                                                     |   92 B  00:00:00

rhel-7-server-crw-text-only-rpms/x86_64/primary_db                                                                                                                     | 1.4 kB  00:00:00

rhel-7-server-eus-rpms/7Server/x86_64                                                                                                                                  | 3.5 kB  00:00:00

rhel-7-server-eus-rpms/7Server/x86_64/group                                                                                                                            | 641 kB  00:00:00

rhel-7-server-eus-rpms/7Server/x86_64/updateinfo                                                                                                                       | 2.5 MB  00:00:00

rhel-7-server-eus-rpms/7Server/x86_64/primary_db                                                                                                                       |  52 MB  00:00:05

rhel-7-server-satellite-tools-6.4-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.4-rpms/x86_64/group                                                                                                                    | 1.0 kB  00:00:00

rhel-7-server-satellite-tools-6.4-rpms/x86_64/updateinfo                                                                                                               | 8.7 kB  00:00:00

rhel-7-server-satellite-tools-6.4-rpms/x86_64/primary_db                                                                                                               |  41 kB  00:00:00

rhel-sap-for-rhel-7-server-rpms/7Server/x86_64                                                                                                                         | 3.4 kB  00:00:00

rhel-sap-for-rhel-7-server-rpms/7Server/x86_64/group                                                                                                                   | 5.5 kB  00:00:00

rhel-sap-for-rhel-7-server-rpms/7Server/x86_64/updateinfo                                                                                                              |  47 kB  00:00:00

rhel-sap-for-rhel-7-server-rpms/7Server/x86_64/primary_db                                                                                                              |  53 kB  00:00:00

rhel-7-server-openstack-10-tools-rpms/7Server/x86_64                                                                                                                   | 3.8 kB  00:00:00

rhel-7-server-openstack-10-tools-rpms/7Server/x86_64/group                                                                                                             |  124 B  00:00:00

rhel-7-server-openstack-10-tools-rpms/7Server/x86_64/updateinfo                                                                                                        |  51 kB  00:00:00

rhel-7-server-openstack-10-tools-rpms/7Server/x86_64/primary_db                                                                                                        |  52 kB  00:00:00

rhel-7-server-openstack-14-tools-rpms/x86_64                                                                                                                           | 3.8 kB  00:00:00

rhel-7-server-openstack-14-tools-rpms/x86_64/group                                                                                                                     |  124 B  00:00:00

rhel-7-server-openstack-14-tools-rpms/x86_64/updateinfo                                                                                                                |  36 kB  00:00:00

rhel-7-server-openstack-14-tools-rpms/x86_64/primary_db                                                                                                                |  46 kB  00:00:00

rhel-7-server-satellite-tools-6.6-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.6-rpms/x86_64/group                                                                                                                    |  949 B  00:00:00

rhel-7-server-satellite-tools-6.6-rpms/x86_64/updateinfo                                                                                                               | 6.6 kB  00:00:00

rhel-7-server-satellite-tools-6.6-rpms/x86_64/primary_db                                                                                                               |  36 kB  00:00:00

rhel-atomic-7-cdk-3.9-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.9-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.9-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.9-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-sap-for-rhel-7-server-eus-rpms/7Server/x86_64                                                                                                                     | 4.0 kB  00:00:00

rhel-sap-for-rhel-7-server-eus-rpms/7Server/x86_64/group                                                                                                               | 5.2 kB  00:00:00

rhel-sap-for-rhel-7-server-eus-rpms/7Server/x86_64/updateinfo                                                                                                          |  34 kB  00:00:00

rhel-sap-for-rhel-7-server-eus-rpms/7Server/x86_64/primary_db                                                                                                          |  30 kB  00:00:00

rhel-server-rhscl-7-rpms/7Server/x86_64                                                                                                                                | 3.4 kB  00:00:00

rhel-server-rhscl-7-rpms/7Server/x86_64/group                                                                                                                          |  124 B  00:00:00

rhel-server-rhscl-7-rpms/7Server/x86_64/updateinfo                                                                                                                     | 1.1 MB  00:00:00

rhel-server-rhscl-7-rpms/7Server/x86_64/primary_db                                                                                                                     | 6.0 MB  00:00:00

rhel-atomic-7-cdk-3.11-rpms/x86_64                                                                                                                                     | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.11-rpms/x86_64/group                                                                                                                               |  124 B  00:00:00

rhel-atomic-7-cdk-3.11-rpms/x86_64/updateinfo                                                                                                                          |   92 B  00:00:00

rhel-atomic-7-cdk-3.11-rpms/x86_64/primary_db                                                                                                                          | 1.4 kB  00:00:00

rhel-atomic-7-cdk-3.12-rpms/x86_64                                                                                                                                     | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.12-rpms/x86_64/group                                                                                                                               |  124 B  00:00:00

rhel-atomic-7-cdk-3.12-rpms/x86_64/updateinfo                                                                                                                          |   92 B  00:00:00

rhel-atomic-7-cdk-3.12-rpms/x86_64/primary_db                                                                                                                          | 1.3 kB  00:00:00

rhel-7-server-rhn-tools-rpms/7Server/x86_64                                                                                                                            | 3.8 kB  00:00:00

rhel-7-server-rhn-tools-rpms/7Server/x86_64/group                                                                                                                      |  124 B  00:00:00

rhel-7-server-rhn-tools-rpms/7Server/x86_64/updateinfo                                                                                                                 |  16 kB  00:00:00

rhel-7-server-rhn-tools-rpms/7Server/x86_64/primary_db                                                                                                                 |  43 kB  00:00:00

rhel-atomic-7-cdk-3.1-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.1-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.1-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.1-rpms/x86_64/primary_db                                                                                                                           | 1.3 kB  00:00:00

rhel-7-server-openstack-13-tools-rpms/x86_64                                                                                                                           | 3.8 kB  00:00:00

rhel-7-server-openstack-13-tools-rpms/x86_64/group                                                                                                                     |  124 B  00:00:00

rhel-7-server-openstack-13-tools-rpms/x86_64/updateinfo                                                                                                                |  54 kB  00:00:00

rhel-7-server-openstack-13-tools-rpms/x86_64/primary_db                                                                                                                |  56 kB  00:00:00

rhel-atomic-7-cdk-3.0-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.0-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.0-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.0-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-7-server-thirdparty-oracle-java-rpms/7Server/x86_64                                                                                                               | 3.2 kB  00:00:00

rhel-7-server-thirdparty-oracle-java-rpms/7Server/x86_64/group                                                                                                         |  124 B  00:00:00

rhel-7-server-thirdparty-oracle-java-rpms/7Server/x86_64/updateinfo                                                                                                    |   92 B  00:00:00

rhel-7-server-thirdparty-oracle-java-rpms/7Server/x86_64/primary_db                                                                                                    | 1.3 kB  00:00:00

rhel-7-server-fastrack-rpms/x86_64                                                                                                                                     | 3.2 kB  00:00:00

rhel-7-server-fastrack-rpms/x86_64/group                                                                                                                               |  104 B  00:00:00

rhel-7-server-fastrack-rpms/x86_64/updateinfo                                                                                                                          |   76 B  00:00:00

rhel-7-server-fastrack-rpms/x86_64/primary_db                                                                                                                          | 1.4 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.5-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.5-rpms/7Server/x86_64/group                                                                                                        |  124 B  00:00:00

rhel-7-server-eus-satellite-tools-6.5-rpms/7Server/x86_64/updateinfo                                                                                                   | 7.3 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.5-rpms/7Server/x86_64/primary_db                                                                                                   |  39 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.2-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.2-rpms/7Server/x86_64/group                                                                                                        |  790 B  00:00:00

rhel-7-server-eus-satellite-tools-6.2-rpms/7Server/x86_64/updateinfo                                                                                                   |  13 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.2-rpms/7Server/x86_64/primary_db                                                                                                   |  52 kB  00:00:00

rhel-7-server-dotnet-rpms/7Server/x86_64                                                                                                                               | 4.0 kB  00:00:00

rhel-7-server-dotnet-rpms/7Server/x86_64/group                                                                                                                         |  124 B  00:00:00

rhel-7-server-dotnet-rpms/7Server/x86_64/updateinfo                                                                                                                    |  40 kB  00:00:00

rhel-7-server-dotnet-rpms/7Server/x86_64/primary_db                                                                                                                    | 243 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.4-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.4-rpms/7Server/x86_64/group                                                                                                        |  124 B  00:00:00

rhel-7-server-eus-satellite-tools-6.4-rpms/7Server/x86_64/updateinfo                                                                                                   | 8.7 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.4-rpms/7Server/x86_64/primary_db                                                                                                   |  41 kB  00:00:00

rhel-7-server-optional-fastrack-rpms/x86_64                                                                                                                            | 3.2 kB  00:00:00

rhel-7-server-optional-fastrack-rpms/x86_64/group                                                                                                                      |  104 B  00:00:00

rhel-7-server-optional-fastrack-rpms/x86_64/updateinfo                                                                                                                 |   91 B  00:00:00

rhel-7-server-optional-fastrack-rpms/x86_64/primary_db                                                                                                                 | 1.5 kB  00:00:00

rhel-atomic-7-cdk-3.2-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.2-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.2-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.2-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-7-server-e4s-rpms/7Server/x86_64                                                                                                                                  | 4.1 kB  00:00:00

rhel-7-server-e4s-rpms/7Server/x86_64/group                                                                                                                            | 773 kB  00:00:00

rhel-7-server-e4s-rpms/7Server/x86_64/updateinfo                                                                                                                       | 3.0 MB  00:00:00

rhel-7-server-e4s-rpms/7Server/x86_64/primary_db                                                                                                                       |  72 MB  00:00:08

rhel-atomic-7-cdk-3.5-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.5-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.5-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.5-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-eus-rpms/7Server/x86_64                                                                                                                | 4.0 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-eus-rpms/7Server/x86_64/group                                                                                                          | 2.4 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-eus-rpms/7Server/x86_64/updateinfo                                                                                                     |  23 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-eus-rpms/7Server/x86_64/primary_db                                                                                                     |  13 kB  00:00:00

rhel-atomic-7-cdk-2.4-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-2.4-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-2.4-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-2.4-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-atomic-7-cdk-3.4-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.4-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.4-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.4-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-rs-for-rhel-7-server-rpms/7Server/x86_64                                                                                                                          | 3.5 kB  00:00:00

rhel-rs-for-rhel-7-server-rpms/7Server/x86_64/group                                                                                                                    |  24 kB  00:00:00

rhel-rs-for-rhel-7-server-rpms/7Server/x86_64/updateinfo                                                                                                               | 183 kB  00:00:00

rhel-rs-for-rhel-7-server-rpms/7Server/x86_64/primary_db                                                                                                               | 567 kB  00:00:00

rhel-7-server-insights-3-rpms/x86_64                                                                                                                                   | 3.8 kB  00:00:00

rhel-7-server-insights-3-rpms/x86_64/group                                                                                                                             |  124 B  00:00:00

rhel-7-server-insights-3-rpms/x86_64/updateinfo                                                                                                                        | 2.5 kB  00:00:00

rhel-7-server-insights-3-rpms/x86_64/primary_db                                                                                                                        | 7.3 kB  00:00:00

rhel-7-server-satellite-maintenance-6-rpms/x86_64                                                                                                                      | 3.8 kB  00:00:00

rhel-7-server-satellite-maintenance-6-rpms/x86_64/group                                                                                                                |  124 B  00:00:00

rhel-7-server-satellite-maintenance-6-rpms/x86_64/updateinfo                                                                                                           |  11 kB  00:00:00

rhel-7-server-satellite-maintenance-6-rpms/x86_64/primary_db                                                                                                           |  21 kB  00:00:00

rhel-atomic-7-cdk-3.10-rpms/x86_64                                                                                                                                     | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.10-rpms/x86_64/group                                                                                                                               |  124 B  00:00:00

rhel-atomic-7-cdk-3.10-rpms/x86_64/updateinfo                                                                                                                          |   92 B  00:00:00

rhel-atomic-7-cdk-3.10-rpms/x86_64/primary_db                                                                                                                          | 1.4 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.1-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.1-rpms/7Server/x86_64/group                                                                                                        | 1.7 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.1-rpms/7Server/x86_64/updateinfo                                                                                                   | 9.3 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.1-rpms/7Server/x86_64/primary_db                                                                                                   |  37 kB  00:00:00

rhel-7-server-v2vwin-1-rpms/7Server/x86_64                                                                                                                             | 3.2 kB  00:00:00

rhel-7-server-v2vwin-1-rpms/7Server/x86_64/group                                                                                                                       |  124 B  00:00:00

rhel-7-server-v2vwin-1-rpms/7Server/x86_64/updateinfo                                                                                                                  | 1.0 kB  00:00:00

rhel-7-server-v2vwin-1-rpms/7Server/x86_64/primary_db                                                                                                                  | 3.5 kB  00:00:00

rhel-7-server-ansible-2.7-rpms/x86_64                                                                                                                                  | 4.0 kB  00:00:00

rhel-7-server-ansible-2.7-rpms/x86_64/group                                                                                                                            |  124 B  00:00:00

rhel-7-server-ansible-2.7-rpms/x86_64/updateinfo                                                                                                                       |  13 kB  00:00:00

rhel-7-server-ansible-2.7-rpms/x86_64/primary_db                                                                                                                       |  19 kB  00:00:00

rhel-7-server-openstack-11-tools-rpms/x86_64                                                                                                                           | 3.8 kB  00:00:00

rhel-7-server-openstack-11-tools-rpms/x86_64/group                                                                                                                     |  124 B  00:00:00

rhel-7-server-openstack-11-tools-rpms/x86_64/updateinfo                                                                                                                |  25 kB  00:00:00

rhel-7-server-openstack-11-tools-rpms/x86_64/primary_db                                                                                                                |  37 kB  00:00:00

rhel-7-server-satellite-tools-6.7-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.7-rpms/x86_64/group                                                                                                                    |  124 B  00:00:00

rhel-7-server-satellite-tools-6.7-rpms/x86_64/updateinfo                                                                                                               | 7.3 kB  00:00:00

rhel-7-server-satellite-tools-6.7-rpms/x86_64/primary_db                                                                                                               |  39 kB  00:00:00

https://cdn.redhat.com/content/e4s/rhel/server/7/7Server/x86_64/sat-tools/6.2/os/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found

Trying other mirror.

To address this issue please refer to the below knowledge base article


https://access.redhat.com/articles/1320623


If above article doesn't help to resolve this issue please open a ticket with Red Hat Support.


rhel-7-server-eus-optional-rpms/7Server/x86_64                                                                                                                         | 3.2 kB  00:00:00

rhel-7-server-eus-optional-rpms/7Server/x86_64/group                                                                                                                   |  22 kB  00:00:00

rhel-7-server-eus-optional-rpms/7Server/x86_64/updateinfo                                                                                                              | 1.8 MB  00:00:00

rhel-7-server-eus-optional-rpms/7Server/x86_64/primary_db                                                                                                              | 6.1 MB  00:00:00

rhel-7-server-satellite-tools-6.5-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.5-rpms/x86_64/group                                                                                                                    |  949 B  00:00:00

rhel-7-server-satellite-tools-6.5-rpms/x86_64/updateinfo                                                                                                               | 7.3 kB  00:00:00

rhel-7-server-satellite-tools-6.5-rpms/x86_64/primary_db                                                                                                               |  39 kB  00:00:00

rhel-7-server-ansible-2.4-rpms/x86_64                                                                                                                                  | 4.0 kB  00:00:00

rhel-7-server-ansible-2.4-rpms/x86_64/group                                                                                                                            |  124 B  00:00:00

rhel-7-server-ansible-2.4-rpms/x86_64/updateinfo                                                                                                                       |  10 kB  00:00:00

rhel-7-server-ansible-2.4-rpms/x86_64/primary_db                                                                                                                       |  14 kB  00:00:00

rhel-7-server-rh-common-rpms/7Server/x86_64                                                                                                                            | 3.8 kB  00:00:00

rhel-7-server-rh-common-rpms/7Server/x86_64/group                                                                                                                      |  124 B  00:00:00

rhel-7-server-rh-common-rpms/7Server/x86_64/updateinfo                                                                                                                 |  34 kB  00:00:00

rhel-7-server-rh-common-rpms/7Server/x86_64/primary_db                                                                                                                 | 119 kB  00:00:00

rhel-7-server-ansible-2.6-rpms/x86_64                                                                                                                                  | 4.0 kB  00:00:00

rhel-7-server-ansible-2.6-rpms/x86_64/group                                                                                                                            |  124 B  00:00:00

rhel-7-server-ansible-2.6-rpms/x86_64/updateinfo                                                                                                                       |  14 kB  00:00:00

rhel-7-server-ansible-2.6-rpms/x86_64/primary_db                                                                                                                       |  20 kB  00:00:00

rhel-7-server-satellite-tools-6.3-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.3-rpms/x86_64/group                                                                                                                    | 1.0 kB  00:00:00

rhel-7-server-satellite-tools-6.3-rpms/x86_64/updateinfo                                                                                                               |  10 kB  00:00:00

rhel-7-server-satellite-tools-6.3-rpms/x86_64/primary_db                                                                                                               |  42 kB  00:00:00

rhel-7-server-satellite-tools-6.1-rpms/x86_64                                                                                                                          | 3.8 kB  00:00:00

rhel-7-server-satellite-tools-6.1-rpms/x86_64/group                                                                                                                    | 1.5 kB  00:00:00

rhel-7-server-satellite-tools-6.1-rpms/x86_64/updateinfo                                                                                                               | 9.0 kB  00:00:00

rhel-7-server-satellite-tools-6.1-rpms/x86_64/primary_db                                                                                                               |  35 kB  00:00:00

rhel-atomic-7-cdk-3.7-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.7-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.7-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.7-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-7-server-eus-supplementary-debuginfo/7Server/x86_64                                                                                                               | 3.7 kB  00:00:00

rhel-7-server-eus-supplementary-debuginfo/7Server/x86_64/group                                                                                                         |  104 B  00:00:00

rhel-7-server-eus-supplementary-debuginfo/7Server/x86_64/updateinfo                                                                                                    |   76 B  00:00:00

rhel-7-server-eus-supplementary-debuginfo/7Server/x86_64/primary_db                                                                                                    | 1.5 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.6-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.6-rpms/7Server/x86_64/group                                                                                                        |  124 B  00:00:00

rhel-7-server-e4s-satellite-tools-6.6-rpms/7Server/x86_64/updateinfo                                                                                                   | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.6-rpms/7Server/x86_64/primary_db                                                                                                   |  18 kB  00:00:00

rhel-7-server-eus-thirdparty-oracle-java-rpms/7Server/x86_64                                                                                                           | 4.0 kB  00:00:00

rhel-7-server-eus-thirdparty-oracle-java-rpms/7Server/x86_64/group                                                                                                     |  104 B  00:00:00

rhel-7-server-eus-thirdparty-oracle-java-rpms/7Server/x86_64/updateinfo                                                                                                |   76 B  00:00:00

rhel-7-server-eus-thirdparty-oracle-java-rpms/7Server/x86_64/primary_db                                                                                                | 1.5 kB  00:00:00

rhel-atomic-7-cdk-3.3-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.3-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.3-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.3-rpms/x86_64/primary_db                                                                                                                           | 1.4 kB  00:00:00

rhel-7-server-eus-rhn-tools-rpms/7Server/x86_64                                                                                                                        | 3.8 kB  00:00:00

rhel-7-server-eus-rhn-tools-rpms/7Server/x86_64/group                                                                                                                  |  124 B  00:00:00

rhel-7-server-eus-rhn-tools-rpms/7Server/x86_64/updateinfo                                                                                                             |  16 kB  00:00:00

rhel-7-server-eus-rhn-tools-rpms/7Server/x86_64/primary_db                                                                                                             |  43 kB  00:00:00

https://cdn.redhat.com/content/e4s/rhel/server/7/7Server/x86_64/sat-tools/6.1/os/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found

Trying other mirror.

rhel-ha-for-rhel-7-server-rpms/7Server/x86_64                                                                                                                          | 3.5 kB  00:00:00

rhel-ha-for-rhel-7-server-rpms/7Server/x86_64/group                                                                                                                    |  13 kB  00:00:00

rhel-ha-for-rhel-7-server-rpms/7Server/x86_64/updateinfo                                                                                                               | 130 kB  00:00:00

rhel-ha-for-rhel-7-server-rpms/7Server/x86_64/primary_db                                                                                                               | 464 kB  00:00:00

rh-gluster-3-client-for-rhel-7-server-rpms/7Server/x86_64                                                                                                              | 4.0 kB  00:00:00

rh-gluster-3-client-for-rhel-7-server-rpms/7Server/x86_64/group                                                                                                        |  124 B  00:00:00

rh-gluster-3-client-for-rhel-7-server-rpms/7Server/x86_64/updateinfo                                                                                                   | 109 kB  00:00:00

rh-gluster-3-client-for-rhel-7-server-rpms/7Server/x86_64/primary_db                                                                                                   | 162 kB  00:00:00

rhel-server-rhscl-7-eus-rpms/7Server/x86_64                                                                                                                            | 3.4 kB  00:00:00

rhel-server-rhscl-7-eus-rpms/7Server/x86_64/group                                                                                                                      |  124 B  00:00:00

rhel-server-rhscl-7-eus-rpms/7Server/x86_64/updateinfo                                                                                                                 | 701 kB  00:00:00

rhel-server-rhscl-7-eus-rpms/7Server/x86_64/primary_db                                                                                                                 | 5.5 MB  00:00:00

rhel-7-server-e4s-satellite-tools-6.5-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.5-rpms/7Server/x86_64/group                                                                                                        |  949 B  00:00:00

rhel-7-server-e4s-satellite-tools-6.5-rpms/7Server/x86_64/updateinfo                                                                                                   | 5.8 kB  00:00:00

rhel-7-server-e4s-satellite-tools-6.5-rpms/7Server/x86_64/primary_db                                                                                                   |  35 kB  00:00:00

https://cdn.redhat.com/content/eus/rhel/server/7/7Server/x86_64/sat-tools/6.6/os/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found

Trying other mirror.

rhel-7-server-eus-satellite-tools-6.3-rpms/7Server/x86_64                                                                                                              | 3.8 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.3-rpms/7Server/x86_64/group                                                                                                        |  124 B  00:00:00

rhel-7-server-eus-satellite-tools-6.3-rpms/7Server/x86_64/updateinfo                                                                                                   | 9.9 kB  00:00:00

rhel-7-server-eus-satellite-tools-6.3-rpms/7Server/x86_64/primary_db                                                                                                   |  41 kB  00:00:00

rhel-7-server-rhceph-3-tools-rpms/x86_64                                                                                                                               | 3.8 kB  00:00:00

rhel-7-server-rhceph-3-tools-rpms/x86_64/group                                                                                                                         |  124 B  00:00:00

rhel-7-server-rhceph-3-tools-rpms/x86_64/updateinfo                                                                                                                    |  83 kB  00:00:00

rhel-7-server-rhceph-3-tools-rpms/x86_64/primary_db                                                                                                                    | 369 kB  00:00:00

rhel-7-server-eus-supplementary-rpms/7Server/x86_64                                                                                                                    | 3.4 kB  00:00:00

rhel-7-server-eus-supplementary-rpms/7Server/x86_64/group                                                                                                              |  36 kB  00:00:00

rhel-7-server-eus-supplementary-rpms/7Server/x86_64/updateinfo                                                                                                         |  47 kB  00:00:00

rhel-7-server-eus-supplementary-rpms/7Server/x86_64/primary_db                                                                                                         | 215 kB  00:00:00

rhel-atomic-7-cdk-3.6-rpms/x86_64                                                                                                                                      | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.6-rpms/x86_64/group                                                                                                                                |  124 B  00:00:00

rhel-atomic-7-cdk-3.6-rpms/x86_64/updateinfo                                                                                                                           |   92 B  00:00:00

rhel-atomic-7-cdk-3.6-rpms/x86_64/primary_db                                                                                                                           | 1.3 kB  00:00:00

rhel-7-server-openstack-8-tools-rpms/7Server/x86_64                                                                                                                    | 3.8 kB  00:00:00

rhel-7-server-openstack-8-tools-rpms/7Server/x86_64/group                                                                                                              |  124 B  00:00:00

rhel-7-server-openstack-8-tools-rpms/7Server/x86_64/updateinfo                                                                                                         |  22 kB  00:00:00

rhel-7-server-openstack-8-tools-rpms/7Server/x86_64/primary_db                                                                                                         |  33 kB  00:00:00

rhel-7-server-rhceph-1.3-tools-rpms/7Server/x86_64                                                                                                                     | 3.8 kB  00:00:00

rhel-7-server-rhceph-1.3-tools-rpms/7Server/x86_64/group                                                                                                               |  124 B  00:00:00

rhel-7-server-rhceph-1.3-tools-rpms/7Server/x86_64/updateinfo                                                                                                          |  23 kB  00:00:00

rhel-7-server-rhceph-1.3-tools-rpms/7Server/x86_64/primary_db                                                                                                          |  93 kB  00:00:00

rhel-atomic-7-cdk-3.13-rpms/x86_64                                                                                                                                     | 3.7 kB  00:00:00

rhel-atomic-7-cdk-3.13-rpms/x86_64/group                                                                                                                               |  124 B  00:00:00

rhel-atomic-7-cdk-3.13-rpms/x86_64/updateinfo                                                                                                                          |   92 B  00:00:00

rhel-atomic-7-cdk-3.13-rpms/x86_64/primary_db                                                                                                                          | 1.4 kB  00:00:00

rhel-ha-for-rhel-7-server-e4s-rpms/7Server/x86_64                                                                                                                      | 4.0 kB  00:00:00

rhel-ha-for-rhel-7-server-e4s-rpms/7Server/x86_64/group                                                                                                                |  15 kB  00:00:00

rhel-ha-for-rhel-7-server-e4s-rpms/7Server/x86_64/updateinfo                                                                                                           | 101 kB  00:00:00

rhel-ha-for-rhel-7-server-e4s-rpms/7Server/x86_64/primary_db                                                                                                           | 459 kB  00:00:00

rhel-7-server-devtools-rpms/x86_64                                                                                                                                     | 4.0 kB  00:00:00

rhel-7-server-devtools-rpms/x86_64/group                                                                                                                               |  124 B  00:00:00

rhel-7-server-devtools-rpms/x86_64/updateinfo                                                                                                                          | 284 kB  00:00:00

rhel-7-server-devtools-rpms/x86_64/primary_db                                                                                                                          | 3.4 MB  00:00:00

rhel-7-server-supplementary-rpms/7Server/x86_64                                                                                                                        | 3.4 kB  00:00:00

rhel-7-server-supplementary-rpms/7Server/x86_64/group                                                                                                                  |  37 kB  00:00:00

rhel-7-server-supplementary-rpms/7Server/x86_64/updateinfo                                                                                                             |  80 kB  00:00:00

rhel-7-server-supplementary-rpms/7Server/x86_64/primary_db                                                                                                             | 366 kB  00:00:00

rhel-7-server-rt-rpms/7Server/x86_64                                                                                                                                   | 4.1 kB  00:00:00

rhel-7-server-rt-rpms/7Server/x86_64/group                                                                                                                             | 2.0 kB  00:00:00

rhel-7-server-rt-rpms/7Server/x86_64/updateinfo                                                                                                                        | 113 kB  00:00:00

rhel-7-server-rt-rpms/7Server/x86_64/primary_db                                                                                                                        |  33 MB  00:00:03

rhel-7-server-optional-rpms/7Server/x86_64                                                                                                                             | 3.2 kB  00:00:00

rhel-7-server-optional-rpms/7Server/x86_64/group                                                                                                                       |  22 kB  00:00:00

rhel-7-server-optional-rpms/7Server/x86_64/updateinfo                                                                                                                  | 2.7 MB  00:00:00

rhel-7-server-optional-rpms/7Server/x86_64/primary_db                                                                                                                  | 9.1 MB  00:00:00

https://cdn.redhat.com/content/eus/rhel/server/7/7Server/x86_64/sat-tools/6.7/os/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found

Trying other mirror.

--> Running transaction check

---> Package oracle-database-preinstall-19c.x86_64 0:1.0-1.el7 will be installed

--> Processing Dependency: compat-libstdc++-33 for package: oracle-database-preinstall-19c-1.0-1.el7.x86_64

--> Running transaction check

---> Package compat-libstdc++-33.x86_64 0:3.2.3-72.el7 will be installed

--> Finished Dependency Resolution


Dependencies Resolved


==============================================================================================================================================================================================

 Package                                           Arch                      Version                                Repository                                                           Size

==============================================================================================================================================================================================

Installing:

 oracle-database-preinstall-19c                    x86_64                    1.0-1.el7                              /oracle-database-preinstall-19c-1.0-1.el7.x86_64                     55 k

Installing for dependencies:

 compat-libstdc++-33                               x86_64                    3.2.3-72.el7                           rhel-7-server-e4s-optional-rpms                                     191 k

 ksh                                               x86_64                    20120801-142.el7                       rhel-7-server-rpms                                                  884 k

 libaio-devel                                      x86_64                    0.3.109-13.el7                         rhel-7-server-rpms                                                   13 k


Transaction Summary

==============================================================================================================================================================================================

Install  1 Package (+3 Dependent packages)


Total size: 1.1 M

Total download size: 1.1 M

Installed size: 4.0 M

Downloading packages:

(1/3): libaio-devel-0.3.109-13.el7.x86_64.rpm                                                                                                                          |  13 kB  00:00:00

(2/3): ksh-20120801-142.el7.x86_64.rpm                                                                                                                                 | 884 kB  00:00:00

(3/3): compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm                                                                                                                     | 191 kB  00:00:01

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Total                                                                                                                                                         685 kB/s | 1.1 MB  00:00:01

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

  Installing : compat-libstdc++-33-3.2.3-72.el7.x86_64                                                                                                                                    1/4

  Installing : ksh-20120801-142.el7.x86_64                                                                                                                                                2/4

  Installing : libaio-devel-0.3.109-13.el7.x86_64                                                                                                                                         3/4

  Installing : oracle-database-preinstall-19c-1.0-1.el7.x86_64                                                                                                                            4/4

rh-gluster-3-client-for-rhel-7-server-rpms/7Server/x86_64/productid                                                                                                    | 2.1 kB  00:00:00

rhel-7-server-ansible-2-rpms/x86_64/productid                                                                                                                          | 2.1 kB  00:00:00

rhel-7-server-ansible-2.4-rpms/x86_64/productid                                                                                                                        | 2.1 kB  00:00:00

rhel-7-server-ansible-2.5-rpms/x86_64/productid                                                                                                                        | 2.1 kB  00:00:00

rhel-7-server-ansible-2.6-rpms/x86_64/productid                                                                                                                        | 2.1 kB  00:00:00

rhel-7-server-ansible-2.7-rpms/x86_64/productid                                                                                                                        | 2.1 kB  00:00:00

rhel-7-server-ansible-2.8-rpms/x86_64/productid                                                                                                                        | 2.1 kB  00:00:00

rhel-7-server-ansible-2.9-rpms/x86_64/productid                                                                                                                        | 2.1 kB  00:00:00

rhel-7-server-devtools-rpms/x86_64/productid                                                                                                                           | 2.1 kB  00:00:00

rhel-7-server-dotnet-rpms/7Server/x86_64/productid                                                                                                                     | 2.1 kB  00:00:00

rhel-7-server-e4s-rpms/7Server/x86_64/productid                                                                                                                        | 2.2 kB  00:00:00

rhel-7-server-eus-rpms/7Server/x86_64/productid                                                                                                                        | 2.2 kB  00:00:00

rhel-7-server-eus-supplementary-rpms/7Server/x86_64/productid                                                                                                          | 2.1 kB  00:00:00

rhel-7-server-eus-thirdparty-oracle-java-rpms/7Server/x86_64/productid                                                                                                 | 2.1 kB  00:00:00

rhel-7-server-rhceph-2-tools-rpms/7Server/x86_64/productid                                                                                                             | 2.1 kB  00:00:00

rhel-7-server-rt-rpms/7Server/x86_64/productid                                                                                                                         | 2.1 kB  00:00:00

rhel-7-server-supplementary-rpms/7Server/x86_64/productid                                                                                                              | 2.1 kB  00:00:00

rhel-ha-for-rhel-7-server-e4s-rpms/7Server/x86_64/productid                                                                                                            | 2.2 kB  00:00:00

rhel-ha-for-rhel-7-server-eus-rpms/7Server/x86_64/productid                                                                                                            | 2.2 kB  00:00:00

rhel-ha-for-rhel-7-server-rpms/7Server/x86_64/productid                                                                                                                | 2.2 kB  00:00:00

rhel-rs-for-rhel-7-server-eus-rpms/7Server/x86_64/productid                                                                                                            | 2.2 kB  00:00:00

rhel-rs-for-rhel-7-server-rpms/7Server/x86_64/productid                                                                                                                | 2.2 kB  00:00:00

rhel-sap-for-rhel-7-server-e4s-rpms/7Server/x86_64/productid                                                                                                           | 2.1 kB  00:00:00

rhel-sap-for-rhel-7-server-eus-rpms/7Server/x86_64/productid                                                                                                           | 2.1 kB  00:00:00

rhel-sap-for-rhel-7-server-rpms/7Server/x86_64/productid                                                                                                               | 2.2 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-e4s-rpms/7Server/x86_64/productid                                                                                                      | 2.2 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-eus-rpms/7Server/x86_64/productid                                                                                                      | 2.1 kB  00:00:00

rhel-sap-hana-for-rhel-7-server-rpms/7Server/x86_64/productid                                                                                                          | 2.2 kB  00:00:00

rhel-server-rhscl-7-eus-rpms/7Server/x86_64/productid                                                                                                                  | 2.1 kB  00:00:00

rhel-server-rhscl-7-rpms/7Server/x86_64/productid                                                                                                                      | 2.1 kB  00:00:00

  Verifying  : libaio-devel-0.3.109-13.el7.x86_64                                                                                                                                         1/4

  Verifying  : oracle-database-preinstall-19c-1.0-1.el7.x86_64                                                                                                                            2/4

  Verifying  : ksh-20120801-142.el7.x86_64                                                                                                                                                3/4

  Verifying  : compat-libstdc++-33-3.2.3-72.el7.x86_64                                                                                                                                    4/4

*******************************************************************

Dependency resolving was successful thanks to enabling these repositories:

rhel-7-server-e4s-optional-rpms

/oracle-database-preinstall-19c-1.0-1.el7.x86_64

*******************************************************************



Installed:

  oracle-database-preinstall-19c.x86_64 0:1.0-1.el7


Dependency Installed:

  compat-libstdc++-33.x86_64 0:3.2.3-72.el7                           ksh.x86_64 0:20120801-142.el7                           libaio-devel.x86_64 0:0.3.109-13.el7


Complete!