Updating OCI DB Systems (Operating System)

Atualizar a camada de DB System, em termos práticos, contempla a camada de Sistema Operacional e GRID. Neste artigo, vamos focar no S.O e nas etapas necessárias para a sua execução.

Validando se nosso banco de dados está operando:

[opc@luxor ~]$ sudo su - oracle
Last login: Sun May 30 09:01:58 UTC 2021
[oracle@luxor ~]$ srvctl status database -db $ORACLE_UNQNAME
Instance CORTEX is running on node luxor
[oracle@luxor ~]$

Baixando o banco de dados:

[oracle@luxor ~]$ srvctl stop database -db $ORACLE_UNQNAME -stopoption immediate -verbose
[oracle@luxor ~]$ srvctl status database -db $ORACLE_UNQNAME
Instance CORTEX is not running on node luxor

Logando como root e validando a versão vigente da camada de Sistema Operacional:

[oracle@luxor ~]$ exit
logout
[opc@luxor ~]$ sudo su -
Last login: Sun May 30 09:00:02 UTC 2021
[root@luxor ~]# uname -r
4.1.12-124.43.4.el7uek.x86_64
[root@luxor ~]#

Algumas etapas exigirão que saibamos o “regionIdentifier”, que conseguimos coletar com o seguinte comando:

