Upgrade Oracle Private Agent Factory 26.4 to 26.7
If you're running Oracle's AI Database Private Agent Factory (PAF) on-premises or in a self-managed OCI VM, you've probably seen the 26.7 release land with some solid enhancements — and you're wondering what a clean upgrade path from 26.4 looks like in practice. I recently walked two of my own PAF hosts through this upgrade, and I wanted to put together a straightforward guide covering exactly what I did, in the order I did it.
==> Before You Start
A few things worth having in place before you touch anything:
1. Local administrator credentials, ready to hand.
If you have SSO configured, note this carefully: upgrading from 26.4 to 26.7 completes a required role transition that **automatically disables SSO**, and redirects users to local login afterward. Make sure you have working local admin credentials before you begin, so you're not locked out right after a successful upgrade. You can re-enable SSO afterward through Configure SSO in the application settings.
2. A maintenance window.
The upgrade briefly takes the application offline while the container is rebuilt and restarted. If you have active users or scheduled workflows relying on this instance, give them a heads-up.
3. An independent backup of your PAF volume.
PAF's installer takes its own internal snapshot as part of the upgrade process, but it's good practice to also take your own, outside that mechanism, before you start:
```bash
tar -czf /u01/staging_volume_backup_$(date +%Y%m%d_%H%M).tar.gz \
-C /u01/staging/applied-ai volume
```
Copy this off the VM if you can — Object Storage, another host, wherever is convenient — so it's not sitting only on the volume you're about to upgrade.
==> Prerequisites
Shell environment.
If you're running rootless Podman (which PAF typically does), make sure `XDG_RUNTIME_DIR` is set correctly in your session:
```bash
export XDG_RUNTIME_DIR=/run/user/$(id -u)
```
SELinux set to permissive for the duration of the upgrade.
Oracle's own upgrade documentation calls for this explicitly:
```bash
sudo setenforce permissive
getenforce
```
Get the New Installer in Place
Download and extract the 26.7 installer to your staging directory:
```bash
cd <directory where the zip was copied>
tar xzf <installer>.tar.gz
```
This gives you a fresh staging directory (in my case, `/u01/staging267`) alongside your existing installation.
Reset the Installer State
This ensures every step of the installer re-runs cleanly, rather than skipping steps it thinks are already complete from a previous session:
```bash
cd /u01/staging267
bash interactive_install.sh --reset
```
You should see:
```
[WARNING] Resetting installer state. All steps will be re-run.
[SUCCESS] State directory cleared.
```
==> ==> Run the Upgrade <== <==
Back in your main terminal:
```bash
export XDG_RUNTIME_DIR=/run/user/$(id -u)
cd /u01/staging267
bash interactive_install.sh
```
Below is the full log.[cbtpafadm@vmcbtpaf staging267]$ bash interactive_install.sh
================================================================
Oracle Private AI Agent agent_factory Interactive Installer ��
================================================================
[INFO] This script will guide you through the setup process.
[INFO] Completed steps will be skipped on reruns.
[WARNING] Please run this script as a non-root user.
[INFO] Metadata detected at '/home/cbtpafadm/.local/state/Oracle/AgentFactory/metadata.json'. Running upgrade flow for 'cbtpafadm'.
[INFO] Ensuring ownership of '/u01/staging/applied-ai/volume'.
[sudo] password for cbtpafadm:
[INFO] Running 'make build' for upgrade.
bash build-image.sh
Successfully connected to container-registry.oracle.com
1) prod
2) quickstart
Enter choice (1 or 2): 1
Building the images necessary in Production mode
You selected Production mode. Confirm? (yes/no) [yes]: yes
Trying to pull container-registry.oracle.com/os/oraclelinux:8...
Getting image source signatures
Copying blob a07901e555e5 done |
Copying config 7f4b318c3c done |
Writing manifest to image destination
7f4b318c3ca7d070070b59ca304acac099fcf7cb121efe1b55d26d80deee304a
STEP 1/25: FROM container-registry.oracle.com/os/oraclelinux:8
STEP 2/25: ARG http_proxy
--> eeb0876d1867
STEP 3/25: ARG https_proxy
--> d038b0101c82
STEP 4/25: ARG HTTP_PROXY
--> 7f4ab76e822e
STEP 5/25: ARG HTTPS_PROXY
--> f17b4d4bd113
STEP 6/25: ARG ARCH=x86_64
--> b7de8601806d
STEP 7/25: ARG JDK_ARCH=x64
--> 43842c9ee791
STEP 8/25: ARG JDK_MAJOR=26
--> fc107d22a33b
STEP 9/25: ENV ARCH=${ARCH}
--> e7807f796c1b
STEP 10/25: ENV JDK_ARCH=${JDK_ARCH}
--> 6eea57f4cd45
STEP 11/25: RUN yum install -y https://download.oracle.com/java/${JDK_MAJOR}/latest/jdk-${JDK_MAJOR}_linux-${JDK_ARCH}_bin.rpm https://download.oracle.com/otn_software/linux/instantclient/2370000/oracle-instantclient-basic-23.7.0.25.01-1.el8.${ARCH}.rpm https://download.oracle.com/otn_software/linux/instantclient/2370000/oracle-instantclient-sqlplus-23.7.0.25.01-1.el8.${ARCH}.rpm https://download.oracle.com/otn_software/linux/instantclient/2370000/oracle-instantclient-tools-23.7.0.25.01-1.el8.${ARCH}.rpm bash vim wget curl cronie hostname unzip libgfortran libgomp openblas numactl libomp gtk3 alsa-lib libX11-xcb libatomic file zip gcc && JDK_HOME="$(find /usr/lib/jvm -maxdepth 1 -type d -name "jdk-${JDK_MAJOR}.*-oracle-${JDK_ARCH}" | sort -V | tail -n 1)" && test -n "$JDK_HOME" && ln -sfn "$JDK_HOME" "/usr/lib/jvm/jdk-${JDK_MAJOR}-oracle-${JDK_ARCH}" && test "$(readlink -f "/usr/lib/jvm/jdk-${JDK_MAJOR}-oracle-${JDK_ARCH}")" = "$JDK_HOME" && test -x "/usr/lib/jvm/jdk-${JDK_MAJOR}-oracle-${JDK_ARCH}/bin/java" && "/usr/lib/jvm/jdk-${JDK_MAJOR}-oracle-${JDK_ARCH}/bin/java" -version && yum clean all && rm -rf /var/cache/yum
Oracle Linux 8 BaseOS Latest (x86_64) 217 MB/s | 159 MB 00:00
Oracle Linux 8 Application Stream (x86_64) 161 MB/s | 85 MB 00:00
Last metadata expiration check: 0:00:15 ago on Fri Aug 21 11:46:29 2026.
Oracle Linux 8 BaseOS Latest (x86_64) 217 MB/s | 159 MB 00:00
Oracle Linux 8 Application Stream (x86_64) 161 MB/s | 85 MB 00:00
Last metadata expiration check: 0:00:15 ago on Fri Aug 21 11:46:29 2026.
jdk-26_linux-x64_bin.rpm 106 MB/s | 211 MB 00:01
oracle-instantclient-basic-23.7.0.25.01-1.el8.x 122 MB/s | 79 MB 00:00
oracle-instantclient-sqlplus-23.7.0.25.01-1.el8 13 MB/s | 4.6 MB 00:00
oracle-instantclient-tools-23.7.0.25.01-1.el8.x 3.7 MB/s | 1.1 MB 00:00
Package bash-4.4.20-6.el8_10.x86_64 is already installed.
Package curl-7.61.1-34.el8_10.11.x86_64 is already installed.
Dependencies resolved.
========================================================================================================
Package Arch Version Repository Size
========================================================================================================
Installing:
alsa-lib x86_64 1.2.10-2.el8 ol8_appstream 500 k
cronie x86_64 1.5.2-10.el8 ol8_baseos_latest 118 k
file x86_64 5.33-27.el8_10 ol8_baseos_latest 76 k
gcc x86_64 8.5.0-28.0.1.el8_10 ol8_appstream 24 M
gtk3 x86_64 3.22.30-12.el8_10 ol8_appstream 4.5 M
hostname x86_64 3.20-6.el8 ol8_baseos_latest 32 k
jdk-26 x86_64 2000:26.0.2.1-1 @commandline 211 M
libX11-xcb x86_64 1.6.8-9.el8_10 ol8_appstream 14 k
libatomic x86_64 8.5.0-28.0.1.el8_10 ol8_baseos_latest 37 k
libgfortran x86_64 8.5.0-28.0.1.el8_10 ol8_baseos_latest 656 k
libgomp x86_64 8.5.0-28.0.1.el8_10 ol8_baseos_latest 219 k
libomp x86_64 21.1.8-1.module+el8.10.0+90887+a5269809 ol8_appstream 979 k
numactl x86_64 2.0.16-4.el8 ol8_baseos_latest 75 k
openblas x86_64 0.3.15-6.el8 ol8_appstream 5.0 M
oracle-instantclient-basic x86_64 23.7.0.25.01-1.el8 @commandline 79 M
oracle-instantclient-sqlplus x86_64 23.7.0.25.01-1.el8 @commandline 4.6 M
oracle-instantclient-tools x86_64 23.7.0.25.01-1.el8 @commandline 1.1 M
unzip x86_64 6.0-48.0.1.el8_10 ol8_baseos_latest 195 k
vim-enhanced x86_64 2:8.0.1763-31.0.1.el8_10 ol8_appstream 1.4 M
wget x86_64 1.19.5-12.0.1.el8_10 ol8_appstream 733 k
zip x86_64 3.0-23.el8 ol8_baseos_latest 270 k
Installing dependencies:
adwaita-cursor-theme noarch 3.28.0-3.el8 ol8_appstream 647 k
adwaita-icon-theme noarch 3.28.0-3.el8 ol8_appstream 11 M
at-spi2-atk x86_64 2.26.2-1.el8 ol8_appstream 89 k
at-spi2-core x86_64 2.28.0-1.el8 ol8_appstream 169 k
atk x86_64 2.28.1-1.el8 ol8_appstream 272 k
avahi-libs x86_64 0.7-27.el8_10.1 ol8_baseos_latest 61 k
binutils x86_64 2.30-128.0.1.el8_10 ol8_baseos_latest 5.9 M
cairo x86_64 1.15.12-6.el8 ol8_appstream 719 k
cairo-gobject x86_64 1.15.12-6.el8 ol8_appstream 33 k
colord-libs x86_64 1.4.2-1.el8 ol8_appstream 236 k
cpp x86_64 8.5.0-28.0.1.el8_10 ol8_appstream 10 M
cronie-anacron x86_64 1.5.2-10.el8 ol8_baseos_latest 41 k
crontabs noarch 1.11-17.20190603git.el8 ol8_baseos_latest 25 k
cups-libs x86_64 1:2.2.6-68.el8_10 ol8_baseos_latest 437 k
dejavu-fonts-common noarch 2.35-7.el8 ol8_baseos_latest 74 k
dejavu-sans-mono-fonts noarch 2.35-7.el8 ol8_baseos_latest 447 k
fontconfig x86_64 2.13.1-4.el8 ol8_baseos_latest 274 k
fontpackages-filesystem noarch 1.44-22.el8 ol8_baseos_latest 16 k
freetype x86_64 2.9.1-10.el8_10 ol8_baseos_latest 393 k
fribidi x86_64 1.0.4-9.el8 ol8_appstream 89 k
gdk-pixbuf2 x86_64 2.36.12-8.el8_10 ol8_baseos_latest 465 k
gdk-pixbuf2-modules x86_64 2.36.12-8.el8_10 ol8_appstream 108 k
glib-networking x86_64 2.56.1-1.1.el8 ol8_baseos_latest 155 k
glibc-devel x86_64 2.28-251.0.5.el8_10.40 ol8_baseos_latest 98 k
glibc-gconv-extra x86_64 2.28-251.0.5.el8_10.40 ol8_baseos_latest 1.6 M
glibc-headers x86_64 2.28-251.0.5.el8_10.40 ol8_baseos_latest 503 k
gpm-libs x86_64 1.20.7-17.el8 ol8_appstream 39 k
graphite2 x86_64 1.3.10-10.el8 ol8_appstream 122 k
gsettings-desktop-schemas x86_64 3.32.0-6.el8 ol8_baseos_latest 633 k
gtk-update-icon-cache x86_64 3.22.30-12.el8_10 ol8_appstream 31 k
harfbuzz x86_64 1.7.5-4.el8 ol8_appstream 295 k
hicolor-icon-theme noarch 0.17-2.el8 ol8_appstream 48 k
isl x86_64 0.16.1-6.el8 ol8_appstream 841 k
jasper-libs x86_64 2.0.14-6.el8_10 ol8_appstream 165 k
jbigkit-libs x86_64 2.1-14.el8 ol8_appstream 55 k
json-glib x86_64 1.4.4-1.el8 ol8_baseos_latest 144 k
kernel-headers x86_64 4.18.0-553.155.1.el8_10 ol8_baseos_latest 12 M
lcms2 x86_64 2.9-2.el8 ol8_appstream 164 k
libX11 x86_64 1.6.8-9.el8_10 ol8_appstream 611 k
libX11-common noarch 1.6.8-9.el8_10 ol8_appstream 157 k
libXau x86_64 1.0.9-3.el8 ol8_appstream 37 k
libXcomposite x86_64 0.4.4-14.el8 ol8_appstream 28 k
libXcursor x86_64 1.1.15-3.el8 ol8_appstream 36 k
libXdamage x86_64 1.1.4-14.el8 ol8_appstream 27 k
libXext x86_64 1.3.4-1.el8 ol8_appstream 45 k
libXfixes x86_64 5.0.3-7.el8 ol8_appstream 25 k
libXft x86_64 2.3.3-1.el8 ol8_appstream 67 k
libXi x86_64 1.7.10-1.el8 ol8_appstream 49 k
libXinerama x86_64 1.1.4-1.el8 ol8_appstream 15 k
libXrandr x86_64 1.5.2-1.el8 ol8_appstream 34 k
libXrender x86_64 0.9.10-7.el8 ol8_appstream 33 k
libXtst x86_64 1.2.3-7.el8 ol8_appstream 22 k
libdatrie x86_64 0.2.9-7.el8 ol8_appstream 33 k
libepoxy x86_64 1.5.8-1.el8 ol8_appstream 225 k
libgusb x86_64 0.3.0-1.el8 ol8_baseos_latest 49 k
libjpeg-turbo x86_64 1.5.3-14.el8_10 ol8_appstream 156 k
libmetalink x86_64 0.1.3-7.el8 ol8_baseos_latest 32 k
libmodman x86_64 2.0.1-17.el8 ol8_baseos_latest 36 k
libmpc x86_64 1.1.0-9.1.el8 ol8_appstream 61 k
libpkgconf x86_64 1.4.2-1.el8 ol8_baseos_latest 35 k
libpng x86_64 2:1.6.34-11.el8_10 ol8_baseos_latest 126 k
libproxy x86_64 0.4.15-5.5.el8_10 ol8_baseos_latest 72 k
libquadmath x86_64 8.5.0-28.0.1.el8_10 ol8_baseos_latest 183 k
libsoup x86_64 2.62.3-14.el8_10 ol8_baseos_latest 426 k
libthai x86_64 0.1.27-2.el8 ol8_appstream 203 k
libtiff x86_64 4.0.9-38.el8_10 ol8_appstream 190 k
libwayland-client x86_64 1.21.0-1.el8 ol8_appstream 41 k
libwayland-cursor x86_64 1.21.0-1.el8 ol8_appstream 26 k
libwayland-egl x86_64 1.21.0-1.el8 ol8_appstream 19 k
libxcb x86_64 1.13.1-1.el8 ol8_appstream 231 k
libxcrypt-devel x86_64 4.1.1-6.el8 ol8_baseos_latest 25 k
libxkbcommon x86_64 0.9.1-1.el8 ol8_appstream 116 k
llvm-filesystem x86_64 21.1.8-1.module+el8.10.0+90887+a5269809 ol8_appstream 37 k
llvm-libs x86_64 21.1.8-1.module+el8.10.0+90887+a5269809 ol8_appstream 36 M
numactl-libs x86_64 2.0.16-4.el8 ol8_baseos_latest 36 k
pango x86_64 1.42.4-8.el8 ol8_appstream 297 k
pixman x86_64 0.38.4-4.el8 ol8_appstream 256 k
pkgconf x86_64 1.4.2-1.el8 ol8_baseos_latest 38 k
pkgconf-m4 noarch 1.4.2-1.el8 ol8_baseos_latest 17 k
pkgconf-pkg-config x86_64 1.4.2-1.el8 ol8_baseos_latest 15 k
rest x86_64 0.8.1-3.el8_10 ol8_appstream 69 k
shared-mime-info x86_64 1.9-4.el8 ol8_baseos_latest 328 k
vim-common x86_64 2:8.0.1763-31.0.1.el8_10 ol8_appstream 6.3 M
vim-filesystem noarch 2:8.0.1763-31.0.1.el8_10 ol8_appstream 52 k
which x86_64 2.21-21.el8_10 ol8_baseos_latest 49 k
xkeyboard-config noarch 2.28-1.el8 ol8_appstream 782 k
Installing weak dependencies:
abattis-cantarell-fonts noarch 0.0.25-6.el8 ol8_appstream 155 k
dconf x86_64 0.28.0-4.0.1.el8 ol8_appstream 108 k
Enabling module streams:
llvm-toolset ol8
Transaction Summary
========================================================================================================
Install 109 Packages
Total size: 431 M
Total download size: 135 M
Installed size: 1.1 G
Downloading Packages:
(1/105): cronie-1.5.2-10.el8.x86_64.rpm 3.7 MB/s | 118 kB 00:00
(2/105): avahi-libs-0.7-27.el8_10.1.x86_64.rpm 1.8 MB/s | 61 kB 00:00
(3/105): cronie-anacron-1.5.2-10.el8.x86_64.rpm 16 MB/s | 41 kB 00:00
(4/105): crontabs-1.11-17.20190603git.el8.noarc 2.9 MB/s | 25 kB 00:00
(5/105): cups-libs-2.2.6-68.el8_10.x86_64.rpm 44 MB/s | 437 kB 00:00
(6/105): dejavu-fonts-common-2.35-7.el8.noarch. 19 MB/s | 74 kB 00:00
(7/105): file-5.33-27.el8_10.x86_64.rpm 25 MB/s | 76 kB 00:00
(8/105): dejavu-sans-mono-fonts-2.35-7.el8.noar 63 MB/s | 447 kB 00:00
(9/105): fontconfig-2.13.1-4.el8.x86_64.rpm 48 MB/s | 274 kB 00:00
(10/105): fontpackages-filesystem-1.44-22.el8.n 3.6 MB/s | 16 kB 00:00
(11/105): freetype-2.9.1-10.el8_10.x86_64.rpm 64 MB/s | 393 kB 00:00
(12/105): gdk-pixbuf2-2.36.12-8.el8_10.x86_64.r 56 MB/s | 465 kB 00:00
(13/105): glibc-devel-2.28-251.0.5.el8_10.40.x8 34 MB/s | 98 kB 00:00
(14/105): glib-networking-2.56.1-1.1.el8.x86_64 10 MB/s | 155 kB 00:00
(15/105): glibc-headers-2.28-251.0.5.el8_10.40. 64 MB/s | 503 kB 00:00
(16/105): glibc-gconv-extra-2.28-251.0.5.el8_10 78 MB/s | 1.6 MB 00:00
(17/105): binutils-2.30-128.0.1.el8_10.x86_64.r 61 MB/s | 5.9 MB 00:00
(18/105): hostname-3.20-6.el8.x86_64.rpm 3.4 MB/s | 32 kB 00:00
(19/105): json-glib-1.4.4-1.el8.x86_64.rpm 43 MB/s | 144 kB 00:00
(20/105): gsettings-desktop-schemas-3.32.0-6.el 31 MB/s | 633 kB 00:00
(21/105): libatomic-8.5.0-28.0.1.el8_10.x86_64. 5.5 MB/s | 37 kB 00:00
(22/105): libgomp-8.5.0-28.0.1.el8_10.x86_64.rp 36 MB/s | 219 kB 00:00
(23/105): libgusb-0.3.0-1.el8.x86_64.rpm 19 MB/s | 49 kB 00:00
(24/105): libmetalink-0.1.3-7.el8.x86_64.rpm 8.4 MB/s | 32 kB 00:00
(25/105): libmodman-2.0.1-17.el8.x86_64.rpm 9.8 MB/s | 36 kB 00:00
(26/105): libpkgconf-1.4.2-1.el8.x86_64.rpm 16 MB/s | 35 kB 00:00
(27/105): libgfortran-8.5.0-28.0.1.el8_10.x86_6 24 MB/s | 656 kB 00:00
(28/105): libproxy-0.4.15-5.5.el8_10.x86_64.rpm 25 MB/s | 72 kB 00:00
(29/105): libpng-1.6.34-11.el8_10.x86_64.rpm 12 MB/s | 126 kB 00:00
(30/105): libquadmath-8.5.0-28.0.1.el8_10.x86_6 39 MB/s | 183 kB 00:00
(31/105): libxcrypt-devel-4.1.1-6.el8.x86_64.rp 12 MB/s | 25 kB 00:00
(32/105): numactl-2.0.16-4.el8.x86_64.rpm 22 MB/s | 75 kB 00:00
(33/105): libsoup-2.62.3-14.el8_10.x86_64.rpm 55 MB/s | 426 kB 00:00
(34/105): numactl-libs-2.0.16-4.el8.x86_64.rpm 15 MB/s | 36 kB 00:00
(35/105): pkgconf-1.4.2-1.el8.x86_64.rpm 16 MB/s | 38 kB 00:00
(36/105): pkgconf-m4-1.4.2-1.el8.noarch.rpm 7.7 MB/s | 17 kB 00:00
(37/105): pkgconf-pkg-config-1.4.2-1.el8.x86_64 5.8 MB/s | 15 kB 00:00
(38/105): unzip-6.0-48.0.1.el8_10.x86_64.rpm 40 MB/s | 195 kB 00:00
(39/105): shared-mime-info-1.9-4.el8.x86_64.rpm 32 MB/s | 328 kB 00:00
(40/105): zip-3.0-23.el8.x86_64.rpm 62 MB/s | 270 kB 00:00
(41/105): which-2.21-21.el8_10.x86_64.rpm 5.8 MB/s | 49 kB 00:00
(42/105): abattis-cantarell-fonts-0.0.25-6.el8. 48 MB/s | 155 kB 00:00
(43/105): adwaita-cursor-theme-3.28.0-3.el8.noa 54 MB/s | 647 kB 00:00
(44/105): alsa-lib-1.2.10-2.el8.x86_64.rpm 62 MB/s | 500 kB 00:00
(45/105): at-spi2-atk-2.26.2-1.el8.x86_64.rpm 17 MB/s | 89 kB 00:00
(46/105): at-spi2-core-2.28.0-1.el8.x86_64.rpm 13 MB/s | 169 kB 00:00
(47/105): atk-2.28.1-1.el8.x86_64.rpm 52 MB/s | 272 kB 00:00
(48/105): kernel-headers-4.18.0-553.155.1.el8_1 88 MB/s | 12 MB 00:00
(49/105): cairo-gobject-1.15.12-6.el8.x86_64.rp 13 MB/s | 33 kB 00:00
(50/105): cairo-1.15.12-6.el8.x86_64.rpm 23 MB/s | 719 kB 00:00
(51/105): colord-libs-1.4.2-1.el8.x86_64.rpm 42 MB/s | 236 kB 00:00
(52/105): dconf-0.28.0-4.0.1.el8.x86_64.rpm 3.9 MB/s | 108 kB 00:00
(53/105): fribidi-1.0.4-9.el8.x86_64.rpm 12 MB/s | 89 kB 00:00
(54/105): adwaita-icon-theme-3.28.0-3.el8.noarc 78 MB/s | 11 MB 00:00
(55/105): gdk-pixbuf2-modules-2.36.12-8.el8_10. 6.6 MB/s | 108 kB 00:00
(56/105): gpm-libs-1.20.7-17.el8.x86_64.rpm 3.8 MB/s | 39 kB 00:00
(57/105): graphite2-1.3.10-10.el8.x86_64.rpm 37 MB/s | 122 kB 00:00
(58/105): gtk-update-icon-cache-3.22.30-12.el8_ 6.3 MB/s | 31 kB 00:00
(59/105): cpp-8.5.0-28.0.1.el8_10.x86_64.rpm 77 MB/s | 10 MB 00:00
(60/105): harfbuzz-1.7.5-4.el8.x86_64.rpm 48 MB/s | 295 kB 00:00
(61/105): hicolor-icon-theme-0.17-2.el8.noarch. 15 MB/s | 48 kB 00:00
(62/105): isl-0.16.1-6.el8.x86_64.rpm 68 MB/s | 841 kB 00:00
(63/105): jasper-libs-2.0.14-6.el8_10.x86_64.rp 38 MB/s | 165 kB 00:00
(64/105): jbigkit-libs-2.1-14.el8.x86_64.rpm 17 MB/s | 55 kB 00:00
(65/105): lcms2-2.9-2.el8.x86_64.rpm 35 MB/s | 164 kB 00:00
(66/105): gtk3-3.22.30-12.el8_10.x86_64.rpm 61 MB/s | 4.5 MB 00:00
(67/105): libX11-common-1.6.8-9.el8_10.noarch.r 42 MB/s | 157 kB 00:00
(68/105): libX11-1.6.8-9.el8_10.x86_64.rpm 36 MB/s | 611 kB 00:00
(69/105): libX11-xcb-1.6.8-9.el8_10.x86_64.rpm 6.3 MB/s | 14 kB 00:00
(70/105): libXau-1.0.9-3.el8.x86_64.rpm 15 MB/s | 37 kB 00:00
(71/105): libXcomposite-0.4.4-14.el8.x86_64.rpm 12 MB/s | 28 kB 00:00
(72/105): libXcursor-1.1.15-3.el8.x86_64.rpm 13 MB/s | 36 kB 00:00
(73/105): libXdamage-1.1.4-14.el8.x86_64.rpm 9.3 MB/s | 27 kB 00:00
(74/105): libXext-1.3.4-1.el8.x86_64.rpm 17 MB/s | 45 kB 00:00
(75/105): libXfixes-5.0.3-7.el8.x86_64.rpm 2.5 MB/s | 25 kB 00:00
(76/105): libXft-2.3.3-1.el8.x86_64.rpm 6.9 MB/s | 67 kB 00:00
(77/105): libXinerama-1.1.4-1.el8.x86_64.rpm 4.9 MB/s | 15 kB 00:00
(78/105): libXrandr-1.5.2-1.el8.x86_64.rpm 14 MB/s | 34 kB 00:00
(79/105): libXrender-0.9.10-7.el8.x86_64.rpm 13 MB/s | 33 kB 00:00
(80/105): libXi-1.7.10-1.el8.x86_64.rpm 3.5 MB/s | 49 kB 00:00
(81/105): libdatrie-0.2.9-7.el8.x86_64.rpm 3.3 MB/s | 33 kB 00:00
(82/105): libXtst-1.2.3-7.el8.x86_64.rpm 1.5 MB/s | 22 kB 00:00
(83/105): libepoxy-1.5.8-1.el8.x86_64.rpm 57 MB/s | 225 kB 00:00
(84/105): libmpc-1.1.0-9.1.el8.x86_64.rpm 26 MB/s | 61 kB 00:00
(85/105): libomp-21.1.8-1.module+el8.10.0+90887 83 MB/s | 979 kB 00:00
(86/105): libjpeg-turbo-1.5.3-14.el8_10.x86_64. 8.1 MB/s | 156 kB 00:00
(87/105): libthai-0.1.27-2.el8.x86_64.rpm 57 MB/s | 203 kB 00:00
(88/105): libwayland-client-1.21.0-1.el8.x86_64 20 MB/s | 41 kB 00:00
(89/105): libwayland-cursor-1.21.0-1.el8.x86_64 9.0 MB/s | 26 kB 00:00
(90/105): libwayland-egl-1.21.0-1.el8.x86_64.rp 10 MB/s | 19 kB 00:00
(91/105): libtiff-4.0.9-38.el8_10.x86_64.rpm 14 MB/s | 190 kB 00:00
(92/105): libxcb-1.13.1-1.el8.x86_64.rpm 49 MB/s | 231 kB 00:00
(93/105): llvm-filesystem-21.1.8-1.module+el8.1 14 MB/s | 37 kB 00:00
(94/105): libxkbcommon-0.9.1-1.el8.x86_64.rpm 12 MB/s | 116 kB 00:00
(95/105): gcc-8.5.0-28.0.1.el8_10.x86_64.rpm 81 MB/s | 24 MB 00:00
(96/105): openblas-0.3.15-6.el8.x86_64.rpm 58 MB/s | 5.0 MB 00:00
(97/105): pango-1.42.4-8.el8.x86_64.rpm 8.1 MB/s | 297 kB 00:00
(98/105): pixman-0.38.4-4.el8.x86_64.rpm 16 MB/s | 256 kB 00:00
(99/105): rest-0.8.1-3.el8_10.x86_64.rpm 3.7 MB/s | 69 kB 00:00
(100/105): vim-common-8.0.1763-31.0.1.el8_10.x8 91 MB/s | 6.3 MB 00:00
(101/105): vim-enhanced-8.0.1763-31.0.1.el8_10. 20 MB/s | 1.4 MB 00:00
(102/105): vim-filesystem-8.0.1763-31.0.1.el8_1 8.0 MB/s | 52 kB 00:00
(103/105): wget-1.19.5-12.0.1.el8_10.x86_64.rpm 48 MB/s | 733 kB 00:00
(104/105): xkeyboard-config-2.28-1.el8.noarch.r 51 MB/s | 782 kB 00:00
(105/105): llvm-libs-21.1.8-1.module+el8.10.0+9 114 MB/s | 36 MB 00:00
--------------------------------------------------------------------------------
Total 161 MB/s | 135 MB 00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : libpng-2:1.6.34-11.el8_10.x86_64 1/109
Installing : freetype-2.9.1-10.el8_10.x86_64 2/109
Installing : libjpeg-turbo-1.5.3-14.el8_10.x86_64 3/109
Installing : fontpackages-filesystem-1.44-22.el8.noarch 4/109
Installing : cronie-anacron-1.5.2-10.el8.x86_64 5/109
Running scriptlet: cronie-anacron-1.5.2-10.el8.x86_64 5/109
Installing : cronie-1.5.2-10.el8.x86_64 6/109
Running scriptlet: cronie-1.5.2-10.el8.x86_64 6/109
Installing : crontabs-1.11-17.20190603git.el8.noarch 7/109
Installing : oracle-instantclient-basic-23.7.0.25.01-1.el8.x8 8/109
Running scriptlet: oracle-instantclient-basic-23.7.0.25.01-1.el8.x8 8/109
Installing : pixman-0.38.4-4.el8.x86_64 9/109
Installing : libwayland-client-1.21.0-1.el8.x86_64 10/109
Installing : libmpc-1.1.0-9.1.el8.x86_64 11/109
Installing : atk-2.28.1-1.el8.x86_64 12/109
Installing : cpp-8.5.0-28.0.1.el8_10.x86_64 13/109
Running scriptlet: cpp-8.5.0-28.0.1.el8_10.x86_64 13/109
Installing : libwayland-cursor-1.21.0-1.el8.x86_64 14/109
Installing : dejavu-fonts-common-2.35-7.el8.noarch 15/109
Installing : dejavu-sans-mono-fonts-2.35-7.el8.noarch 16/109
Installing : fontconfig-2.13.1-4.el8.x86_64 17/109
Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 17/109
Installing : abattis-cantarell-fonts-0.0.25-6.el8.noarch 18/109
Installing : gsettings-desktop-schemas-3.32.0-6.el8.x86_64 19/109
Installing : jasper-libs-2.0.14-6.el8_10.x86_64 20/109
Installing : xkeyboard-config-2.28-1.el8.noarch 21/109
Installing : libxkbcommon-0.9.1-1.el8.x86_64 22/109
Installing : vim-filesystem-2:8.0.1763-31.0.1.el8_10.noarch 23/109
Installing : llvm-filesystem-21.1.8-1.module+el8.10.0+90887+a 24/109
Installing : llvm-libs-21.1.8-1.module+el8.10.0+90887+a526980 25/109
Installing : libwayland-egl-1.21.0-1.el8.x86_64 26/109
Installing : libepoxy-1.5.8-1.el8.x86_64 27/109
Installing : libdatrie-0.2.9-7.el8.x86_64 28/109
Running scriptlet: libdatrie-0.2.9-7.el8.x86_64 28/109
Installing : libthai-0.1.27-2.el8.x86_64 29/109
Running scriptlet: libthai-0.1.27-2.el8.x86_64 29/109
Installing : libXau-1.0.9-3.el8.x86_64 30/109
Installing : libxcb-1.13.1-1.el8.x86_64 31/109
Installing : libX11-common-1.6.8-9.el8_10.noarch 32/109
Installing : libX11-1.6.8-9.el8_10.x86_64 33/109
Installing : libXext-1.3.4-1.el8.x86_64 34/109
Installing : libXrender-0.9.10-7.el8.x86_64 35/109
Installing : cairo-1.15.12-6.el8.x86_64 36/109
Installing : libXfixes-5.0.3-7.el8.x86_64 37/109
Installing : libXi-1.7.10-1.el8.x86_64 38/109
Installing : libXtst-1.2.3-7.el8.x86_64 39/109
Installing : at-spi2-core-2.28.0-1.el8.x86_64 40/109
Running scriptlet: at-spi2-core-2.28.0-1.el8.x86_64 40/109
Installing : at-spi2-atk-2.26.2-1.el8.x86_64 41/109
Running scriptlet: at-spi2-atk-2.26.2-1.el8.x86_64 41/109
Installing : libXcursor-1.1.15-3.el8.x86_64 42/109
Installing : libXdamage-1.1.4-14.el8.x86_64 43/109
Installing : cairo-gobject-1.15.12-6.el8.x86_64 44/109
Installing : libXft-2.3.3-1.el8.x86_64 45/109
Installing : libXrandr-1.5.2-1.el8.x86_64 46/109
Installing : libXinerama-1.1.4-1.el8.x86_64 47/109
Installing : libXcomposite-0.4.4-14.el8.x86_64 48/109
Installing : lcms2-2.9-2.el8.x86_64 49/109
Running scriptlet: lcms2-2.9-2.el8.x86_64 49/109
Installing : jbigkit-libs-2.1-14.el8.x86_64 50/109
Running scriptlet: jbigkit-libs-2.1-14.el8.x86_64 50/109
Installing : libtiff-4.0.9-38.el8_10.x86_64 51/109
Installing : isl-0.16.1-6.el8.x86_64 52/109
Running scriptlet: isl-0.16.1-6.el8.x86_64 52/109
Installing : hicolor-icon-theme-0.17-2.el8.noarch 53/109
Installing : graphite2-1.3.10-10.el8.x86_64 54/109
Installing : harfbuzz-1.7.5-4.el8.x86_64 55/109
Running scriptlet: harfbuzz-1.7.5-4.el8.x86_64 55/109
Installing : gpm-libs-1.20.7-17.el8.x86_64 56/109
Running scriptlet: gpm-libs-1.20.7-17.el8.x86_64 56/109
Installing : fribidi-1.0.4-9.el8.x86_64 57/109
Installing : pango-1.42.4-8.el8.x86_64 58/109
Running scriptlet: pango-1.42.4-8.el8.x86_64 58/109
Installing : dconf-0.28.0-4.0.1.el8.x86_64 59/109
Installing : adwaita-cursor-theme-3.28.0-3.el8.noarch 60/109
Installing : adwaita-icon-theme-3.28.0-3.el8.noarch 61/109
Installing : which-2.21-21.el8_10.x86_64 62/109
Installing : unzip-6.0-48.0.1.el8_10.x86_64 63/109
Installing : shared-mime-info-1.9-4.el8.x86_64 64/109
Running scriptlet: shared-mime-info-1.9-4.el8.x86_64 64/109
Installing : gdk-pixbuf2-2.36.12-8.el8_10.x86_64 65/109
Running scriptlet: gdk-pixbuf2-2.36.12-8.el8_10.x86_64 65/109
Installing : gdk-pixbuf2-modules-2.36.12-8.el8_10.x86_64 66/109
Installing : gtk-update-icon-cache-3.22.30-12.el8_10.x86_64 67/109
Installing : pkgconf-m4-1.4.2-1.el8.noarch 68/109
Installing : numactl-libs-2.0.16-4.el8.x86_64 69/109
Running scriptlet: numactl-libs-2.0.16-4.el8.x86_64 69/109
Installing : libquadmath-8.5.0-28.0.1.el8_10.x86_64 70/109
Running scriptlet: libquadmath-8.5.0-28.0.1.el8_10.x86_64 70/109
Installing : libgfortran-8.5.0-28.0.1.el8_10.x86_64 71/109
Running scriptlet: libgfortran-8.5.0-28.0.1.el8_10.x86_64 71/109
Installing : libpkgconf-1.4.2-1.el8.x86_64 72/109
Installing : pkgconf-1.4.2-1.el8.x86_64 73/109
Installing : pkgconf-pkg-config-1.4.2-1.el8.x86_64 74/109
Installing : libmodman-2.0.1-17.el8.x86_64 75/109
Running scriptlet: libmodman-2.0.1-17.el8.x86_64 75/109
Installing : libproxy-0.4.15-5.5.el8_10.x86_64 76/109
Running scriptlet: libproxy-0.4.15-5.5.el8_10.x86_64 76/109
Installing : glib-networking-2.56.1-1.1.el8.x86_64 77/109
Installing : libsoup-2.62.3-14.el8_10.x86_64 78/109
Installing : rest-0.8.1-3.el8_10.x86_64 79/109
Running scriptlet: rest-0.8.1-3.el8_10.x86_64 79/109
Installing : libmetalink-0.1.3-7.el8.x86_64 80/109
Installing : libgusb-0.3.0-1.el8.x86_64 81/109
Installing : colord-libs-1.4.2-1.el8.x86_64 82/109
Installing : libgomp-8.5.0-28.0.1.el8_10.x86_64 83/109
Running scriptlet: libgomp-8.5.0-28.0.1.el8_10.x86_64 83/109
Installing : kernel-headers-4.18.0-553.155.1.el8_10.x86_64 84/109
Running scriptlet: glibc-headers-2.28-251.0.5.el8_10.40.x86_64 85/109
Installing : glibc-headers-2.28-251.0.5.el8_10.40.x86_64 85/109
Installing : libxcrypt-devel-4.1.1-6.el8.x86_64 86/109
Installing : glibc-devel-2.28-251.0.5.el8_10.40.x86_64 87/109
Running scriptlet: glibc-devel-2.28-251.0.5.el8_10.40.x86_64 87/109
Installing : json-glib-1.4.4-1.el8.x86_64 88/109
Installing : glibc-gconv-extra-2.28-251.0.5.el8_10.40.x86_64 89/109
Running scriptlet: glibc-gconv-extra-2.28-251.0.5.el8_10.40.x86_64 89/109
Installing : vim-common-2:8.0.1763-31.0.1.el8_10.x86_64 90/109
Installing : binutils-2.30-128.0.1.el8_10.x86_64 91/109
Running scriptlet: binutils-2.30-128.0.1.el8_10.x86_64 91/109
Installing : avahi-libs-0.7-27.el8_10.1.x86_64 92/109
Installing : cups-libs-1:2.2.6-68.el8_10.x86_64 93/109
Installing : gtk3-3.22.30-12.el8_10.x86_64 94/109
Installing : gcc-8.5.0-28.0.1.el8_10.x86_64 95/109
Running scriptlet: gcc-8.5.0-28.0.1.el8_10.x86_64 95/109
Installing : vim-enhanced-2:8.0.1763-31.0.1.el8_10.x86_64 96/109
Installing : wget-1.19.5-12.0.1.el8_10.x86_64 97/109
Running scriptlet: wget-1.19.5-12.0.1.el8_10.x86_64 97/109
Installing : openblas-0.3.15-6.el8.x86_64 98/109
Running scriptlet: openblas-0.3.15-6.el8.x86_64 98/109
Installing : numactl-2.0.16-4.el8.x86_64 99/109
Running scriptlet: numactl-2.0.16-4.el8.x86_64 99/109
Installing : zip-3.0-23.el8.x86_64 100/109
Installing : libomp-21.1.8-1.module+el8.10.0+90887+a5269809.x 101/109
Installing : oracle-instantclient-sqlplus-23.7.0.25.01-1.el8. 102/109
Running scriptlet: oracle-instantclient-sqlplus-23.7.0.25.01-1.el8. 102/109
Installing : oracle-instantclient-tools-23.7.0.25.01-1.el8.x8 103/109
Running scriptlet: oracle-instantclient-tools-23.7.0.25.01-1.el8.x8 103/109
Installing : jdk-26-2000:26.0.2.1-1.x86_64 104/109
Running scriptlet: jdk-26-2000:26.0.2.1-1.x86_64 104/109
System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down
Installing : libX11-xcb-1.6.8-9.el8_10.x86_64 105/109
Installing : alsa-lib-1.2.10-2.el8.x86_64 106/109
Running scriptlet: alsa-lib-1.2.10-2.el8.x86_64 106/109
Installing : libatomic-8.5.0-28.0.1.el8_10.x86_64 107/109
Running scriptlet: libatomic-8.5.0-28.0.1.el8_10.x86_64 107/109
Installing : hostname-3.20-6.el8.x86_64 108/109
Running scriptlet: hostname-3.20-6.el8.x86_64 108/109
Installing : file-5.33-27.el8_10.x86_64 109/109
Running scriptlet: dconf-0.28.0-4.0.1.el8.x86_64 109/109
Running scriptlet: jdk-26-2000:26.0.2.1-1.x86_64 109/109
Running scriptlet: file-5.33-27.el8_10.x86_64 109/109
Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 109/109
Running scriptlet: hicolor-icon-theme-0.17-2.el8.noarch 109/109
Running scriptlet: adwaita-icon-theme-3.28.0-3.el8.noarch 109/109
Running scriptlet: shared-mime-info-1.9-4.el8.x86_64 109/109
Running scriptlet: gdk-pixbuf2-2.36.12-8.el8_10.x86_64 109/109
Running scriptlet: vim-common-2:8.0.1763-31.0.1.el8_10.x86_64 109/109
Verifying : avahi-libs-0.7-27.el8_10.1.x86_64 1/109
Verifying : binutils-2.30-128.0.1.el8_10.x86_64 2/109
Verifying : cronie-1.5.2-10.el8.x86_64 3/109
Verifying : cronie-anacron-1.5.2-10.el8.x86_64 4/109
Verifying : crontabs-1.11-17.20190603git.el8.noarch 5/109
Verifying : cups-libs-1:2.2.6-68.el8_10.x86_64 6/109
Verifying : dejavu-fonts-common-2.35-7.el8.noarch 7/109
Verifying : dejavu-sans-mono-fonts-2.35-7.el8.noarch 8/109
Verifying : file-5.33-27.el8_10.x86_64 9/109
Verifying : fontconfig-2.13.1-4.el8.x86_64 10/109
Verifying : fontpackages-filesystem-1.44-22.el8.noarch 11/109
Verifying : freetype-2.9.1-10.el8_10.x86_64 12/109
Verifying : gdk-pixbuf2-2.36.12-8.el8_10.x86_64 13/109
Verifying : glib-networking-2.56.1-1.1.el8.x86_64 14/109
Verifying : glibc-devel-2.28-251.0.5.el8_10.40.x86_64 15/109
Verifying : glibc-gconv-extra-2.28-251.0.5.el8_10.40.x86_64 16/109
Verifying : glibc-headers-2.28-251.0.5.el8_10.40.x86_64 17/109
Verifying : gsettings-desktop-schemas-3.32.0-6.el8.x86_64 18/109
Verifying : hostname-3.20-6.el8.x86_64 19/109
Verifying : json-glib-1.4.4-1.el8.x86_64 20/109
Verifying : kernel-headers-4.18.0-553.155.1.el8_10.x86_64 21/109
Verifying : libatomic-8.5.0-28.0.1.el8_10.x86_64 22/109
Verifying : libgfortran-8.5.0-28.0.1.el8_10.x86_64 23/109
Verifying : libgomp-8.5.0-28.0.1.el8_10.x86_64 24/109
Verifying : libgusb-0.3.0-1.el8.x86_64 25/109
Verifying : libmetalink-0.1.3-7.el8.x86_64 26/109
Verifying : libmodman-2.0.1-17.el8.x86_64 27/109
Verifying : libpkgconf-1.4.2-1.el8.x86_64 28/109
Verifying : libpng-2:1.6.34-11.el8_10.x86_64 29/109
Verifying : libproxy-0.4.15-5.5.el8_10.x86_64 30/109
Verifying : libquadmath-8.5.0-28.0.1.el8_10.x86_64 31/109
Verifying : libsoup-2.62.3-14.el8_10.x86_64 32/109
Verifying : libxcrypt-devel-4.1.1-6.el8.x86_64 33/109
Verifying : numactl-2.0.16-4.el8.x86_64 34/109
Verifying : numactl-libs-2.0.16-4.el8.x86_64 35/109
Verifying : pkgconf-1.4.2-1.el8.x86_64 36/109
Verifying : pkgconf-m4-1.4.2-1.el8.noarch 37/109
Verifying : pkgconf-pkg-config-1.4.2-1.el8.x86_64 38/109
Verifying : shared-mime-info-1.9-4.el8.x86_64 39/109
Verifying : unzip-6.0-48.0.1.el8_10.x86_64 40/109
Verifying : which-2.21-21.el8_10.x86_64 41/109
Verifying : zip-3.0-23.el8.x86_64 42/109
Verifying : abattis-cantarell-fonts-0.0.25-6.el8.noarch 43/109
Verifying : adwaita-cursor-theme-3.28.0-3.el8.noarch 44/109
Verifying : adwaita-icon-theme-3.28.0-3.el8.noarch 45/109
Verifying : alsa-lib-1.2.10-2.el8.x86_64 46/109
Verifying : at-spi2-atk-2.26.2-1.el8.x86_64 47/109
Verifying : at-spi2-core-2.28.0-1.el8.x86_64 48/109
Verifying : atk-2.28.1-1.el8.x86_64 49/109
Verifying : cairo-1.15.12-6.el8.x86_64 50/109
Verifying : cairo-gobject-1.15.12-6.el8.x86_64 51/109
Verifying : colord-libs-1.4.2-1.el8.x86_64 52/109
Verifying : cpp-8.5.0-28.0.1.el8_10.x86_64 53/109
Verifying : dconf-0.28.0-4.0.1.el8.x86_64 54/109
Verifying : fribidi-1.0.4-9.el8.x86_64 55/109
Verifying : gcc-8.5.0-28.0.1.el8_10.x86_64 56/109
Verifying : gdk-pixbuf2-modules-2.36.12-8.el8_10.x86_64 57/109
Verifying : gpm-libs-1.20.7-17.el8.x86_64 58/109
Verifying : graphite2-1.3.10-10.el8.x86_64 59/109
Verifying : gtk-update-icon-cache-3.22.30-12.el8_10.x86_64 60/109
Verifying : gtk3-3.22.30-12.el8_10.x86_64 61/109
Verifying : harfbuzz-1.7.5-4.el8.x86_64 62/109
Verifying : hicolor-icon-theme-0.17-2.el8.noarch 63/109
Verifying : isl-0.16.1-6.el8.x86_64 64/109
Verifying : jasper-libs-2.0.14-6.el8_10.x86_64 65/109
Verifying : jbigkit-libs-2.1-14.el8.x86_64 66/109
Verifying : lcms2-2.9-2.el8.x86_64 67/109
Verifying : libX11-1.6.8-9.el8_10.x86_64 68/109
Verifying : libX11-common-1.6.8-9.el8_10.noarch 69/109
Verifying : libX11-xcb-1.6.8-9.el8_10.x86_64 70/109
Verifying : libXau-1.0.9-3.el8.x86_64 71/109
Verifying : libXcomposite-0.4.4-14.el8.x86_64 72/109
Verifying : libXcursor-1.1.15-3.el8.x86_64 73/109
Verifying : libXdamage-1.1.4-14.el8.x86_64 74/109
Verifying : libXext-1.3.4-1.el8.x86_64 75/109
Verifying : libXfixes-5.0.3-7.el8.x86_64 76/109
Verifying : libXft-2.3.3-1.el8.x86_64 77/109
Verifying : libXi-1.7.10-1.el8.x86_64 78/109
Verifying : libXinerama-1.1.4-1.el8.x86_64 79/109
Verifying : libXrandr-1.5.2-1.el8.x86_64 80/109
Verifying : libXrender-0.9.10-7.el8.x86_64 81/109
Verifying : libXtst-1.2.3-7.el8.x86_64 82/109
Verifying : libdatrie-0.2.9-7.el8.x86_64 83/109
Verifying : libepoxy-1.5.8-1.el8.x86_64 84/109
Verifying : libjpeg-turbo-1.5.3-14.el8_10.x86_64 85/109
Verifying : libmpc-1.1.0-9.1.el8.x86_64 86/109
Verifying : libomp-21.1.8-1.module+el8.10.0+90887+a5269809.x 87/109
Verifying : libthai-0.1.27-2.el8.x86_64 88/109
Verifying : libtiff-4.0.9-38.el8_10.x86_64 89/109
Verifying : libwayland-client-1.21.0-1.el8.x86_64 90/109
Verifying : libwayland-cursor-1.21.0-1.el8.x86_64 91/109
Verifying : libwayland-egl-1.21.0-1.el8.x86_64 92/109
Verifying : libxcb-1.13.1-1.el8.x86_64 93/109
Verifying : libxkbcommon-0.9.1-1.el8.x86_64 94/109
Verifying : llvm-filesystem-21.1.8-1.module+el8.10.0+90887+a 95/109
Verifying : llvm-libs-21.1.8-1.module+el8.10.0+90887+a526980 96/109
Verifying : openblas-0.3.15-6.el8.x86_64 97/109
Verifying : pango-1.42.4-8.el8.x86_64 98/109
Verifying : pixman-0.38.4-4.el8.x86_64 99/109
Verifying : rest-0.8.1-3.el8_10.x86_64 100/109
Verifying : vim-common-2:8.0.1763-31.0.1.el8_10.x86_64 101/109
Verifying : vim-enhanced-2:8.0.1763-31.0.1.el8_10.x86_64 102/109
Verifying : vim-filesystem-2:8.0.1763-31.0.1.el8_10.noarch 103/109
Verifying : wget-1.19.5-12.0.1.el8_10.x86_64 104/109
Verifying : xkeyboard-config-2.28-1.el8.noarch 105/109
Verifying : jdk-26-2000:26.0.2.1-1.x86_64 106/109
Verifying : oracle-instantclient-basic-23.7.0.25.01-1.el8.x8 107/109
Verifying : oracle-instantclient-sqlplus-23.7.0.25.01-1.el8. 108/109
Verifying : oracle-instantclient-tools-23.7.0.25.01-1.el8.x8 109/109
Installed:
abattis-cantarell-fonts-0.0.25-6.el8.noarch
adwaita-cursor-theme-3.28.0-3.el8.noarch
adwaita-icon-theme-3.28.0-3.el8.noarch
alsa-lib-1.2.10-2.el8.x86_64
at-spi2-atk-2.26.2-1.el8.x86_64
at-spi2-core-2.28.0-1.el8.x86_64
atk-2.28.1-1.el8.x86_64
avahi-libs-0.7-27.el8_10.1.x86_64
binutils-2.30-128.0.1.el8_10.x86_64
cairo-1.15.12-6.el8.x86_64
cairo-gobject-1.15.12-6.el8.x86_64
colord-libs-1.4.2-1.el8.x86_64
cpp-8.5.0-28.0.1.el8_10.x86_64
cronie-1.5.2-10.el8.x86_64
cronie-anacron-1.5.2-10.el8.x86_64
crontabs-1.11-17.20190603git.el8.noarch
cups-libs-1:2.2.6-68.el8_10.x86_64
dconf-0.28.0-4.0.1.el8.x86_64
dejavu-fonts-common-2.35-7.el8.noarch
dejavu-sans-mono-fonts-2.35-7.el8.noarch
file-5.33-27.el8_10.x86_64
fontconfig-2.13.1-4.el8.x86_64
fontpackages-filesystem-1.44-22.el8.noarch
freetype-2.9.1-10.el8_10.x86_64
fribidi-1.0.4-9.el8.x86_64
gcc-8.5.0-28.0.1.el8_10.x86_64
gdk-pixbuf2-2.36.12-8.el8_10.x86_64
gdk-pixbuf2-modules-2.36.12-8.el8_10.x86_64
glib-networking-2.56.1-1.1.el8.x86_64
glibc-devel-2.28-251.0.5.el8_10.40.x86_64
glibc-gconv-extra-2.28-251.0.5.el8_10.40.x86_64
glibc-headers-2.28-251.0.5.el8_10.40.x86_64
gpm-libs-1.20.7-17.el8.x86_64
graphite2-1.3.10-10.el8.x86_64
gsettings-desktop-schemas-3.32.0-6.el8.x86_64
gtk-update-icon-cache-3.22.30-12.el8_10.x86_64
gtk3-3.22.30-12.el8_10.x86_64
harfbuzz-1.7.5-4.el8.x86_64
hicolor-icon-theme-0.17-2.el8.noarch
hostname-3.20-6.el8.x86_64
isl-0.16.1-6.el8.x86_64
jasper-libs-2.0.14-6.el8_10.x86_64
jbigkit-libs-2.1-14.el8.x86_64
jdk-26-2000:26.0.2.1-1.x86_64
json-glib-1.4.4-1.el8.x86_64
kernel-headers-4.18.0-553.155.1.el8_10.x86_64
lcms2-2.9-2.el8.x86_64
libX11-1.6.8-9.el8_10.x86_64
libX11-common-1.6.8-9.el8_10.noarch
libX11-xcb-1.6.8-9.el8_10.x86_64
libXau-1.0.9-3.el8.x86_64
libXcomposite-0.4.4-14.el8.x86_64
libXcursor-1.1.15-3.el8.x86_64
libXdamage-1.1.4-14.el8.x86_64
libXext-1.3.4-1.el8.x86_64
libXfixes-5.0.3-7.el8.x86_64
libXft-2.3.3-1.el8.x86_64
libXi-1.7.10-1.el8.x86_64
libXinerama-1.1.4-1.el8.x86_64
libXrandr-1.5.2-1.el8.x86_64
libXrender-0.9.10-7.el8.x86_64
libXtst-1.2.3-7.el8.x86_64
libatomic-8.5.0-28.0.1.el8_10.x86_64
libdatrie-0.2.9-7.el8.x86_64
libepoxy-1.5.8-1.el8.x86_64
libgfortran-8.5.0-28.0.1.el8_10.x86_64
libgomp-8.5.0-28.0.1.el8_10.x86_64
libgusb-0.3.0-1.el8.x86_64
libjpeg-turbo-1.5.3-14.el8_10.x86_64
libmetalink-0.1.3-7.el8.x86_64
libmodman-2.0.1-17.el8.x86_64
libmpc-1.1.0-9.1.el8.x86_64
libomp-21.1.8-1.module+el8.10.0+90887+a5269809.x86_64
libpkgconf-1.4.2-1.el8.x86_64
libpng-2:1.6.34-11.el8_10.x86_64
libproxy-0.4.15-5.5.el8_10.x86_64
libquadmath-8.5.0-28.0.1.el8_10.x86_64
libsoup-2.62.3-14.el8_10.x86_64
libthai-0.1.27-2.el8.x86_64
libtiff-4.0.9-38.el8_10.x86_64
libwayland-client-1.21.0-1.el8.x86_64
libwayland-cursor-1.21.0-1.el8.x86_64
libwayland-egl-1.21.0-1.el8.x86_64
libxcb-1.13.1-1.el8.x86_64
libxcrypt-devel-4.1.1-6.el8.x86_64
libxkbcommon-0.9.1-1.el8.x86_64
llvm-filesystem-21.1.8-1.module+el8.10.0+90887+a5269809.x86_64
llvm-libs-21.1.8-1.module+el8.10.0+90887+a5269809.x86_64
numactl-2.0.16-4.el8.x86_64
numactl-libs-2.0.16-4.el8.x86_64
openblas-0.3.15-6.el8.x86_64
oracle-instantclient-basic-23.7.0.25.01-1.el8.x86_64
oracle-instantclient-sqlplus-23.7.0.25.01-1.el8.x86_64
oracle-instantclient-tools-23.7.0.25.01-1.el8.x86_64
pango-1.42.4-8.el8.x86_64
pixman-0.38.4-4.el8.x86_64
pkgconf-1.4.2-1.el8.x86_64
pkgconf-m4-1.4.2-1.el8.noarch
pkgconf-pkg-config-1.4.2-1.el8.x86_64
rest-0.8.1-3.el8_10.x86_64
shared-mime-info-1.9-4.el8.x86_64
unzip-6.0-48.0.1.el8_10.x86_64
vim-common-2:8.0.1763-31.0.1.el8_10.x86_64
vim-enhanced-2:8.0.1763-31.0.1.el8_10.x86_64
vim-filesystem-2:8.0.1763-31.0.1.el8_10.noarch
wget-1.19.5-12.0.1.el8_10.x86_64
which-2.21-21.el8_10.x86_64
xkeyboard-config-2.28-1.el8.noarch
zip-3.0-23.el8.x86_64
Complete!
java version "26.0.2.1" 2026-08-18
Java(TM) SE Runtime Environment (build 26.0.2.1+1-7)
Java HotSpot(TM) 64-Bit Server VM (build 26.0.2.1+1-7, mixed mode, sharing)
17 files removed
--> 58a76b9b05da
STEP 12/25: ENV http_proxy= https_proxy= HTTP_PROXY= HTTPS_PROXY=
--> 8180e9b2a602
STEP 13/25: ENV PATH="/home/aaiuser/install:${PATH}"
--> 5618d49d5e64
STEP 14/25: RUN groupadd aaiuser && useradd aaiuser -g aaiuser
useradd: preserving permissions for /home/aaiuser/.bash_profile: Invalid argument
--> 464c33bec45f
STEP 15/25: RUN chmod 0400 /etc/shadow /etc/gshadow
--> 3c66e1694961
STEP 16/25: RUN mkdir -p /home/aaiuser/install && chmod 755 /home/aaiuser /home/aaiuser/install
--> 15392c74c2da
STEP 17/25: COPY ./kit/agent_factory/app/util/mkstore /usr/lib/oracle/23/client64/bin/
--> de93b37ddc86
STEP 18/25: COPY ./kit/agent_factory/app/util/orapki /usr/lib/oracle/23/client64/bin/
--> 7e1b633bfab9
STEP 19/25: RUN chmod 755 /usr/lib/oracle/23/client64/bin/orapki && chmod 755 /usr/lib/oracle/23/client64/bin/mkstore
--> cd0aa144fc60
STEP 20/25: RUN rm -rf /usr/lib/python3.6/site-packages/setuptools* /usr/lib/python3.6/site-packages/pkg_resources*
--> 0336f860321d
STEP 21/25: COPY --chmod=755 ./kit/ /home/aaiuser/install/
--> b4f17f5dc756
STEP 22/25: RUN set -eux; ln -snf "/home/aaiuser/install/agent_factory_entrypoint.sh" "/usr/local/bin/agent-factory-entrypoint"; ln -snf "python3.12-config" "/home/aaiuser/install/agent_factory/third_party/python3/bin/python3-config"; ln -snf "libsqlite3.so.3.50.2" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libsqlite3.so.0"; ln -snf "libffi.so.8.1.2" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libffi.so"; ln -snf "python-3.12.pc" "/home/aaiuser/install/agent_factory/third_party/python3/lib/pkgconfig/python3.pc"; ln -snf "python-3.12-embed.pc" "/home/aaiuser/install/agent_factory/third_party/python3/lib/pkgconfig/python3-embed.pc"; ln -snf "libssl.so.3" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libssl.so"; ln -snf "libcrypto.so.3" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libcrypto.so"; ln -snf "libz.so.1.3.1" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libz.so.1"; ln -snf "libpython3.12.so.1.0" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libpython3.12.so"; ln -snf "libopenblas.so.0" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libopenblas.so"; ln -snf "libz.so.1.3.1" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libz.so"; ln -snf "libffi.so.8.1.2" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libffi.so.8"; ln -snf "libsqlite3.so.3.50.2" "/home/aaiuser/install/agent_factory/third_party/python3/lib/libsqlite3.so"; ln -snf "python3.12.1" "/home/aaiuser/install/agent_factory/third_party/python3/share/man/man1/python3.1"
+ ln -snf /home/aaiuser/install/agent_factory_entrypoint.sh /usr/local/bin/agent-factory-entrypoint
+ ln -snf python3.12-config /home/aaiuser/install/agent_factory/third_party/python3/bin/python3-config
+ ln -snf libsqlite3.so.3.50.2 /home/aaiuser/install/agent_factory/third_party/python3/lib/libsqlite3.so.0
+ ln -snf libffi.so.8.1.2 /home/aaiuser/install/agent_factory/third_party/python3/lib/libffi.so
+ ln -snf python-3.12.pc /home/aaiuser/install/agent_factory/third_party/python3/lib/pkgconfig/python3.pc
+ ln -snf python-3.12-embed.pc /home/aaiuser/install/agent_factory/third_party/python3/lib/pkgconfig/python3-embed.pc
+ ln -snf libssl.so.3 /home/aaiuser/install/agent_factory/third_party/python3/lib/libssl.so
+ ln -snf libcrypto.so.3 /home/aaiuser/install/agent_factory/third_party/python3/lib/libcrypto.so
+ ln -snf libz.so.1.3.1 /home/aaiuser/install/agent_factory/third_party/python3/lib/libz.so.1
+ ln -snf libpython3.12.so.1.0 /home/aaiuser/install/agent_factory/third_party/python3/lib/libpython3.12.so
+ ln -snf libopenblas.so.0 /home/aaiuser/install/agent_factory/third_party/python3/lib/libopenblas.so
+ ln -snf libz.so.1.3.1 /home/aaiuser/install/agent_factory/third_party/python3/lib/libz.so
+ ln -snf libffi.so.8.1.2 /home/aaiuser/install/agent_factory/third_party/python3/lib/libffi.so.8
+ ln -snf libsqlite3.so.3.50.2 /home/aaiuser/install/agent_factory/third_party/python3/lib/libsqlite3.so
+ ln -snf python3.12.1 /home/aaiuser/install/agent_factory/third_party/python3/share/man/man1/python3.1
--> 6b3fd7776160
STEP 23/25: EXPOSE 8080
--> c50abc79a914
STEP 24/25: ENTRYPOINT ["/usr/local/bin/agent-factory-entrypoint"]
--> 67a0f36b7965
STEP 25/25: CMD ["prod"]
COMMIT applied-ai-label:26.7.0.0.0
--> 40b04d550a95
Successfully tagged localhost/applied-ai-label:26.7.0.0.0
40b04d550a953a5c210147c2013a1afcec5b2f3ed688e7cfa6616c5ccaf2667a
localhost/applied-ai-label 26.7.0.0.0 40b04d550a95 9 seconds ago 6.99 GB
Deleted: 19ad7e0fc3ceffdd5c5dbb4adb20a79eb8c7400c70a872fe9fa53c36acede383
Deleted: 49c6bab696059cd4b7e2c5315812653a4be9195b2f6f36154348a897e5d7b830
Deleted: 0446306f731d3fd01bbf143ca0e7ec89c2840d849fe0aa8d2d045c7326ada9ad
Deleted: 36ab7303435e872ff21f7d109029fbbf4933bc96c2e2d8cf66f9fcaf302cd80e
Deleted: f47f7f4c7b9aacab7e7c66c2d934224e162810297cd01723c614e2f772b486e7
Deleted: c17d02cb83e1e07850f61f330b9c5e1960a1885c4747bddaab7ca985a6178a29
Deleted: e2e3fa7548b4c80d87137436bd1929444b8e6e6af7b09a09b19289062d57c00f
Deleted: 1f8229fa1a947629ee127a74e352a153ace5ac9bd9936aa7a499a63efba2cee0
Deleted: 66e7a7ed8d5a978a5f64ece376161a1ba751c94fdd7434f3a2986917ee383570
Deleted: 00b3d2fca382a082d64dd442489e1cec620d2871f3e08f024f781f302e000a6a
Deleted: 8266cb8c67daa8d25563dc5bf01a1b572c4a050f30c91198ebb9c6ddfee732ab
Deleted: f5490c7e6e25ec66f3a75727d0861e81c7d3bb7a31cad0d0bc6c38353c8f06c9
Deleted: 2a11cc9d6a9a4b12d3f53161ee0491589a0e81bff31a1c8d40e0cf505bc9c2cf
Deleted: 3be83ba27bce4db58ab3aca0daff2e08610fc8135c3fb23803a7595d3e949169
Deleted: 53a77df5b234216a4b5833a796ecd88bff82d753771e74c2ba1a44dccde2335e
Deleted: 5708905ceb543e122be7a1837273fe64d1c0165eea0758bbd974d715154ea4d1
Deleted: d37fd054b6fa7ae694beecda00ba710531cde724b452776eef0ced6d159c5e46
Deleted: a94ff84b75bd64bbc12810c119f78e91a2ce55b04a2aec236420a4f502ad0cac
Deleted: fcb3bf00d8c1c47ea5607dd9a57e2308233f3d3d7e76e4cdb5c7eb25bc8df6f9
Deleted: 8150a003a31fd34bdb163a86fb0466262cc6fedd1812859bc5cab6e97f0faa44
Deleted: bc74a7646c39f19cc279e44fe252aa85ef8b3b839a0f299cd4887def16ef7c0c
Deleted: fdb71bb11d0256e5aa13978438f8ae53cb215aa1f035efa1ac0e496323aa9a51
Deleted: 451452faba301afc746a81e3cf91d0cf2e5e11deb97cb4ab78071c9427875b2e
Deleted: 042daf76cfbfc8529a10b19b016b13111c3fd9d91a298a2cebc67508d202ec6c
Deleted: 6316737491534b0eb165314af25e5f859993d57627d0497715df6fbf69e930f4
Cleaning up proxy environment variables...
+------------------+---------+--------+--------------------------------+----------------------+---------------------------------------+
| Image | Status | Size | Created | Image ID | Tags |
+------------------+---------+--------+--------------------------------+----------------------+---------------------------------------+
| applied-ai-label | SUCCESS | 6.5 GB | 2026-08-21T11:49:52.835819082Z | 40b04d550a953a5c2101 | localhost/applied-ai-label:26.7.0.0.0 |
+------------------+---------+--------+--------------------------------+----------------------+---------------------------------------+
[INFO] Skipping SELinux relabeling:
[INFO] no installer-managed graphroot recorded.
[INFO] Running 'make install' for upgrade.
bash deploy.sh; \
▗▄▖ ▗▄▄▖ ▗▄▖ ▗▄▄▖▗▖ ▗▄▄▄▖
▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌ ▐▌
▐▌ ▐▌▐▛▀▚▖▐▛▀▜▌▐▌ ▐▌ ▐▛▀▀▘
▝▚▄▞▘▐▌ ▐▌▐▌ ▐▌▝▚▄▄▖▐▙▄▄▖▐▙▄▄▖
▗▄▖ ▗▄▄▖▗▄▄▄▖▗▖ ▗▖▗▄▄▄▖ ▗▄▄▄▖ ▗▄▖ ▗▄▄▖▗▄▄▄▖▗▄▖ ▗▄▄▖▗▖ ▗▖
▐▌ ▐▌▐▌ ▐▌ ▐▛▚▖▐▌ █ ▐▌ ▐▌ ▐▌▐▌ █ ▐▌ ▐▌▐▌ ▐▌▝▚▞▘
▐▛▀▜▌▐▌▝▜▌▐▛▀▀▘▐▌ ▝▜▌ █ ▐▛▀▀▘▐▛▀▜▌▐▌ █ ▐▌ ▐▌▐▛▀▚▖ ▐▌
▐▌ ▐▌▝▚▄▞▘▐▙▄▄▖▐▌ ▐▌ █ ▐▌ ▐▌ ▐▌▝▚▄▄▖ █ ▝▚▄▞▘▐▌ ▐▌ ▐▌
Existing metadata file found: /home/cbtpafadm/.local/state/Oracle/AgentFactory/metadata.json
Validated existing metadata mount directories: ["/u01/staging/applied-ai/volume:/mount:z"]
✓ Mount Volume structure exists and is validated
Starting upgrade process...
Database snapshot before upgrade is mandatory. Proceeding with snapshot.
Take Knowledge Agent (KA) tables snapshot? (Consumes additional storage) [Y/n]: [Y]Y
Upgrading the application to version: 26.7.0.0.0
podman cp failed (path may not exist): oracle-applied-ai-label:/home/aaiuser/install/ahf_service/source_env.sh (status=125). Continuing.
Stopping legacy container oracle-applied-ai-label
WARN[0010] StopSignal SIGTERM failed to stop container oracle-applied-ai-label in 10 seconds, resorting to SIGKILL
oracle-applied-ai-label
Creating a snapshot of current volume state
Restoring critical assets from snapshots
Restoring assets from snapshot: upgrade_snapshot_26.7.0.0.0_2026_08_21_11_54 -> /u01/staging/applied-ai/volume/data/app/latest
Restoring assets from snapshot: upgrade_snapshot_26.7.0.0.0_2026_08_21_11_54 -> /u01/staging/applied-ai/volume/config/app/latest
✓ Image 'localhost/applied-ai-label:26.7.0.0.0' found.
✓ Image 'localhost/applied-ai-label:26.7.0.0.0' found.
Deploying Oracle AI Database Private Agent Factory in Production mode...
Starting production containers...
Confirming container 'oracle-applied-ai-label' is in a running state...
- Waiting for container to be ready...
✓ Container is confirmed to be running.
Initiating startup for oracle-applied-ai-label container...
✓ oracle-applied-ai-label container is UP and RUNNING.
- Please wait while the application is being set up within oracle-applied-ai-label container...
This process may take a few minutes as we are creating a backup of the previous installation.
✓ Application setup successfully within the container 'oracle-applied-ai-label'.
+------------------------------------------------+------------+
| Stage | Status |
+------------------------------------------------+------------+
| Configuring the application | Successful |
+------------------------------------------------+------------+
| Storing App Secret Key | Successful |
+------------------------------------------------+------------+
| Database Snapshot | Successful |
+------------------------------------------------+------------+
| Database Wallet Migration | Successful |
+------------------------------------------------+------------+
| Upgrade DB Migration | Successful |
+------------------------------------------------+------------+
| Configured Version Snapshot Link | Successful |
+------------------------------------------------+------------+
| Knowledge Agent Upgrade | Successful |
+------------------------------------------------+------------+
| Knowledge Agent Restart | Successful |
+------------------------------------------------+------------+
| Deep Research Agent Upgrade | Successful |
+------------------------------------------------+------------+
| Starting Oracle Private AI Agent agent_factory | Successful |
+------------------------------------------------+------------+
| Configured Version Link | Successful |
+------------------------------------------------+------------+
The Oracle AI Database Private Agent Factory webapp can be accessed at:
https://vmcbtpaf.sub0540234221.vcndev1.oraclevcn.com:8080/agentFactory/
Metadata file check passed
✓ Production deployment complete.
Logs can be found at: ./deploy.log
[SUCCESS] Upgrade flow completed.
[cbtpafadm@vmcbtpaf staging267]$
Thanks & Regards,
Chandan Tanwani
No comments:
Post a Comment