[root@luxor ~]# curl -s http://169.254.169.254/opc/v1/instance/ | grep region
  "region" : "phx",
  "regionInfo" : {
    "regionKey" : "PHX",
    "regionIdentifier" : "us-phoenix-1"

Precisamos fazer o download de 2 arquivos (um de repo e outro de lock), onde substituimos o “<region_name>” pelo valor coletado na etapa acima:

wget https://swiftobjectstorage<region_name>.oraclecloud.com/v1/dbaaspatchstore/DBaaSOSPatches/oci_dbaas_ol7repo -O /tmp/oci_dbaas_ol7repo 
 
wget https://swiftobjectstorage<region_name>.oraclecloud.com/v1/dbaaspatchstore/DBaaSOSPatches/versionlock_ol7.list -O /tmp/versionlock.list

Em meu caso, o Log de execução foi:

[root@luxor ~]# wget https://swiftobjectstorage.us-phoenix-1.oraclecloud.com/v1/dbaaspatchstore/DBaaSOSPatches/oci_dbaas_ol7repo -O /tmp/oci_dbaas_ol7repo
--2021-05-30 09:09:41--  https://swiftobjectstorage.us-phoenix-1.oraclecloud.com/v1/dbaaspatchstore/DBaaSOSPatches/oci_dbaas_ol7repo
Resolving swiftobjectstorage.us-phoenix-1.oraclecloud.com (swiftobjectstorage.us-phoenix-1.oraclecloud.com)... 134.70.12.1, 134.70.16.1, 134.70.8.1
Connecting to swiftobjectstorage.us-phoenix-1.oraclecloud.com (swiftobjectstorage.us-phoenix-1.oraclecloud.com)|134.70.12.1|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 957 [application/octet-stream]
Saving to: '/tmp/oci_dbaas_ol7repo'
 
100%[=====================================================================================================>] 957         --.-K/s   in 0s
 
2021-05-30 09:09:41 (32.8 MB/s) - '/tmp/oci_dbaas_ol7repo' saved [957/957]
 
[root@luxor ~]#
[root@luxor ~]# wget https://swiftobjectstorage.us-phoenix-1.oraclecloud.com/v1/dbaaspatchstore/DBaaSOSPatches/versionlock_ol7.list -O /tmp/versionlock.list
--2021-05-30 09:09:53--  https://swiftobjectstorage.us-phoenix-1.oraclecloud.com/v1/dbaaspatchstore/DBaaSOSPatches/versionlock_ol7.list
Resolving swiftobjectstorage.us-phoenix-1.oraclecloud.com (swiftobjectstorage.us-phoenix-1.oraclecloud.com)... 134.70.16.1, 134.70.8.1, 134.70.12.1
Connecting to swiftobjectstorage.us-phoenix-1.oraclecloud.com (swiftobjectstorage.us-phoenix-1.oraclecloud.com)|134.70.16.1|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 15209 (15K) [application/octet-stream]
Saving to: '/tmp/versionlock.list'
 
100%[=====================================================================================================>] 15,209      --.-K/s   in 0.003s
 
2021-05-30 09:09:53 (4.79 MB/s) - '/tmp/versionlock.list' saved [15209/15209]

Agora podemos os arquivos para suas localizações internas no diretório do YUM:

[root@luxor ~]# cp /tmp/oci_dbaas_ol7repo /etc/yum.repos.d/ol7.repo
[root@luxor ~]#

Fazendo um backup do atual arquivo de lock para sobrescrevê-lo:

[root@luxor ~]# cp /etc/yum/pluginconf.d/versionlock.list /etc/yum/pluginconf.d/versionlock.list-30052021
[root@luxor ~]# ls -lthr /etc/yum/pluginconf.d/versionlock.list-30052021
-rw-r--r-- 1 root root 15K May 30 09:13 /etc/yum/pluginconf.d/versionlock.list-30052021
[root@luxor ~]# cp /tmp/versionlock.list /etc/yum/pluginconf.d/versionlock.list
cp: overwrite '/etc/yum/pluginconf.d/versionlock.list'? yes
[root@luxor ~]# ls -lthr /etc/yum/pluginconf.d/versionlock.list
-rw-r--r-- 1 root root 15K May 30 09:14 /etc/yum/pluginconf.d/versionlock.list

Com o utilitário DB CLI, podemos realizar um check do update antes de dispará-lo:

[root@luxor ~]# dbcli update-server -precheck
Missing/invalid Arguments
Please refer usage: dbcli update-server -h
[root@luxor ~]# dbcli update-server --precheck
{
  "jobId" : "eb726839-1985-44e4-ba2b-a0cd7bf0366d",
  "status" : "Created",
  "message" : null,
  "reports" : [ ],
  "createTimestamp" : "May 30, 2021 09:17:26 AM UTC",
  "resourceList" : [ ],
  "description" : "Server Patching Prechecks",
  "updatedTime" : "May 30, 2021 09:17:26 AM UTC",
  "percentageProgress" : "0%"
}

Após a criação do JOB, podemos ir acompanhando a sua evolução conforme o comando abaixo, passando o seu ID:

[root@luxor ~]# dbcli describe-job -i "eb726839-1985-44e4-ba2b-a0cd7bf0366d"
 
Job details
----------------------------------------------------------------
                     ID:  eb726839-1985-44e4-ba2b-a0cd7bf0366d
            Description:  Server Patching Prechecks
                 Status:  Running
                Created:  May 30, 2021 9:17:26 AM UTC
               Progress:  1%
                Message:
 
Task Name                                                                Start Time                          End Time                            Status
------------------------------------------------------------------------ ----------------------------------- ----------------------------------- ----------
Pre-operations for Server Patching                                       May 30, 2021 9:17:26 AM UTC         May 30, 2021 9:18:34 AM UTC         Success
Server Patching                                                          May 30, 2021 9:18:34 AM UTC         May 30, 2021 9:18:34 AM UTC         Running

Sucesso do processo de check:

[root@luxor ~]# dbcli describe-job -i "eb726839-1985-44e4-ba2b-a0cd7bf0366d"
 
Job details
----------------------------------------------------------------
                     ID:  eb726839-1985-44e4-ba2b-a0cd7bf0366d
            Description:  Server Patching Prechecks
                 Status:  Success
                Created:  May 30, 2021 9:17:26 AM UTC
               Progress:  100%
                Message:
 
Task Name                                                                Start Time                          End Time                            Status
------------------------------------------------------------------------ ----------------------------------- ----------------------------------- ----------
Pre-operations for Server Patching                                       May 30, 2021 9:17:26 AM UTC         May 30, 2021 9:18:34 AM UTC         Success
Server Patching                                                          May 30, 2021 9:18:34 AM UTC         May 30, 2021 9:22:45 AM UTC         Success

Podemos realizar o YUM Update conforme abaixo:

[root@luxor ~]# yum update
Loaded plugins: versionlock
ol7_UEKR4                                                                                                                | 2.5 kB  00:00:00
ol7_UEKR4_archive                                                                                                        | 2.5 kB  00:00:00
ol7_latest                                                                                                               | 2.7 kB  00:00:00
ol7_latest_archive                                                                                                       | 2.5 kB  00:00:00
(1/9): ol7_UEKR4/x86_64/updateinfo                                                                                       |  94 kB  00:00:00
(2/9): ol7_latest/x86_64/group                                                                                           | 660 kB  00:00:00
(3/9): ol7_UEKR4_archive/x86_64/updateinfo                                                                               | 267 kB  00:00:00
(4/9): ol7_latest/x86_64/updateinfo                                                                                      | 3.2 MB  00:00:00
(5/9): ol7_latest_archive/x86_64/updateinfo                                                                              | 1.8 MB  00:00:00
(6/9): ol7_UEKR4/x86_64/primary_db                                                                                       |  10 MB  00:00:00
(7/9): ol7_latest/x86_64/primary_db                                                                                      |  35 MB  00:00:00
(8/9): ol7_latest_archive/x86_64/primary_db                                                                              |  60 MB  00:00:01
(9/9): ol7_UEKR4_archive/x86_64/primary_db                                                                               | 101 MB  00:00:01
Excluding 41 updates due to versionlock (use "yum versionlock status" to show them)
Resolving Dependencies
--> Running transaction check
---> Package bind.x86_64 32:9.11.4-26.P2.el7 will be updated
---> Package bind.x86_64 32:9.11.4-26.P2.el7_9.5 will be an update
---> Package bind-export-libs.x86_64 32:9.11.4-26.P2.el7 will be updated
---> Package bind-export-libs.x86_64 32:9.11.4-26.P2.el7_9.5 will be an update
---> Package bind-libs.x86_64 32:9.11.4-26.P2.el7 will be updated
---> Package bind-libs.x86_64 32:9.11.4-26.P2.el7_9.5 will be an update
---> Package bind-libs-lite.x86_64 32:9.11.4-26.P2.el7 will be updated
---> Package bind-libs-lite.x86_64 32:9.11.4-26.P2.el7_9.5 will be an update
---> Package bind-license.noarch 32:9.11.4-26.P2.el7 will be updated
---> Package bind-license.noarch 32:9.11.4-26.P2.el7_9.5 will be an update
---> Package bind-utils.x86_64 32:9.11.4-26.P2.el7 will be updated
---> Package bind-utils.x86_64 32:9.11.4-26.P2.el7_9.5 will be an update
---> Package binutils.x86_64 0:2.27-44.base.0.1.el7 will be updated
---> Package binutils.x86_64 0:2.27-44.base.0.3.el7 will be an update
---> Package coreutils.x86_64 0:8.22-24.0.1.el7 will be updated
---> Package coreutils.x86_64 0:8.22-24.0.1.el7_9.2 will be an update
---> Package curl.x86_64 0:7.29.0-59.0.1.el7 will be updated
---> Package curl.x86_64 0:7.29.0-59.0.1.el7_9.1 will be an update
---> Package device-mapper.x86_64 7:1.02.170-6.0.3.el7 will be updated
---> Package device-mapper.x86_64 7:1.02.170-6.0.3.el7_9.3 will be an update
---> Package device-mapper-event.x86_64 7:1.02.170-6.0.3.el7 will be updated
---> Package device-mapper-event.x86_64 7:1.02.170-6.0.3.el7_9.3 will be an update
---> Package device-mapper-event-libs.x86_64 7:1.02.170-6.0.3.el7 will be updated
---> Package device-mapper-event-libs.x86_64 7:1.02.170-6.0.3.el7_9.3 will be an update
---> Package device-mapper-libs.x86_64 7:1.02.170-6.0.3.el7 will be updated
---> Package device-mapper-libs.x86_64 7:1.02.170-6.0.3.el7_9.3 will be an update
---> Package device-mapper-multipath.x86_64 0:0.4.9-133.0.1.el7 will be updated
---> Package device-mapper-multipath.x86_64 0:0.4.9-134.0.1.el7_9 will be an update
---> Package device-mapper-multipath-libs.x86_64 0:0.4.9-133.0.1.el7 will be updated
---> Package device-mapper-multipath-libs.x86_64 0:0.4.9-134.0.1.el7_9 will be an update
---> Package device-mapper-persistent-data.x86_64 0:0.8.5-3.el7 will be updated
---> Package device-mapper-persistent-data.x86_64 0:0.8.5-3.el7_9.2 will be an update
---> Package dracut.x86_64 0:033-572.0.1.el7 will be updated
---> Package dracut.x86_64 0:033-572.0.3.el7 will be an update
---> Package dracut-fips.x86_64 0:033-572.0.1.el7 will be updated
---> Package dracut-fips.x86_64 0:033-572.0.3.el7 will be an update
---> Package dracut-fips-aesni.x86_64 0:033-572.0.1.el7 will be updated
---> Package dracut-fips-aesni.x86_64 0:033-572.0.3.el7 will be an update
---> Package dracut-network.x86_64 0:033-572.0.1.el7 will be updated
---> Package dracut-network.x86_64 0:033-572.0.3.el7 will be an update
---> Package freetype.x86_64 0:2.8-14.el7 will be updated
---> Package freetype.x86_64 0:2.8-14.el7_9.1 will be an update
---> Package glib2.x86_64 0:2.56.1-7.el7 will be updated
---> Package glib2.x86_64 0:2.56.1-8.el7 will be an update
---> Package glibc.i686 0:2.17-317.0.1.el7 will be updated
---> Package glibc.x86_64 0:2.17-317.0.1.el7 will be updated
---> Package glibc.i686 0:2.17-322.0.1.el7_9 will be an update
---> Package glibc.x86_64 0:2.17-322.0.1.el7_9 will be an update
---> Package glibc-common.x86_64 0:2.17-317.0.1.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-322.0.1.el7_9 will be an update
---> Package glibc-devel.x86_64 0:2.17-317.0.1.el7 will be updated
---> Package glibc-devel.x86_64 0:2.17-322.0.1.el7_9 will be an update
---> Package glibc-headers.x86_64 0:2.17-317.0.1.el7 will be updated
---> Package glibc-headers.x86_64 0:2.17-322.0.1.el7_9 will be an update
---> Package grub2.x86_64 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2.x86_64 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-common.noarch 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-common.noarch 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-efi-x64.x86_64 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-efi-x64.x86_64 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-pc.x86_64 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-pc.x86_64 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-pc-modules.noarch 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-pc-modules.noarch 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-tools.x86_64 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-tools.x86_64 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-tools-extra.x86_64 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-tools-extra.x86_64 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package grub2-tools-minimal.x86_64 1:2.02-0.87.0.1.el7 will be updated
---> Package grub2-tools-minimal.x86_64 1:2.02-0.87.0.9.el7_9.6 will be an update
---> Package initscripts.x86_64 0:9.49.53-1.0.1.el7 will be updated
---> Package initscripts.x86_64 0:9.49.53-1.0.1.el7_9.1 will be an update
---> Package iscsi-initiator-utils.x86_64 0:6.2.0.874-19.0.1.el7 will be updated
---> Package iscsi-initiator-utils.x86_64 0:6.2.0.874-20.0.1.el7_9 will be an update
---> Package iscsi-initiator-utils-iscsiuio.x86_64 0:6.2.0.874-19.0.1.el7 will be updated
---> Package iscsi-initiator-utils-iscsiuio.x86_64 0:6.2.0.874-20.0.1.el7_9 will be an update
---> Package kernel-devel.x86_64 0:3.10.0-1160.24.1.el7 will be installed
---> Package kernel-headers.x86_64 0:3.10.0-1160.2.1.el7 will be updated
---> Package kernel-headers.x86_64 0:3.10.0-1160.24.1.el7 will be an update
---> Package kernel-uek.x86_64 0:4.1.12-124.50.2.el7uek will be installed
---> Package kernel-uek-firmware.noarch 0:4.1.12-124.50.2.el7uek will be installed
---> Package kexec-tools.x86_64 0:2.0.15-51.0.1.el7 will be updated
---> Package kexec-tools.x86_64 0:2.0.15-51.0.3.el7_9.1 will be an update
---> Package kpartx.x86_64 0:0.4.9-133.0.1.el7 will be updated
---> Package kpartx.x86_64 0:0.4.9-134.0.1.el7_9 will be an update
---> Package libX11.x86_64 0:1.6.7-2.el7 will be updated
---> Package libX11.x86_64 0:1.6.7-3.el7_9 will be an update
---> Package libX11-common.noarch 0:1.6.7-2.el7 will be updated
---> Package libX11-common.noarch 0:1.6.7-3.el7_9 will be an update
---> Package libblkid.x86_64 0:2.23.2-65.0.1.el7 will be updated
---> Package libblkid.x86_64 0:2.23.2-65.0.1.el7_9.1 will be an update
---> Package libcurl.x86_64 0:7.29.0-59.0.1.el7 will be updated
---> Package libcurl.x86_64 0:7.29.0-59.0.1.el7_9.1 will be an update
---> Package libgudev1.x86_64 0:219-78.0.1.el7 will be updated
---> Package libgudev1.x86_64 0:219-78.0.1.el7_9.3 will be an update
---> Package libipa_hbac.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package libipa_hbac.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package libldb.x86_64 0:1.5.4-1.el7 will be updated
---> Package libldb.x86_64 0:1.5.4-2.el7_9 will be an update
---> Package libmount.x86_64 0:2.23.2-65.0.1.el7 will be updated
---> Package libmount.x86_64 0:2.23.2-65.0.1.el7_9.1 will be an update
---> Package libsmartcols.x86_64 0:2.23.2-65.0.1.el7 will be updated
---> Package libsmartcols.x86_64 0:2.23.2-65.0.1.el7_9.1 will be an update
---> Package libsmbclient.x86_64 0:4.10.16-7.el7_9 will be updated
---> Package libsmbclient.x86_64 0:4.10.16-9.el7_9 will be an update
---> Package libsss_autofs.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package libsss_autofs.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package libsss_certmap.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package libsss_certmap.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package libsss_idmap.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package libsss_idmap.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package libsss_nss_idmap.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package libsss_nss_idmap.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package libsss_sudo.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package libsss_sudo.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package libuuid.i686 0:2.23.2-65.0.1.el7 will be updated
---> Package libuuid.x86_64 0:2.23.2-65.0.1.el7 will be updated
---> Package libuuid.i686 0:2.23.2-65.0.1.el7_9.1 will be an update
---> Package libuuid.x86_64 0:2.23.2-65.0.1.el7_9.1 will be an update
---> Package libwbclient.x86_64 0:4.10.16-7.el7_9 will be updated
---> Package libwbclient.x86_64 0:4.10.16-9.el7_9 will be an update
---> Package lvm2.x86_64 7:2.02.187-6.0.3.el7 will be updated
---> Package lvm2.x86_64 7:2.02.187-6.0.3.el7_9.3 will be an update
---> Package lvm2-libs.x86_64 7:2.02.187-6.0.3.el7 will be updated
---> Package lvm2-libs.x86_64 7:2.02.187-6.0.3.el7_9.3 will be an update
---> Package mokutil.x86_64 0:15-2.0.9.el7 will be updated
---> Package mokutil.x86_64 0:15.3-1.0.5.el7 will be an update
---> Package nettle.x86_64 0:2.7.1-8.el7 will be updated
---> Package nettle.x86_64 0:2.7.1-9.el7_9 will be an update
---> Package nss.x86_64 0:3.53.1-3.el7_9 will be updated
---> Package nss.x86_64 0:3.53.1-7.el7_9 will be an update
---> Package nss-sysinit.x86_64 0:3.53.1-3.el7_9 will be updated
---> Package nss-sysinit.x86_64 0:3.53.1-7.el7_9 will be an update
---> Package nss-tools.x86_64 0:3.53.1-3.el7_9 will be updated
---> Package nss-tools.x86_64 0:3.53.1-7.el7_9 will be an update
---> Package openldap.x86_64 0:2.4.44-22.el7 will be updated
---> Package openldap.x86_64 0:2.4.44-23.el7_9 will be an update
---> Package openssl.x86_64 1:1.0.2k-19.0.1.el7 will be updated
---> Package openssl.x86_64 1:1.0.2k-21.el7_9 will be an update
---> Package openssl-libs.x86_64 1:1.0.2k-19.0.1.el7 will be updated
---> Package openssl-libs.x86_64 1:1.0.2k-21.el7_9 will be an update
---> Package perl.x86_64 4:5.16.3-297.el7 will be updated
---> Package perl.x86_64 4:5.16.3-299.el7_9 will be an update
---> Package perl-IO-Zlib.noarch 1:1.10-297.el7 will be updated
---> Package perl-IO-Zlib.noarch 1:1.10-299.el7_9 will be an update
---> Package perl-Pod-Escapes.noarch 1:1.04-297.el7 will be updated
---> Package perl-Pod-Escapes.noarch 1:1.04-299.el7_9 will be an update
---> Package perl-libs.x86_64 4:5.16.3-297.el7 will be updated
---> Package perl-libs.x86_64 4:5.16.3-299.el7_9 will be an update
---> Package perl-macros.x86_64 4:5.16.3-297.el7 will be updated
---> Package perl-macros.x86_64 4:5.16.3-299.el7_9 will be an update
---> Package python.x86_64 0:2.7.5-89.0.1.el7 will be updated
---> Package python.x86_64 0:2.7.5-90.0.3.el7 will be an update
---> Package python-libs.x86_64 0:2.7.5-89.0.1.el7 will be updated
---> Package python-libs.x86_64 0:2.7.5-90.0.3.el7 will be an update
---> Package python-sssdconfig.noarch 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package python-sssdconfig.noarch 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package samba-client-libs.x86_64 0:4.10.16-7.el7_9 will be updated
---> Package samba-client-libs.x86_64 0:4.10.16-9.el7_9 will be an update
---> Package samba-common.noarch 0:4.10.16-7.el7_9 will be updated
---> Package samba-common.noarch 0:4.10.16-9.el7_9 will be an update
---> Package samba-common-libs.x86_64 0:4.10.16-7.el7_9 will be updated
---> Package samba-common-libs.x86_64 0:4.10.16-9.el7_9 will be an update
---> Package screen.x86_64 0:4.1.0-0.26.20120314git3c2946.el7 will be updated
---> Package screen.x86_64 0:4.1.0-0.27.20120314git3c2946.el7_9 will be an update
---> Package selinux-policy.noarch 0:3.13.1-268.0.1.el7 will be updated
---> Package selinux-policy.noarch 0:3.13.1-268.0.1.el7_9.2 will be an update
---> Package selinux-policy-targeted.noarch 0:3.13.1-268.0.1.el7 will be updated
---> Package selinux-policy-targeted.noarch 0:3.13.1-268.0.1.el7_9.2 will be an update
---> Package shim-x64.x86_64 0:15-2.0.9.el7 will be updated
---> Package shim-x64.x86_64 0:15.3-1.0.5.el7 will be an update
---> Package sos.noarch 0:3.9-4.0.1.el7_9 will be updated
---> Package sos.noarch 0:3.9-5.0.3.el7_9.2 will be an update
---> Package sssd.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-ad.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-ad.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-client.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-client.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-common.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-common.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-common-pac.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-common-pac.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-ipa.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-ipa.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-krb5.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-krb5.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-krb5-common.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-krb5-common.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-ldap.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-ldap.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sssd-proxy.x86_64 0:1.16.5-10.0.1.el7_9.5 will be updated
---> Package sssd-proxy.x86_64 0:1.16.5-10.0.1.el7_9.7 will be an update
---> Package sudo.x86_64 0:1.8.23-10.el7 will be updated
---> Package sudo.x86_64 0:1.8.23-10.el7_9.1 will be an update
---> Package systemd.x86_64 0:219-78.0.1.el7 will be updated
---> Package systemd.x86_64 0:219-78.0.1.el7_9.3 will be an update
---> Package systemd-libs.x86_64 0:219-78.0.1.el7 will be updated
---> Package systemd-libs.x86_64 0:219-78.0.1.el7_9.3 will be an update
---> Package systemd-sysv.x86_64 0:219-78.0.1.el7 will be updated
---> Package systemd-sysv.x86_64 0:219-78.0.1.el7_9.3 will be an update
---> Package tcsh.x86_64 0:6.18.01-17.el7 will be updated
---> Package tcsh.x86_64 0:6.18.01-17.el7_9.1 will be an update
---> Package tzdata.noarch 0:2020a-1.el7 will be updated
---> Package tzdata.noarch 0:2021a-1.el7 will be an update
---> Package tzdata-java.noarch 0:2020a-1.el7 will be updated
---> Package tzdata-java.noarch 0:2021a-1.el7 will be an update
---> Package util-linux.x86_64 0:2.23.2-65.0.1.el7 will be updated
---> Package util-linux.x86_64 0:2.23.2-65.0.1.el7_9.1 will be an update
---> Package vim-common.x86_64 2:7.4.629-7.0.1.el7 will be updated
---> Package vim-common.x86_64 2:7.4.629-8.0.1.el7_9 will be an update
---> Package vim-enhanced.x86_64 2:7.4.629-7.0.1.el7 will be updated
---> Package vim-enhanced.x86_64 2:7.4.629-8.0.1.el7_9 will be an update
---> Package vim-filesystem.x86_64 2:7.4.629-7.0.1.el7 will be updated
---> Package vim-filesystem.x86_64 2:7.4.629-8.0.1.el7_9 will be an update
---> Package vim-minimal.x86_64 2:7.4.629-7.0.1.el7 will be updated
---> Package vim-minimal.x86_64 2:7.4.629-8.0.1.el7_9 will be an update
---> Package zlib.i686 0:1.2.7-18.el7 will be updated
---> Package zlib.x86_64 0:1.2.7-18.el7 will be updated
---> Package zlib.i686 0:1.2.7-19.el7_9 will be an update
---> Package zlib.x86_64 0:1.2.7-19.el7_9 will be an update
--> Finished Dependency Resolution
 
Dependencies Resolved
 
================================================================================================================================================
 Package                                     Arch                Version                                          Repository               Size
================================================================================================================================================
Installing:
 kernel-devel                                x86_64              3.10.0-1160.24.1.el7                             ol7_latest               18 M
 kernel-uek                                  x86_64              4.1.12-124.50.2.el7uek                           ol7_UEKR4                45 M
 kernel-uek-firmware                         noarch              4.1.12-124.50.2.el7uek                           ol7_UEKR4               2.6 M
Updating:
 bind                                        x86_64              32:9.11.4-26.P2.el7_9.5                          ol7_latest              2.3 M
 bind-export-libs                            x86_64              32:9.11.4-26.P2.el7_9.5                          ol7_latest              1.1 M
 bind-libs                                   x86_64              32:9.11.4-26.P2.el7_9.5                          ol7_latest              156 k
 bind-libs-lite                              x86_64              32:9.11.4-26.P2.el7_9.5                          ol7_latest              1.1 M
 bind-license                                noarch              32:9.11.4-26.P2.el7_9.5                          ol7_latest               90 k
 bind-utils                                  x86_64              32:9.11.4-26.P2.el7_9.5                          ol7_latest              260 k
 binutils                                    x86_64              2.27-44.base.0.3.el7                             ol7_latest              5.3 M
 coreutils                                   x86_64              8.22-24.0.1.el7_9.2                              ol7_latest              3.3 M
 curl                                        x86_64              7.29.0-59.0.1.el7_9.1                            ol7_latest              271 k
 device-mapper                               x86_64              7:1.02.170-6.0.3.el7_9.3                         ol7_latest              297 k
 device-mapper-event                         x86_64              7:1.02.170-6.0.3.el7_9.3                         ol7_latest              192 k
 device-mapper-event-libs                    x86_64              7:1.02.170-6.0.3.el7_9.3                         ol7_latest              191 k
 device-mapper-libs                          x86_64              7:1.02.170-6.0.3.el7_9.3                         ol7_latest              325 k
 device-mapper-multipath                     x86_64              0.4.9-134.0.1.el7_9                              ol7_latest              148 k
 device-mapper-multipath-libs                x86_64              0.4.9-134.0.1.el7_9                              ol7_latest              267 k
 device-mapper-persistent-data               x86_64              0.8.5-3.el7_9.2                                  ol7_latest              422 k
 dracut                                      x86_64              033-572.0.3.el7                                  ol7_latest              331 k
 dracut-fips                                 x86_64              033-572.0.3.el7                                  ol7_latest               64 k
 dracut-fips-aesni                           x86_64              033-572.0.3.el7                                  ol7_latest               68 k
 dracut-network                              x86_64              033-572.0.3.el7                                  ol7_latest              106 k
 freetype                                    x86_64              2.8-14.el7_9.1                                   ol7_latest              380 k
 glib2                                       x86_64              2.56.1-8.el7                                     ol7_latest              2.5 M
 glibc                                       i686                2.17-322.0.1.el7_9                               ol7_latest              4.3 M
 glibc                                       x86_64              2.17-322.0.1.el7_9                               ol7_latest              3.6 M
 glibc-common                                x86_64              2.17-322.0.1.el7_9                               ol7_latest               12 M
 glibc-devel                                 x86_64              2.17-322.0.1.el7_9                               ol7_latest              1.1 M
 glibc-headers                               x86_64              2.17-322.0.1.el7_9                               ol7_latest              693 k
 grub2                                       x86_64              1:2.02-0.87.0.9.el7_9.6                          ol7_latest               34 k
 grub2-common                                noarch              1:2.02-0.87.0.9.el7_9.6                          ol7_latest              733 k
 grub2-efi-x64                               x86_64              1:2.02-0.87.0.9.el7_9.6                          ol7_latest              1.1 M
 grub2-pc                                    x86_64              1:2.02-0.87.0.9.el7_9.6                          ol7_latest               34 k
 grub2-pc-modules                            noarch              1:2.02-0.87.0.9.el7_9.6                          ol7_latest              858 k
 grub2-tools                                 x86_64              1:2.02-0.87.0.9.el7_9.6                          ol7_latest              1.8 M
 grub2-tools-extra                           x86_64              1:2.02-0.87.0.9.el7_9.6                          ol7_latest              1.0 M
 grub2-tools-minimal                         x86_64              1:2.02-0.87.0.9.el7_9.6                          ol7_latest              177 k
 initscripts                                 x86_64              9.49.53-1.0.1.el7_9.1                            ol7_latest              443 k
 iscsi-initiator-utils                       x86_64              6.2.0.874-20.0.1.el7_9                           ol7_latest              429 k
 iscsi-initiator-utils-iscsiuio              x86_64              6.2.0.874-20.0.1.el7_9                           ol7_latest               95 k
 kernel-headers                              x86_64              3.10.0-1160.24.1.el7                             ol7_latest              9.0 M
 kexec-tools                                 x86_64              2.0.15-51.0.3.el7_9.1                            ol7_latest              355 k
 kpartx                                      x86_64              0.4.9-134.0.1.el7_9                              ol7_latest               80 k
 libX11                                      x86_64              1.6.7-3.el7_9                                    ol7_latest              606 k
 libX11-common                               noarch              1.6.7-3.el7_9                                    ol7_latest              164 k
 libblkid                                    x86_64              2.23.2-65.0.1.el7_9.1                            ol7_latest              183 k
 libcurl                                     x86_64              7.29.0-59.0.1.el7_9.1                            ol7_latest              224 k
 libgudev1                                   x86_64              219-78.0.1.el7_9.3                               ol7_latest              110 k
 libipa_hbac                                 x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              156 k
 libldb                                      x86_64              1.5.4-2.el7_9                                    ol7_latest              148 k
 libmount                                    x86_64              2.23.2-65.0.1.el7_9.1                            ol7_latest              185 k
 libsmartcols                                x86_64              2.23.2-65.0.1.el7_9.1                            ol7_latest              142 k
 libsmbclient                                x86_64              4.10.16-9.el7_9                                  ol7_latest              144 k
 libsss_autofs                               x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              157 k
 libsss_certmap                              x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              189 k
 libsss_idmap                                x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              160 k
 libsss_nss_idmap                            x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              167 k
 libsss_sudo                                 x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              156 k
 libuuid                                     i686                2.23.2-65.0.1.el7_9.1                            ol7_latest               85 k
 libuuid                                     x86_64              2.23.2-65.0.1.el7_9.1                            ol7_latest               84 k
 libwbclient                                 x86_64              4.10.16-9.el7_9                                  ol7_latest              115 k
 lvm2                                        x86_64              7:2.02.187-6.0.3.el7_9.3                         ol7_latest              1.3 M
 lvm2-libs                                   x86_64              7:2.02.187-6.0.3.el7_9.3                         ol7_latest              1.1 M
 mokutil                                     x86_64              15.3-1.0.5.el7                                   ol7_latest               44 k
 nettle                                      x86_64              2.7.1-9.el7_9                                    ol7_latest              327 k
 nss                                         x86_64              3.53.1-7.el7_9                                   ol7_latest              868 k
 nss-sysinit                                 x86_64              3.53.1-7.el7_9                                   ol7_latest               65 k
 nss-tools                                   x86_64              3.53.1-7.el7_9                                   ol7_latest              535 k
 openldap                                    x86_64              2.4.44-23.el7_9                                  ol7_latest              355 k
 openssl                                     x86_64              1:1.0.2k-21.el7_9                                ol7_latest              493 k
 openssl-libs                                x86_64              1:1.0.2k-21.el7_9                                ol7_latest              1.2 M
 perl                                        x86_64              4:5.16.3-299.el7_9                               ol7_latest              8.0 M
 perl-IO-Zlib                                noarch              1:1.10-299.el7_9                                 ol7_latest               52 k
 perl-Pod-Escapes                            noarch              1:1.04-299.el7_9                                 ol7_latest               51 k
 perl-libs                                   x86_64              4:5.16.3-299.el7_9                               ol7_latest              689 k
 perl-macros                                 x86_64              4:5.16.3-299.el7_9                               ol7_latest               44 k
 python                                      x86_64              2.7.5-90.0.3.el7                                 ol7_latest               96 k
 python-libs                                 x86_64              2.7.5-90.0.3.el7                                 ol7_latest              5.6 M
 python-sssdconfig                           noarch              1.16.5-10.0.1.el7_9.7                            ol7_latest              179 k
 samba-client-libs                           x86_64              4.10.16-9.el7_9                                  ol7_latest              5.0 M
 samba-common                                noarch              4.10.16-9.el7_9                                  ol7_latest              214 k
 samba-common-libs                           x86_64              4.10.16-9.el7_9                                  ol7_latest              181 k
 screen                                      x86_64              4.1.0-0.27.20120314git3c2946.el7_9               ol7_latest              552 k
 selinux-policy                              noarch              3.13.1-268.0.1.el7_9.2                           ol7_latest              498 k
 selinux-policy-targeted                     noarch              3.13.1-268.0.1.el7_9.2                           ol7_latest              7.2 M
 shim-x64                                    x86_64              15.3-1.0.5.el7                                   ol7_latest              479 k
 sos                                         noarch              3.9-5.0.3.el7_9.2                                ol7_latest              542 k
 sssd                                        x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              147 k
 sssd-ad                                     x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              300 k
 sssd-client                                 x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              227 k
 sssd-common                                 x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              1.5 M
 sssd-common-pac                             x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              221 k
 sssd-ipa                                    x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              381 k
 sssd-krb5                                   x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              189 k
 sssd-krb5-common                            x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              223 k
 sssd-ldap                                   x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              283 k
 sssd-proxy                                  x86_64              1.16.5-10.0.1.el7_9.7                            ol7_latest              183 k
 sudo                                        x86_64              1.8.23-10.el7_9.1                                ol7_latest              842 k
 systemd                                     x86_64              219-78.0.1.el7_9.3                               ol7_latest              5.1 M
 systemd-libs                                x86_64              219-78.0.1.el7_9.3                               ol7_latest              419 k
 systemd-sysv                                x86_64              219-78.0.1.el7_9.3                               ol7_latest               97 k
 tcsh                                        x86_64              6.18.01-17.el7_9.1                               ol7_latest              338 k
 tzdata                                      noarch              2021a-1.el7                                      ol7_latest              501 k
 tzdata-java                                 noarch              2021a-1.el7                                      ol7_latest              190 k
 util-linux                                  x86_64              2.23.2-65.0.1.el7_9.1                            ol7_latest              2.0 M
 vim-common                                  x86_64              2:7.4.629-8.0.1.el7_9                            ol7_latest              5.9 M
 vim-enhanced                                x86_64              2:7.4.629-8.0.1.el7_9                            ol7_latest              1.1 M
 vim-filesystem                              x86_64              2:7.4.629-8.0.1.el7_9                            ol7_latest               11 k
 vim-minimal                                 x86_64              2:7.4.629-8.0.1.el7_9                            ol7_latest              443 k
 zlib                                        i686                1.2.7-19.el7_9                                   ol7_latest               90 k
 zlib                                        x86_64              1.2.7-19.el7_9                                   ol7_latest               89 k
 
Transaction Summary
================================================================================================================================================
Install    3 Packages
Upgrade  109 Packages
 
Total download size: 181 M
Is this ok [y/d/N]: y
Downloading packages:
No Presto metadata available for ol7_UEKR4
No Presto metadata available for ol7_latest
warning: /var/cache/yum/x86_64/7Server/ol7_latest/packages/bind-export-libs-9.11.4-26.P2.el7_9.5.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Public key for bind-export-libs-9.11.4-26.P2.el7_9.5.x86_64.rpm is not installed
(1/112): bind-export-libs-9.11.4-26.P2.el7_9.5.x86_64.rpm                                                                | 1.1 MB  00:00:00
(2/112): bind-libs-9.11.4-26.P2.el7_9.5.x86_64.rpm                                                                       | 156 kB  00:00:00
(3/112): bind-libs-lite-9.11.4-26.P2.el7_9.5.x86_64.rpm                                                                  | 1.1 MB  00:00:00
(4/112): bind-9.11.4-26.P2.el7_9.5.x86_64.rpm                                                                            | 2.3 MB  00:00:00
(5/112): bind-license-9.11.4-26.P2.el7_9.5.noarch.rpm                                                                    |  90 kB  00:00:00
(6/112): bind-utils-9.11.4-26.P2.el7_9.5.x86_64.rpm                                                                      | 260 kB  00:00:00
(7/112): coreutils-8.22-24.0.1.el7_9.2.x86_64.rpm                                                                        | 3.3 MB  00:00:00
(8/112): binutils-2.27-44.base.0.3.el7.x86_64.rpm                                                                        | 5.3 MB  00:00:00
(9/112): curl-7.29.0-59.0.1.el7_9.1.x86_64.rpm                                                                           | 271 kB  00:00:00
(10/112): device-mapper-1.02.170-6.0.3.el7_9.3.x86_64.rpm                                                                | 297 kB  00:00:00
(11/112): device-mapper-event-1.02.170-6.0.3.el7_9.3.x86_64.rpm                                                          | 192 kB  00:00:00
(12/112): device-mapper-event-libs-1.02.170-6.0.3.el7_9.3.x86_64.rpm                                                     | 191 kB  00:00:00
(13/112): device-mapper-libs-1.02.170-6.0.3.el7_9.3.x86_64.rpm                                                           | 325 kB  00:00:00
(14/112): device-mapper-multipath-0.4.9-134.0.1.el7_9.x86_64.rpm                                                         | 148 kB  00:00:00
(15/112): device-mapper-multipath-libs-0.4.9-134.0.1.el7_9.x86_64.rpm                                                    | 267 kB  00:00:00
(16/112): device-mapper-persistent-data-0.8.5-3.el7_9.2.x86_64.rpm                                                       | 422 kB  00:00:00
(17/112): dracut-033-572.0.3.el7.x86_64.rpm                                                                              | 331 kB  00:00:00
(18/112): dracut-fips-033-572.0.3.el7.x86_64.rpm                                                                         |  64 kB  00:00:00
(19/112): dracut-fips-aesni-033-572.0.3.el7.x86_64.rpm                                                                   |  68 kB  00:00:00
(20/112): dracut-network-033-572.0.3.el7.x86_64.rpm                                                                      | 106 kB  00:00:00
(21/112): freetype-2.8-14.el7_9.1.x86_64.rpm                                                                             | 380 kB  00:00:00
(22/112): glib2-2.56.1-8.el7.x86_64.rpm                                                                                  | 2.5 MB  00:00:00
(23/112): glibc-2.17-322.0.1.el7_9.i686.rpm                                                                              | 4.3 MB  00:00:00
(24/112): glibc-2.17-322.0.1.el7_9.x86_64.rpm                                                                            | 3.6 MB  00:00:00
(25/112): glibc-devel-2.17-322.0.1.el7_9.x86_64.rpm                                                                      | 1.1 MB  00:00:00
(26/112): glibc-headers-2.17-322.0.1.el7_9.x86_64.rpm                                                                    | 693 kB  00:00:00
(27/112): glibc-common-2.17-322.0.1.el7_9.x86_64.rpm                                                                     |  12 MB  00:00:00
(28/112): grub2-2.02-0.87.0.9.el7_9.6.x86_64.rpm                                                                         |  34 kB  00:00:00
(29/112): grub2-common-2.02-0.87.0.9.el7_9.6.noarch.rpm                                                                  | 733 kB  00:00:00
(30/112): grub2-pc-2.02-0.87.0.9.el7_9.6.x86_64.rpm                                                                      |  34 kB  00:00:00
(31/112): grub2-pc-modules-2.02-0.87.0.9.el7_9.6.noarch.rpm                                                              | 858 kB  00:00:00
(32/112): grub2-efi-x64-2.02-0.87.0.9.el7_9.6.x86_64.rpm                                                                 | 1.1 MB  00:00:00
(33/112): grub2-tools-2.02-0.87.0.9.el7_9.6.x86_64.rpm                                                                   | 1.8 MB  00:00:00
(34/112): grub2-tools-minimal-2.02-0.87.0.9.el7_9.6.x86_64.rpm                                                           | 177 kB  00:00:00
(35/112): grub2-tools-extra-2.02-0.87.0.9.el7_9.6.x86_64.rpm                                                             | 1.0 MB  00:00:00
(36/112): iscsi-initiator-utils-6.2.0.874-20.0.1.el7_9.x86_64.rpm                                                        | 429 kB  00:00:00
(37/112): initscripts-9.49.53-1.0.1.el7_9.1.x86_64.rpm                                                                   | 443 kB  00:00:00
(38/112): iscsi-initiator-utils-iscsiuio-6.2.0.874-20.0.1.el7_9.x86_64.rpm                                               |  95 kB  00:00:00
(39/112): kernel-headers-3.10.0-1160.24.1.el7.x86_64.rpm                                                                 | 9.0 MB  00:00:00
(40/112): kexec-tools-2.0.15-51.0.3.el7_9.1.x86_64.rpm                                                                   | 355 kB  00:00:00
(41/112): kpartx-0.4.9-134.0.1.el7_9.x86_64.rpm                                                                          |  80 kB  00:00:00
(42/112): libX11-1.6.7-3.el7_9.x86_64.rpm                                                                                | 606 kB  00:00:00
Public key for kernel-uek-firmware-4.1.12-124.50.2.el7uek.noarch.rpm is not installed
(43/112): kernel-uek-firmware-4.1.12-124.50.2.el7uek.noarch.rpm                                                          | 2.6 MB  00:00:00
(44/112): kernel-devel-3.10.0-1160.24.1.el7.x86_64.rpm                                                                   |  18 MB  00:00:00
(45/112): libX11-common-1.6.7-3.el7_9.noarch.rpm                                                                         | 164 kB  00:00:00
(46/112): libcurl-7.29.0-59.0.1.el7_9.1.x86_64.rpm                                                                       | 224 kB  00:00:00
(47/112): libblkid-2.23.2-65.0.1.el7_9.1.x86_64.rpm                                                                      | 183 kB  00:00:00
(48/112): libipa_hbac-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                   | 156 kB  00:00:00
(49/112): libgudev1-219-78.0.1.el7_9.3.x86_64.rpm                                                                        | 110 kB  00:00:00
(50/112): libldb-1.5.4-2.el7_9.x86_64.rpm                                                                                | 148 kB  00:00:00
(51/112): libmount-2.23.2-65.0.1.el7_9.1.x86_64.rpm                                                                      | 185 kB  00:00:00
(52/112): libsmartcols-2.23.2-65.0.1.el7_9.1.x86_64.rpm                                                                  | 142 kB  00:00:00
(53/112): libsmbclient-4.10.16-9.el7_9.x86_64.rpm                                                                        | 144 kB  00:00:00
(54/112): libsss_certmap-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                | 189 kB  00:00:00
(55/112): libsss_autofs-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                 | 157 kB  00:00:00
(56/112): libsss_idmap-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                  | 160 kB  00:00:00
(57/112): libsss_nss_idmap-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                              | 167 kB  00:00:00
(58/112): libsss_sudo-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                   | 156 kB  00:00:00
(59/112): libuuid-2.23.2-65.0.1.el7_9.1.x86_64.rpm                                                                       |  84 kB  00:00:00
(60/112): libuuid-2.23.2-65.0.1.el7_9.1.i686.rpm                                                                         |  85 kB  00:00:00
(61/112): libwbclient-4.10.16-9.el7_9.x86_64.rpm                                                                         | 115 kB  00:00:00
(62/112): lvm2-libs-2.02.187-6.0.3.el7_9.3.x86_64.rpm                                                                    | 1.1 MB  00:00:00
(63/112): mokutil-15.3-1.0.5.el7.x86_64.rpm                                                                              |  44 kB  00:00:00
(64/112): kernel-uek-4.1.12-124.50.2.el7uek.x86_64.rpm                                                                   |  45 MB  00:00:01
(65/112): nettle-2.7.1-9.el7_9.x86_64.rpm                                                                                | 327 kB  00:00:00
(66/112): nss-3.53.1-7.el7_9.x86_64.rpm                                                                                  | 868 kB  00:00:00
(67/112): nss-sysinit-3.53.1-7.el7_9.x86_64.rpm                                                                          |  65 kB  00:00:00
(68/112): nss-tools-3.53.1-7.el7_9.x86_64.rpm                                                                            | 535 kB  00:00:00
(69/112): openldap-2.4.44-23.el7_9.x86_64.rpm                                                                            | 355 kB  00:00:00
(70/112): openssl-1.0.2k-21.el7_9.x86_64.rpm                                                                             | 493 kB  00:00:00
(71/112): openssl-libs-1.0.2k-21.el7_9.x86_64.rpm                                                                        | 1.2 MB  00:00:00
(72/112): perl-5.16.3-299.el7_9.x86_64.rpm                                                                               | 8.0 MB  00:00:00
(73/112): perl-IO-Zlib-1.10-299.el7_9.noarch.rpm                                                                         |  52 kB  00:00:00
(74/112): perl-Pod-Escapes-1.04-299.el7_9.noarch.rpm                                                                     |  51 kB  00:00:00
(75/112): perl-libs-5.16.3-299.el7_9.x86_64.rpm                                                                          | 689 kB  00:00:00
(76/112): perl-macros-5.16.3-299.el7_9.x86_64.rpm                                                                        |  44 kB  00:00:00
(77/112): python-2.7.5-90.0.3.el7.x86_64.rpm                                                                             |  96 kB  00:00:00
(78/112): python-libs-2.7.5-90.0.3.el7.x86_64.rpm                                                                        | 5.6 MB  00:00:00
(79/112): python-sssdconfig-1.16.5-10.0.1.el7_9.7.noarch.rpm                                                             | 179 kB  00:00:00
(80/112): samba-client-libs-4.10.16-9.el7_9.x86_64.rpm                                                                   | 5.0 MB  00:00:00
(81/112): lvm2-2.02.187-6.0.3.el7_9.3.x86_64.rpm                                                                         | 1.3 MB  00:00:01
(82/112): samba-common-4.10.16-9.el7_9.noarch.rpm                                                                        | 214 kB  00:00:00
(83/112): samba-common-libs-4.10.16-9.el7_9.x86_64.rpm                                                                   | 181 kB  00:00:00
(84/112): selinux-policy-3.13.1-268.0.1.el7_9.2.noarch.rpm                                                               | 498 kB  00:00:00
(85/112): screen-4.1.0-0.27.20120314git3c2946.el7_9.x86_64.rpm                                                           | 552 kB  00:00:00
(86/112): shim-x64-15.3-1.0.5.el7.x86_64.rpm                                                                             | 479 kB  00:00:00
(87/112): sos-3.9-5.0.3.el7_9.2.noarch.rpm                                                                               | 542 kB  00:00:00
(88/112): selinux-policy-targeted-3.13.1-268.0.1.el7_9.2.noarch.rpm                                                      | 7.2 MB  00:00:00
(89/112): sssd-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                          | 147 kB  00:00:00
(90/112): sssd-ad-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                       | 300 kB  00:00:00
(91/112): sssd-client-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                   | 227 kB  00:00:00
(92/112): sssd-common-pac-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                               | 221 kB  00:00:00
(93/112): sssd-common-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                   | 1.5 MB  00:00:00
(94/112): sssd-ipa-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                      | 381 kB  00:00:00
(95/112): sssd-krb5-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                     | 189 kB  00:00:00
(96/112): sssd-krb5-common-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                              | 223 kB  00:00:00
(97/112): sssd-proxy-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                    | 183 kB  00:00:00
(98/112): sssd-ldap-1.16.5-10.0.1.el7_9.7.x86_64.rpm                                                                     | 283 kB  00:00:00
(99/112): sudo-1.8.23-10.el7_9.1.x86_64.rpm                                                                              | 842 kB  00:00:00
(100/112): systemd-libs-219-78.0.1.el7_9.3.x86_64.rpm                                                                    | 419 kB  00:00:00
(101/112): systemd-sysv-219-78.0.1.el7_9.3.x86_64.rpm                                                                    |  97 kB  00:00:00
(102/112): tcsh-6.18.01-17.el7_9.1.x86_64.rpm                                                                            | 338 kB  00:00:00
(103/112): systemd-219-78.0.1.el7_9.3.x86_64.rpm                                                                         | 5.1 MB  00:00:00
(104/112): tzdata-2021a-1.el7.noarch.rpm                                                                                 | 501 kB  00:00:00
(105/112): tzdata-java-2021a-1.el7.noarch.rpm                                                                            | 190 kB  00:00:00
(106/112): util-linux-2.23.2-65.0.1.el7_9.1.x86_64.rpm                                                                   | 2.0 MB  00:00:00
(107/112): vim-enhanced-7.4.629-8.0.1.el7_9.x86_64.rpm                                                                   | 1.1 MB  00:00:00
(108/112): vim-filesystem-7.4.629-8.0.1.el7_9.x86_64.rpm                                                                 |  11 kB  00:00:00
(109/112): vim-minimal-7.4.629-8.0.1.el7_9.x86_64.rpm                                                                    | 443 kB  00:00:00
(110/112): vim-common-7.4.629-8.0.1.el7_9.x86_64.rpm                                                                     | 5.9 MB  00:00:00
(111/112): zlib-1.2.7-19.el7_9.i686.rpm                                                                                  |  90 kB  00:00:00
(112/112): zlib-1.2.7-19.el7_9.x86_64.rpm                                                                                |  89 kB  00:00:00
------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                            35 MB/s | 181 MB  00:00:05
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
Importing GPG key 0xEC551F03:
 Userid     : "Oracle OSS group (Open Source Software group) <build@oss.oracle.com>"
 Fingerprint: 4214 4123 fecf c55b 9086 313d 72f9 7b74 ec55 1f03
 Package    : 7:oraclelinux-release-7.9-1.0.9.el7.x86_64 (@pdit_ol7_latest/$releasever)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
Is this ok [y/N]: y
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
  Updating   : 1:grub2-common-2.02-0.87.0.9.el7_9.6.noarch                                                                                1/221
  Updating   : 32:bind-license-9.11.4-26.P2.el7_9.5.noarch                                                                                2/221
  Updating   : 1:grub2-pc-modules-2.02-0.87.0.9.el7_9.6.noarch                                                                            3/221
  Updating   : tzdata-2021a-1.el7.noarch                                                                                                  4/221
  Updating   : glibc-2.17-322.0.1.el7_9.x86_64                                                                                            5/221
  Updating   : glibc-common-2.17-322.0.1.el7_9.x86_64                                                                                     6/221
  Updating   : systemd-libs-219-78.0.1.el7_9.3.x86_64                                                                                     7/221
  Updating   : zlib-1.2.7-19.el7_9.x86_64                                                                                                 8/221
  Updating   : 1:openssl-libs-1.0.2k-21.el7_9.x86_64                                                                                      9/221
  Updating   : coreutils-8.22-24.0.1.el7_9.2.x86_64                                                                                      10/221
  Updating   : libldb-1.5.4-2.el7_9.x86_64                                                                                               11/221
  Updating   : libsss_idmap-1.16.5-10.0.1.el7_9.7.x86_64                                                                                 12/221
  Updating   : 4:perl-macros-5.16.3-299.el7_9.x86_64                                                                                     13/221
  Updating   : 4:perl-libs-5.16.3-299.el7_9.x86_64                                                                                       14/221
  Updating   : 4:perl-5.16.3-299.el7_9.x86_64                                                                                            15/221
  Updating   : 32:bind-libs-lite-9.11.4-26.P2.el7_9.5.x86_64                                                                             16/221
  Updating   : libuuid-2.23.2-65.0.1.el7_9.1.x86_64                                                                                      17/221
  Updating   : libblkid-2.23.2-65.0.1.el7_9.1.x86_64                                                                                     18/221
  Updating   : libmount-2.23.2-65.0.1.el7_9.1.x86_64                                                                                     19/221
  Updating   : glib2-2.56.1-8.el7.x86_64                                                                                                 20/221
  Updating   : 32:bind-libs-9.11.4-26.P2.el7_9.5.x86_64                                                                                  21/221
  Updating   : 32:bind-utils-9.11.4-26.P2.el7_9.5.x86_64                                                                                 22/221
  Updating   : python-libs-2.7.5-90.0.3.el7.x86_64                                                                                       23/221
  Updating   : python-2.7.5-90.0.3.el7.x86_64                                                                                            24/221
  Updating   : selinux-policy-3.13.1-268.0.1.el7_9.2.noarch                                                                              25/221
  Updating   : selinux-policy-targeted-3.13.1-268.0.1.el7_9.2.noarch                                                                     26/221
  Updating   : python-sssdconfig-1.16.5-10.0.1.el7_9.7.noarch                                                                            27/221
  Updating   : libipa_hbac-1.16.5-10.0.1.el7_9.7.x86_64                                                                                  28/221
  Updating   : nss-3.53.1-7.el7_9.x86_64                                                                                                 29/221
  Updating   : nss-sysinit-3.53.1-7.el7_9.x86_64                                                                                         30/221
  Updating   : libsss_certmap-1.16.5-10.0.1.el7_9.7.x86_64                                                                               31/221
  Updating   : nss-tools-3.53.1-7.el7_9.x86_64                                                                                           32/221
  Updating   : openldap-2.4.44-23.el7_9.x86_64                                                                                           33/221
  Updating   : libcurl-7.29.0-59.0.1.el7_9.1.x86_64                                                                                      34/221
  Updating   : systemd-219-78.0.1.el7_9.3.x86_64                                                                                         35/221
  Updating   : samba-common-4.10.16-9.el7_9.noarch                                                                                       36/221
  Updating   : libwbclient-4.10.16-9.el7_9.x86_64                                                                                        37/221
  Updating   : samba-common-libs-4.10.16-9.el7_9.x86_64                                                                                  38/221
  Updating   : samba-client-libs-4.10.16-9.el7_9.x86_64                                                                                  39/221
  Updating   : libsmbclient-4.10.16-9.el7_9.x86_64                                                                                       40/221
  Updating   : iscsi-initiator-utils-iscsiuio-6.2.0.874-20.0.1.el7_9.x86_64                                                              41/221
  Updating   : iscsi-initiator-utils-6.2.0.874-20.0.1.el7_9.x86_64                                                                       42/221
  Updating   : systemd-sysv-219-78.0.1.el7_9.3.x86_64                                                                                    43/221
  Updating   : mokutil-15.3-1.0.5.el7.x86_64                                                                                             44/221
  Updating   : freetype-2.8-14.el7_9.1.x86_64                                                                                            45/221
  Updating   : libsss_nss_idmap-1.16.5-10.0.1.el7_9.7.x86_64                                                                             46/221
  Updating   : sssd-client-1.16.5-10.0.1.el7_9.7.x86_64                                                                                  47/221
  Updating   : libsss_sudo-1.16.5-10.0.1.el7_9.7.x86_64                                                                                  48/221
  Updating   : libsss_autofs-1.16.5-10.0.1.el7_9.7.x86_64                                                                                49/221
  Updating   : sssd-common-1.16.5-10.0.1.el7_9.7.x86_64                                                                                  50/221
  Updating   : sssd-krb5-common-1.16.5-10.0.1.el7_9.7.x86_64                                                                             51/221
  Updating   : sssd-common-pac-1.16.5-10.0.1.el7_9.7.x86_64                                                                              52/221
  Updating   : sssd-ipa-1.16.5-10.0.1.el7_9.7.x86_64                                                                                     53/221
  Updating   : sssd-ad-1.16.5-10.0.1.el7_9.7.x86_64                                                                                      54/221
  Updating   : sssd-ldap-1.16.5-10.0.1.el7_9.7.x86_64                                                                                    55/221
  Updating   : sssd-krb5-1.16.5-10.0.1.el7_9.7.x86_64                                                                                    56/221
  Updating   : sssd-proxy-1.16.5-10.0.1.el7_9.7.x86_64                                                                                   57/221
  Updating   : libsmartcols-2.23.2-65.0.1.el7_9.1.x86_64                                                                                 58/221
  Updating   : util-linux-2.23.2-65.0.1.el7_9.1.x86_64                                                                                   59/221
  Updating   : 7:device-mapper-libs-1.02.170-6.0.3.el7_9.3.x86_64                                                                        60/221
  Updating   : 7:device-mapper-1.02.170-6.0.3.el7_9.3.x86_64                                                                             61/221
  Updating   : 1:grub2-tools-minimal-2.02-0.87.0.9.el7_9.6.x86_64                                                                        62/221
  Updating   : 7:device-mapper-event-libs-1.02.170-6.0.3.el7_9.3.x86_64                                                                  63/221
  Updating   : kpartx-0.4.9-134.0.1.el7_9.x86_64                                                                                         64/221
  Updating   : dracut-033-572.0.3.el7.x86_64                                                                                             65/221
  Updating   : 1:grub2-tools-2.02-0.87.0.9.el7_9.6.x86_64                                                                                66/221
  Updating   : 1:grub2-tools-extra-2.02-0.87.0.9.el7_9.6.x86_64                                                                          67/221
  Updating   : initscripts-9.49.53-1.0.1.el7_9.1.x86_64                                                                                  68/221
  Updating   : 1:grub2-pc-2.02-0.87.0.9.el7_9.6.x86_64                                                                                   69/221
  Updating   : 1:grub2-efi-x64-2.02-0.87.0.9.el7_9.6.x86_64                                                                              70/221
  Updating   : dracut-network-033-572.0.3.el7.x86_64                                                                                     71/221
  Updating   : dracut-fips-033-572.0.3.el7.x86_64                                                                                        72/221
  Updating   : 7:device-mapper-event-1.02.170-6.0.3.el7_9.3.x86_64                                                                       73/221
  Updating   : 7:lvm2-libs-2.02.187-6.0.3.el7_9.3.x86_64                                                                                 74/221
  Updating   : device-mapper-multipath-libs-0.4.9-134.0.1.el7_9.x86_64                                                                   75/221
  Updating   : device-mapper-persistent-data-0.8.5-3.el7_9.2.x86_64                                                                      76/221
  Updating   : 2:vim-minimal-7.4.629-8.0.1.el7_9.x86_64                                                                                  77/221
  Installing : kernel-uek-firmware-4.1.12-124.50.2.el7uek.noarch                                                                         78/221
  Installing : kernel-uek-4.1.12-124.50.2.el7uek.x86_64                                                                                  79/221
  Updating   : 2:vim-filesystem-7.4.629-8.0.1.el7_9.x86_64                                                                               80/221
  Updating   : 2:vim-common-7.4.629-8.0.1.el7_9.x86_64                                                                                   81/221
  Updating   : kernel-headers-3.10.0-1160.24.1.el7.x86_64                                                                                82/221
  Updating   : glibc-headers-2.17-322.0.1.el7_9.x86_64                                                                                   83/221
  Updating   : libX11-common-1.6.7-3.el7_9.noarch                                                                                        84/221
  Updating   : libX11-1.6.7-3.el7_9.x86_64                                                                                               85/221
  Updating   : glibc-devel-2.17-322.0.1.el7_9.x86_64                                                                                     86/221
  Updating   : 2:vim-enhanced-7.4.629-8.0.1.el7_9.x86_64                                                                                 87/221
  Updating   : shim-x64-15.3-1.0.5.el7.x86_64                                                                                            88/221
  Updating   : sudo-1.8.23-10.el7_9.1.x86_64                                                                                             89/221
  Updating   : 7:lvm2-2.02.187-6.0.3.el7_9.3.x86_64                                                                                      90/221
  Updating   : device-mapper-multipath-0.4.9-134.0.1.el7_9.x86_64                                                                        91/221
  Updating   : dracut-fips-aesni-033-572.0.3.el7.x86_64                                                                                  92/221
  Updating   : kexec-tools-2.0.15-51.0.3.el7_9.1.x86_64                                                                                  93/221
  Updating   : 1:grub2-2.02-0.87.0.9.el7_9.6.x86_64                                                                                      94/221
  Updating   : sssd-1.16.5-10.0.1.el7_9.7.x86_64                                                                                         95/221
  Updating   : 32:bind-9.11.4-26.P2.el7_9.5.x86_64                                                                                       96/221
  Updating   : curl-7.29.0-59.0.1.el7_9.1.x86_64                                                                                         97/221
  Updating   : sos-3.9-5.0.3.el7_9.2.noarch                                                                                              98/221
  Updating   : libgudev1-219-78.0.1.el7_9.3.x86_64                                                                                       99/221
  Installing : kernel-devel-3.10.0-1160.24.1.el7.x86_64                                                                                 100/221
  Updating   : 1:perl-Pod-Escapes-1.04-299.el7_9.noarch                                                                                 101/221
  Updating   : 1:perl-IO-Zlib-1.10-299.el7_9.noarch                                                                                     102/221
  Updating   : 1:openssl-1.0.2k-21.el7_9.x86_64                                                                                         103/221
  Updating   : tcsh-6.18.01-17.el7_9.1.x86_64                                                                                           104/221
  Updating   : binutils-2.27-44.base.0.3.el7.x86_64                                                                                     105/221
  Updating   : 32:bind-export-libs-9.11.4-26.P2.el7_9.5.x86_64                                                                          106/221
  Updating   : nettle-2.7.1-9.el7_9.x86_64                                                                                              107/221
  Updating   : screen-4.1.0-0.27.20120314git3c2946.el7_9.x86_64                                                                         108/221
  Updating   : tzdata-java-2021a-1.el7.noarch                                                                                           109/221
  Updating   : glibc-2.17-322.0.1.el7_9.i686                                                                                            110/221
  Updating   : libuuid-2.23.2-65.0.1.el7_9.1.i686                                                                                       111/221
  Updating   : zlib-1.2.7-19.el7_9.i686                                                                                                 112/221
  Cleanup    : 32:bind-9.11.4-26.P2.el7.x86_64                                                                                          113/221
  Cleanup    : device-mapper-multipath-0.4.9-133.0.1.el7.x86_64                                                                         114/221
  Cleanup    : 7:lvm2-2.02.187-6.0.3.el7.x86_64                                                                                         115/221
  Cleanup    : iscsi-initiator-utils-iscsiuio-6.2.0.874-19.0.1.el7.x86_64                                                               116/221
  Cleanup    : iscsi-initiator-utils-6.2.0.874-19.0.1.el7.x86_64                                                                        117/221
  Cleanup    : 7:lvm2-libs-2.02.187-6.0.3.el7.x86_64                                                                                    118/221
  Cleanup    : kexec-tools-2.0.15-51.0.1.el7.x86_64                                                                                     119/221
  Cleanup    : libgudev1-219-78.0.1.el7.x86_64                                                                                          120/221
  Cleanup    : 1:openssl-1.0.2k-19.0.1.el7.x86_64                                                                                       121/221
  Cleanup    : curl-7.29.0-59.0.1.el7.x86_64                                                                                            122/221
  Cleanup    : sssd-1.16.5-10.0.1.el7_9.5.x86_64                                                                                        123/221
  Cleanup    : sssd-ad-1.16.5-10.0.1.el7_9.5.x86_64                                                                                     124/221
  Cleanup    : libsmbclient-4.10.16-7.el7_9.x86_64                                                                                      125/221
  Cleanup    : sssd-ipa-1.16.5-10.0.1.el7_9.5.x86_64                                                                                    126/221
  Cleanup    : sssd-common-pac-1.16.5-10.0.1.el7_9.5.x86_64                                                                             127/221
  Cleanup    : sssd-ldap-1.16.5-10.0.1.el7_9.5.x86_64                                                                                   128/221
  Cleanup    : sssd-krb5-1.16.5-10.0.1.el7_9.5.x86_64                                                                                   129/221
  Cleanup    : sssd-proxy-1.16.5-10.0.1.el7_9.5.x86_64                                                                                  130/221
  Cleanup    : 32:bind-utils-9.11.4-26.P2.el7.x86_64                                                                                    131/221
  Cleanup    : 32:bind-libs-9.11.4-26.P2.el7.x86_64                                                                                     132/221
  Cleanup    : 7:device-mapper-event-1.02.170-6.0.3.el7.x86_64                                                                          133/221
  Cleanup    : 32:bind-libs-lite-9.11.4-26.P2.el7.x86_64                                                                                134/221
  Cleanup    : initscripts-9.49.53-1.0.1.el7.x86_64                                                                                     135/221
  Cleanup    : sudo-1.8.23-10.el7.x86_64                                                                                                136/221
  Cleanup    : 2:vim-enhanced-7.4.629-7.0.1.el7.x86_64                                                                                  137/221
  Cleanup    : glibc-devel-2.17-317.0.1.el7.x86_64                                                                                      138/221
  Cleanup    : sssd-krb5-common-1.16.5-10.0.1.el7_9.5.x86_64                                                                            139/221
  Cleanup    : sssd-common-1.16.5-10.0.1.el7_9.5.x86_64                                                                                 140/221
  Cleanup    : libsss_certmap-1.16.5-10.0.1.el7_9.5.x86_64                                                                              141/221
  Cleanup    : device-mapper-multipath-libs-0.4.9-133.0.1.el7.x86_64                                                                    142/221
  Cleanup    : sssd-client-1.16.5-10.0.1.el7_9.5.x86_64                                                                                 143/221
  Cleanup    : libwbclient-4.10.16-7.el7_9.x86_64                                                                                       144/221
  Cleanup    : samba-common-libs-4.10.16-7.el7_9.x86_64                                                                                 145/221
  Cleanup    : samba-client-libs-4.10.16-7.el7_9.x86_64                                                                                 146/221
  Cleanup    : binutils-2.27-44.base.0.1.el7.x86_64                                                                                     147/221
  Cleanup    : 7:device-mapper-event-libs-1.02.170-6.0.3.el7.x86_64                                                                     148/221
  Cleanup    : libipa_hbac-1.16.5-10.0.1.el7_9.5.x86_64                                                                                 149/221
  Cleanup    : glib2-2.56.1-7.el7.x86_64                                                                                                150/221
  Cleanup    : libX11-1.6.7-2.el7.x86_64                                                                                                151/221
  Cleanup    : 32:bind-export-libs-9.11.4-26.P2.el7.x86_64                                                                              152/221
  Cleanup    : glibc-headers-2.17-317.0.1.el7.x86_64                                                                                    153/221
  Cleanup    : systemd-sysv-219-78.0.1.el7.x86_64                                                                                       154/221
  Cleanup    : selinux-policy-targeted-3.13.1-268.0.1.el7.noarch                                                                        155/221
  Cleanup    : zlib-1.2.7-18.el7                                                                                                        156/221
  Cleanup    : libuuid-2.23.2-65.0.1.el7                                                                                                157/221
  Cleanup    : glibc-2.17-317.0.1.el7                                                                                                   158/221
  Cleanup    : shim-x64-15-2.0.9.el7.x86_64                                                                                             159/221
  Cleanup    : 1:grub2-efi-x64-2.02-0.87.0.1.el7.x86_64                                                                                 160/221
  Cleanup    : mokutil-15-2.0.9.el7.x86_64                                                                                              161/221
  Cleanup    : 2:vim-common-7.4.629-7.0.1.el7.x86_64                                                                                    162/221
  Cleanup    : tcsh-6.18.01-17.el7.x86_64                                                                                               163/221
  Cleanup    : selinux-policy-3.13.1-268.0.1.el7.noarch                                                                                 164/221
  Cleanup    : samba-common-4.10.16-7.el7_9.noarch                                                                                      165/221
  Cleanup    : python-sssdconfig-1.16.5-10.0.1.el7_9.5.noarch                                                                           166/221
  Cleanup    : dracut-network-033-572.0.1.el7.x86_64                                                                                    167/221
  Cleanup    : dracut-fips-aesni-033-572.0.1.el7.x86_64                                                                                 168/221
  Cleanup    : dracut-fips-033-572.0.1.el7.x86_64                                                                                       169/221
  Cleanup    : 1:perl-IO-Zlib-1.10-297.el7.noarch                                                                                       170/221
  Cleanup    : 1:perl-Pod-Escapes-1.04-297.el7.noarch                                                                                   171/221
  Cleanup    : sos-3.9-4.0.1.el7_9.noarch                                                                                               172/221
  Cleanup    : 1:grub2-2.02-0.87.0.1.el7.x86_64                                                                                         173/221
  Cleanup    : 1:grub2-pc-2.02-0.87.0.1.el7.x86_64                                                                                      174/221
  Cleanup    : 1:grub2-tools-extra-2.02-0.87.0.1.el7.x86_64                                                                             175/221
  Cleanup    : 1:grub2-tools-2.02-0.87.0.1.el7.x86_64                                                                                   176/221
  Cleanup    : 4:perl-libs-5.16.3-297.el7.x86_64                                                                                        177/221
  Cleanup    : 4:perl-macros-5.16.3-297.el7.x86_64                                                                                      178/221
  Cleanup    : 4:perl-5.16.3-297.el7.x86_64                                                                                             179/221
  Cleanup    : dracut-033-572.0.1.el7.x86_64                                                                                            180/221
  Cleanup    : python-2.7.5-89.0.1.el7.x86_64                                                                                           181/221
  Cleanup    : 1:grub2-pc-modules-2.02-0.87.0.1.el7.noarch                                                                              182/221
  Cleanup    : python-libs-2.7.5-89.0.1.el7.x86_64                                                                                      183/221
  Cleanup    : 1:grub2-tools-minimal-2.02-0.87.0.1.el7.x86_64                                                                           184/221
  Cleanup    : kpartx-0.4.9-133.0.1.el7.x86_64                                                                                          185/221
  Cleanup    : 7:device-mapper-libs-1.02.170-6.0.3.el7.x86_64                                                                           186/221
  Cleanup    : 7:device-mapper-1.02.170-6.0.3.el7.x86_64                                                                                187/221
  Cleanup    : systemd-219-78.0.1.el7.x86_64                                                                                            188/221
  Cleanup    : util-linux-2.23.2-65.0.1.el7.x86_64                                                                                      189/221
  Cleanup    : libcurl-7.29.0-59.0.1.el7.x86_64                                                                                         190/221
  Cleanup    : openldap-2.4.44-22.el7.x86_64                                                                                            191/221
  Cleanup    : nss-tools-3.53.1-3.el7_9.x86_64                                                                                          192/221
  Cleanup    : libmount-2.23.2-65.0.1.el7.x86_64                                                                                        193/221
  Cleanup    : libblkid-2.23.2-65.0.1.el7.x86_64                                                                                        194/221
  Cleanup    : nss-sysinit-3.53.1-3.el7_9.x86_64                                                                                        195/221
  Cleanup    : nss-3.53.1-3.el7_9.x86_64                                                                                                196/221
  Cleanup    : coreutils-8.22-24.0.1.el7.x86_64                                                                                         197/221
  Cleanup    : 1:openssl-libs-1.0.2k-19.0.1.el7.x86_64                                                                                  198/221
  Cleanup    : freetype-2.8-14.el7.x86_64                                                                                               199/221
  Cleanup    : zlib-1.2.7-18.el7                                                                                                        200/221
  Cleanup    : libuuid-2.23.2-65.0.1.el7                                                                                                201/221
  Cleanup    : libsmartcols-2.23.2-65.0.1.el7.x86_64                                                                                    202/221
  Cleanup    : systemd-libs-219-78.0.1.el7.x86_64                                                                                       203/221
  Cleanup    : libldb-1.5.4-1.el7.x86_64                                                                                                204/221
  Cleanup    : libsss_idmap-1.16.5-10.0.1.el7_9.5.x86_64                                                                                205/221
  Cleanup    : libsss_nss_idmap-1.16.5-10.0.1.el7_9.5.x86_64                                                                            206/221
  Cleanup    : libsss_autofs-1.16.5-10.0.1.el7_9.5.x86_64                                                                               207/221
  Cleanup    : libsss_sudo-1.16.5-10.0.1.el7_9.5.x86_64                                                                                 208/221
  Cleanup    : 2:vim-minimal-7.4.629-7.0.1.el7.x86_64                                                                                   209/221
  Cleanup    : device-mapper-persistent-data-0.8.5-3.el7.x86_64                                                                         210/221
  Cleanup    : screen-4.1.0-0.26.20120314git3c2946.el7.x86_64                                                                           211/221
  Cleanup    : nettle-2.7.1-8.el7.x86_64                                                                                                212/221
  Cleanup    : 1:grub2-common-2.02-0.87.0.1.el7.noarch                                                                                  213/221
  Cleanup    : 2:vim-filesystem-7.4.629-7.0.1.el7.x86_64                                                                                214/221
  Cleanup    : kernel-headers-3.10.0-1160.2.1.el7.x86_64                                                                                215/221
  Cleanup    : libX11-common-1.6.7-2.el7.noarch                                                                                         216/221
  Cleanup    : 32:bind-license-9.11.4-26.P2.el7.noarch                                                                                  217/221
  Cleanup    : tzdata-java-2020a-1.el7.noarch                                                                                           218/221
  Cleanup    : glibc-common-2.17-317.0.1.el7.x86_64                                                                                     219/221
  Cleanup    : glibc-2.17-317.0.1.el7                                                                                                   220/221
  Cleanup    : tzdata-2020a-1.el7.noarch                                                                                                221/221
 
Installed:
  kernel-devel.x86_64 0:3.10.0-1160.24.1.el7  kernel-uek.x86_64 0:4.1.12-124.50.2.el7uek  kernel-uek-firmware.noarch 0:4.1.12-124.50.2.el7uek
 
Updated:
  bind.x86_64 32:9.11.4-26.P2.el7_9.5                                  bind-export-libs.x86_64 32:9.11.4-26.P2.el7_9.5
  bind-libs.x86_64 32:9.11.4-26.P2.el7_9.5                             bind-libs-lite.x86_64 32:9.11.4-26.P2.el7_9.5
  bind-license.noarch 32:9.11.4-26.P2.el7_9.5                          bind-utils.x86_64 32:9.11.4-26.P2.el7_9.5
  binutils.x86_64 0:2.27-44.base.0.3.el7                               coreutils.x86_64 0:8.22-24.0.1.el7_9.2
  curl.x86_64 0:7.29.0-59.0.1.el7_9.1                                  device-mapper.x86_64 7:1.02.170-6.0.3.el7_9.3
  device-mapper-event.x86_64 7:1.02.170-6.0.3.el7_9.3                  device-mapper-event-libs.x86_64 7:1.02.170-6.0.3.el7_9.3
  device-mapper-libs.x86_64 7:1.02.170-6.0.3.el7_9.3                   device-mapper-multipath.x86_64 0:0.4.9-134.0.1.el7_9
  device-mapper-multipath-libs.x86_64 0:0.4.9-134.0.1.el7_9            device-mapper-persistent-data.x86_64 0:0.8.5-3.el7_9.2
  dracut.x86_64 0:033-572.0.3.el7                                      dracut-fips.x86_64 0:033-572.0.3.el7
  dracut-fips-aesni.x86_64 0:033-572.0.3.el7                           dracut-network.x86_64 0:033-572.0.3.el7
  freetype.x86_64 0:2.8-14.el7_9.1                                     glib2.x86_64 0:2.56.1-8.el7
  glibc.i686 0:2.17-322.0.1.el7_9                                      glibc.x86_64 0:2.17-322.0.1.el7_9
  glibc-common.x86_64 0:2.17-322.0.1.el7_9                             glibc-devel.x86_64 0:2.17-322.0.1.el7_9
  glibc-headers.x86_64 0:2.17-322.0.1.el7_9                            grub2.x86_64 1:2.02-0.87.0.9.el7_9.6
  grub2-common.noarch 1:2.02-0.87.0.9.el7_9.6                          grub2-efi-x64.x86_64 1:2.02-0.87.0.9.el7_9.6
  grub2-pc.x86_64 1:2.02-0.87.0.9.el7_9.6                              grub2-pc-modules.noarch 1:2.02-0.87.0.9.el7_9.6
  grub2-tools.x86_64 1:2.02-0.87.0.9.el7_9.6                           grub2-tools-extra.x86_64 1:2.02-0.87.0.9.el7_9.6
  grub2-tools-minimal.x86_64 1:2.02-0.87.0.9.el7_9.6                   initscripts.x86_64 0:9.49.53-1.0.1.el7_9.1
  iscsi-initiator-utils.x86_64 0:6.2.0.874-20.0.1.el7_9                iscsi-initiator-utils-iscsiuio.x86_64 0:6.2.0.874-20.0.1.el7_9
  kernel-headers.x86_64 0:3.10.0-1160.24.1.el7                         kexec-tools.x86_64 0:2.0.15-51.0.3.el7_9.1
  kpartx.x86_64 0:0.4.9-134.0.1.el7_9                                  libX11.x86_64 0:1.6.7-3.el7_9
  libX11-common.noarch 0:1.6.7-3.el7_9                                 libblkid.x86_64 0:2.23.2-65.0.1.el7_9.1
  libcurl.x86_64 0:7.29.0-59.0.1.el7_9.1                               libgudev1.x86_64 0:219-78.0.1.el7_9.3
  libipa_hbac.x86_64 0:1.16.5-10.0.1.el7_9.7                           libldb.x86_64 0:1.5.4-2.el7_9
  libmount.x86_64 0:2.23.2-65.0.1.el7_9.1                              libsmartcols.x86_64 0:2.23.2-65.0.1.el7_9.1
  libsmbclient.x86_64 0:4.10.16-9.el7_9                                libsss_autofs.x86_64 0:1.16.5-10.0.1.el7_9.7
  libsss_certmap.x86_64 0:1.16.5-10.0.1.el7_9.7                        libsss_idmap.x86_64 0:1.16.5-10.0.1.el7_9.7
  libsss_nss_idmap.x86_64 0:1.16.5-10.0.1.el7_9.7                      libsss_sudo.x86_64 0:1.16.5-10.0.1.el7_9.7
  libuuid.i686 0:2.23.2-65.0.1.el7_9.1                                 libuuid.x86_64 0:2.23.2-65.0.1.el7_9.1
  libwbclient.x86_64 0:4.10.16-9.el7_9                                 lvm2.x86_64 7:2.02.187-6.0.3.el7_9.3
  lvm2-libs.x86_64 7:2.02.187-6.0.3.el7_9.3                            mokutil.x86_64 0:15.3-1.0.5.el7
  nettle.x86_64 0:2.7.1-9.el7_9                                        nss.x86_64 0:3.53.1-7.el7_9
  nss-sysinit.x86_64 0:3.53.1-7.el7_9                                  nss-tools.x86_64 0:3.53.1-7.el7_9
  openldap.x86_64 0:2.4.44-23.el7_9                                    openssl.x86_64 1:1.0.2k-21.el7_9
  openssl-libs.x86_64 1:1.0.2k-21.el7_9                                perl.x86_64 4:5.16.3-299.el7_9
  perl-IO-Zlib.noarch 1:1.10-299.el7_9                                 perl-Pod-Escapes.noarch 1:1.04-299.el7_9
  perl-libs.x86_64 4:5.16.3-299.el7_9                                  perl-macros.x86_64 4:5.16.3-299.el7_9
  python.x86_64 0:2.7.5-90.0.3.el7                                     python-libs.x86_64 0:2.7.5-90.0.3.el7
  python-sssdconfig.noarch 0:1.16.5-10.0.1.el7_9.7                     samba-client-libs.x86_64 0:4.10.16-9.el7_9
  samba-common.noarch 0:4.10.16-9.el7_9                                samba-common-libs.x86_64 0:4.10.16-9.el7_9
  screen.x86_64 0:4.1.0-0.27.20120314git3c2946.el7_9                   selinux-policy.noarch 0:3.13.1-268.0.1.el7_9.2
  selinux-policy-targeted.noarch 0:3.13.1-268.0.1.el7_9.2              shim-x64.x86_64 0:15.3-1.0.5.el7
  sos.noarch 0:3.9-5.0.3.el7_9.2                                       sssd.x86_64 0:1.16.5-10.0.1.el7_9.7
  sssd-ad.x86_64 0:1.16.5-10.0.1.el7_9.7                               sssd-client.x86_64 0:1.16.5-10.0.1.el7_9.7
  sssd-common.x86_64 0:1.16.5-10.0.1.el7_9.7                           sssd-common-pac.x86_64 0:1.16.5-10.0.1.el7_9.7
  sssd-ipa.x86_64 0:1.16.5-10.0.1.el7_9.7                              sssd-krb5.x86_64 0:1.16.5-10.0.1.el7_9.7
  sssd-krb5-common.x86_64 0:1.16.5-10.0.1.el7_9.7                      sssd-ldap.x86_64 0:1.16.5-10.0.1.el7_9.7
  sssd-proxy.x86_64 0:1.16.5-10.0.1.el7_9.7                            sudo.x86_64 0:1.8.23-10.el7_9.1
  systemd.x86_64 0:219-78.0.1.el7_9.3                                  systemd-libs.x86_64 0:219-78.0.1.el7_9.3
  systemd-sysv.x86_64 0:219-78.0.1.el7_9.3                             tcsh.x86_64 0:6.18.01-17.el7_9.1
  tzdata.noarch 0:2021a-1.el7                                          tzdata-java.noarch 0:2021a-1.el7
  util-linux.x86_64 0:2.23.2-65.0.1.el7_9.1                            vim-common.x86_64 2:7.4.629-8.0.1.el7_9
  vim-enhanced.x86_64 2:7.4.629-8.0.1.el7_9                            vim-filesystem.x86_64 2:7.4.629-8.0.1.el7_9
  vim-minimal.x86_64 2:7.4.629-8.0.1.el7_9                             zlib.i686 0:1.2.7-19.el7_9
  zlib.x86_64 0:1.2.7-19.el7_9
 
Complete!
[root@luxor ~]#

Reiniciando o ambiente:

[root@luxor ~]# reboot

Verificando que a versão de Kernel do Sistema Operacional foi atualizado:

[opc@luxor ~]$ sudo su -
Last login: Sun May 30 09:31:45 UTC 2021
[root@luxor ~]# uname -r
4.1.12-124.50.2.el7uek.x86_64

Obs: Este procedimento foi criado pelo senhor Ahmed Baraka (www.ahmedbaraka.com) e foi apenas reproduzido por mim em um laboratório pessoal para fins de aprendizado.

Leave a Comment

Your email address will not be published.