Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarisElsins/a99060b57bf1f12fa60ea010aa77020a to your computer and use it in GitHub Desktop.
Save MarisElsins/a99060b57bf1f12fa60ea010aa77020a to your computer and use it in GitHub Desktop.
[Maris.Win10] ➤ vagrant box add --name ol-latest https://yum.oracle.com/boxes/oraclelinux/latest/ol7-latest.box
==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'ol-latest' (v0) for provider:
box: Downloading: https://yum.oracle.com/boxes/oraclelinux/latest/ol7-latest.box
box:
==> box: Successfully added box 'ol-latest' (v0) for 'virtualbox'!
[Maris.Win10] ➤ mkdir -p ~/96_VAGRANT/OL-docker
[Maris.Win10] ➤ cd ~/96_VAGRANT/OL-docker
[Maris.Win10] ➤ # copy the required file here
[Maris.Win10] ➤ ls -lptr
total 2655354
-rwxrwx--- 1 Maris UsersGrp 4564649047 Nov 12 18:52 LINUX.X64_180000_db_home.zip
-rwxrwx--- 1 Maris UsersGrp 99183505 Nov 12 18:52 p6880880_180000_Linux-x86-64.zip
-rwxrwx--- 1 Maris UsersGrp 774324250 Nov 12 18:52 p28689117_180000_Linux-x86-64.zip
[Maris.Win10] ➤ cat << EOF > Vagrantfile
> disk_size = 100*1024
> disk = "ORCL.vdi"
> Vagrant.configure("2") do |config|
> config.vm.box = "ol-latest"
> config.vm.network "private_network", ip: "192.168.33.13"
> config.vm.provider "virtualbox" do |vb|
> vb.memory = "8196"
> unless File.exist?(disk)
> vb.customize ['createhd', '--filename', disk, '--size', disk_size]
> end
> vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 2, '--device', 0, '--type', 'hdd', '--medium', disk]
> end
> config.vm.provision "shell", inline: <<-SHELL
> parted /dev/sdc mklabel msdos
> parted /dev/sdc mkpart primary btrfs 1 100000
> mkfs.btrfs /dev/sdc1
> echo "/dev/sdc1 /ORCL btrfs defaults 0 0" >> /etc/fstab
> mkdir /ORCL
> mount /ORCL
> mkdir /ORCL/docker /ORCL/oradb
> chown -R vagrant:vagrant /ORCL
> chmod -R 777 /ORCL
> yum install -y docker git unzip
> sed -i.bck -e "s,selinux-enabled,selinux-enabled --graph /ORCL/docker,g" /etc/sysconfig/docker
> systemctl start docker.service
> systemctl enable docker.service
> usermod -a -G docker vagrant
> SHELL
> end
> EOF
[Maris.Win10] ➤ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'ol-latest'...
==> default: Matching MAC address for NAT networking...
==> default: Setting the name of the VM: OL-docker_default_1542041623564_34268
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
default: Adapter 2: hostonly
==> default: Forwarding ports...
default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
default:
default: Vagrant insecure key detected. Vagrant will automatically replace
default: this with a newly generated keypair for better security.
default:
default: Inserting generated public key within guest...
default: Removing insecure key from the guest if it's present...
default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Configuring and enabling network interfaces...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
==> default: Mounting shared folders...
default: /vagrant => C:/96_VAGRANT/OL-docker
==> default: Running provisioner: shell...
default: Running: inline script
default: Information
default: :
default: You may need to update /etc/fstab.
default: Information
default: :
default: You may need to update /etc/fstab.
default: btrfs-progs v4.9.1
default: See http://btrfs.wiki.kernel.org for more information.
default:
default: Label: (null)
default: UUID: 995b2c1f-0084-4092-9e2b-be136a93916e
default: Node size: 16384
default: Sector size: 4096
default: Filesystem size: 93.13GiB
default: Block group profiles:
default: Data: single 8.00MiB
default: Metadata: DUP 1.00GiB
default: System: DUP 8.00MiB
default: SSD detected: no
default: Incompat features: extref
default: Number of devices: 1
default: Devices:
default: ID SIZE PATH
default: 1 93.13GiB /dev/sdc1
default: Package docker is obsoleted by docker-engine, trying to install docker-engine-18.03.1.ol-0.0.9.el7.x86_64 instead
default: Resolving Dependencies
default: --> Running transaction check
default: ---> Package docker-engine.x86_64 0:18.03.1.ol-0.0.9.el7 will be installed
default: --> Processing Dependency: container-selinux >= 2.9 for package: docker-engine-18.03.1.ol-0.0.9.el7.x86_64
default: --> Processing Dependency: libcgroup for package: docker-engine-18.03.1.ol-0.0.9.el7.x86_64
default: --> Processing Dependency: pigz for package: docker-engine-18.03.1.ol-0.0.9.el7.x86_64
default: --> Processing Dependency: libltdl.so.7()(64bit) for package: docker-engine-18.03.1.ol-0.0.9.el7.x86_64
default: ---> Package git.x86_64 0:1.8.3.1-20.el7 will be installed
default: --> Processing Dependency: perl-Git = 1.8.3.1-20.el7 for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl >= 5.008 for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(vars) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(Getopt::Long) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: /usr/bin/perl for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: rsync for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(Error) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(Git) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::Path) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::Basename) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(strict) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(warnings) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::Find) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(lib) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(Exporter) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::Spec) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::stat) for package: git-1.8.3.1-20.el7.x86_64
default: --> Processing Dependency: perl(File::Copy) for package: git-1.8.3.1-20.el7.x86_64
default: ---> Package unzip.x86_64 0:6.0-19.el7 will be installed
default: --> Running transaction check
default: ---> Package container-selinux.noarch 2:2.21-1.el7 will be installed
default: --> Processing Dependency: policycoreutils-python for package: 2:container-selinux-2.21-1.el7.noarch
default: ---> Package libcgroup.x86_64 0:0.41-20.el7 will be installed
default: ---> Package libtool-ltdl.x86_64 0:2.4.2-22.el7_3 will be installed
default: ---> Package perl.x86_64 4:5.16.3-293.el7 will be installed
default: --> Processing Dependency: perl-libs = 4:5.16.3-293.el7 for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-293.el7.x86_64
default: --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-293.el7.x86_64
default: ---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed
default: ---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
default: ---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
default: ---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
default: ---> Package perl-Getopt-Long.noarch 0:2.40-3.el7 will be installed
default: --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.el7.noarch
default: --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.el7.noarch
default: ---> Package perl-Git.noarch 0:1.8.3.1-20.el7 will be installed
default: ---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
default: ---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed
default: ---> Package pigz.x86_64 0:2.3.4-1.el7 will be installed
default: ---> Package rsync.x86_64 0:3.1.2-4.el7 will be installed
default: --> Running transaction check
default: ---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
default: ---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
default: ---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
default: --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
default: --> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
default: ---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
default: --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
default: --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
default: ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
default: ---> Package perl-Socket.x86_64 0:2.010-4.el7 will be installed
default: ---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
default: ---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
default: ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
default: ---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
default: ---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
default: ---> Package perl-libs.x86_64 4:5.16.3-293.el7 will be installed
default: ---> Package perl-macros.x86_64 4:5.16.3-293.el7 will be installed
default: ---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
default: ---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
default: ---> Package policycoreutils-python.x86_64 0:2.5-29.0.1.el7 will be installed
default: --> Processing Dependency: policycoreutils = 2.5-29.0.1.el7 for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: audit-libs-python >= 2.1.3-4 for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: setools-libs >= 3.3.8-4 for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libsemanage-python >= 2.5-14 for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: python-IPy for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libqpol.so.1(VERS_1.2)(64bit) for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libqpol.so.1(VERS_1.4)(64bit) for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: checkpolicy for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libapol.so.4(VERS_4.0)(64bit) for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libapol.so.4()(64bit) for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libqpol.so.1()(64bit) for package: policycoreutils-python-2.5-29.0.1.el7.x86_64
default: --> Running transaction check
default: ---> Package audit-libs-python.x86_64 0:2.8.4-4.el7 will be installed
default: --> Processing Dependency: audit-libs(x86-64) = 2.8.4-4.el7 for package: audit-libs-python-2.8.4-4.el7.x86_64
default: ---> Package checkpolicy.x86_64 0:2.5-8.el7 will be installed
default: ---> Package libsemanage-python.x86_64 0:2.5-14.el7 will be installed
default: --> Processing Dependency: libsemanage = 2.5-14.el7 for package: libsemanage-python-2.5-14.el7.x86_64
default: ---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
default: ---> Package perl-Pod-Escapes.noarch 1:1.04-293.el7 will be installed
default: ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
default: --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
default: --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
default: ---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
default: ---> Package policycoreutils.x86_64 0:2.5-22.0.1.el7 will be updated
default: ---> Package policycoreutils.x86_64 0:2.5-29.0.1.el7 will be an update
default: --> Processing Dependency: libsepol >= 2.5-10 for package: policycoreutils-2.5-29.0.1.el7.x86_64
default: --> Processing Dependency: libselinux-utils >= 2.5-14 for package: policycoreutils-2.5-29.0.1.el7.x86_64
default: ---> Package python-IPy.noarch 0:0.75-6.el7 will be installed
default: ---> Package setools-libs.x86_64 0:3.3.8-4.el7 will be installed
default: --> Processing Dependency: libselinux >= 2.5-14.1 for package: setools-libs-3.3.8-4.el7.x86_64
default: --> Running transaction check
default: ---> Package audit-libs.x86_64 0:2.8.1-3.el7 will be updated
default: ---> Package audit-libs.x86_64 0:2.8.4-4.el7 will be an update
default: ---> Package libselinux.x86_64 0:2.5-12.0.1.el7 will be updated
default: --> Processing Dependency: libselinux(x86-64) = 2.5-12.0.1.el7 for package: libselinux-python-2.5-12.0.1.el7.x86_64
default: ---> Package libselinux.x86_64 0:2.5-14.1.el7 will be an update
default: ---> Package libselinux-utils.x86_64 0:2.5-12.0.1.el7 will be updated
default: ---> Package libselinux-utils.x86_64 0:2.5-14.1.el7 will be an update
default: ---> Package libsemanage.x86_64 0:2.5-11.el7 will be updated
default: ---> Package libsemanage.x86_64 0:2.5-14.el7 will be an update
default: ---> Package libsepol.x86_64 0:2.5-8.1.el7 will be updated
default: ---> Package libsepol.x86_64 0:2.5-10.el7 will be an update
default: ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
default: ---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
default: --> Running transaction check
default: ---> Package libselinux-python.x86_64 0:2.5-12.0.1.el7 will be updated
default: ---> Package libselinux-python.x86_64 0:2.5-14.1.el7 will be an update
default: --> Finished Dependency Resolution
default:
default: Dependencies Resolved
default:
default: ================================================================================
default: Package Arch Version Repository Size
default: ================================================================================
default: Installing:
default: docker-engine x86_64 18.03.1.ol-0.0.9.el7 ol7_addons 35 M
default: git x86_64 1.8.3.1-20.el7 ol7_latest 4.4 M
default: unzip x86_64 6.0-19.el7 ol7_latest 169 k
default: Installing for dependencies:
default: audit-libs-python x86_64 2.8.4-4.el7 ol7_latest 76 k
default: checkpolicy x86_64 2.5-8.el7 ol7_latest 294 k
default: container-selinux noarch 2:2.21-1.el7 ol7_addons 28 k
default: libcgroup x86_64 0.41-20.el7 ol7_latest 66 k
default: libsemanage-python x86_64 2.5-14.el7 ol7_latest 112 k
default: libtool-ltdl x86_64 2.4.2-22.el7_3 ol7_latest 48 k
default: perl x86_64 4:5.16.3-293.el7 ol7_latest 8.0 M
default: perl-Carp noarch 1.26-244.el7 ol7_latest 19 k
default: perl-Encode x86_64 2.51-7.el7 ol7_latest 1.5 M
default: perl-Error noarch 1:0.17020-2.el7 ol7_latest 31 k
default: perl-Exporter noarch 5.68-3.el7 ol7_latest 28 k
default: perl-File-Path noarch 2.09-2.el7 ol7_latest 26 k
default: perl-File-Temp noarch 0.23.01-3.el7 ol7_latest 56 k
default: perl-Filter x86_64 1.49-3.el7 ol7_latest 76 k
default: perl-Getopt-Long noarch 2.40-3.el7 ol7_latest 55 k
default: perl-Git noarch 1.8.3.1-20.el7 ol7_latest 55 k
default: perl-HTTP-Tiny noarch 0.033-3.el7 ol7_latest 38 k
default: perl-PathTools x86_64 3.40-5.el7 ol7_latest 82 k
default: perl-Pod-Escapes noarch 1:1.04-293.el7 ol7_latest 51 k
default: perl-Pod-Perldoc noarch 3.20-4.el7 ol7_latest 86 k
default: perl-Pod-Simple noarch 1:3.28-4.el7 ol7_latest 216 k
default: perl-Pod-Usage noarch 1.63-3.el7 ol7_latest 26 k
default: perl-Scalar-List-Utils x86_64 1.27-248.el7 ol7_latest 35 k
default: perl-Socket x86_64 2.010-4.el7 ol7_latest 48 k
default: perl-Storable x86_64 2.45-3.el7 ol7_latest 76 k
default: perl-TermReadKey x86_64 2.30-20.el7 ol7_latest 30 k
default: perl-Text-ParseWords noarch 3.29-4.el7 ol7_latest 13 k
default: perl-Time-HiRes x86_64 4:1.9725-3.el7 ol7_latest 44 k
default: perl-Time-Local noarch 1.2300-2.el7 ol7_latest 24 k
default: perl-constant noarch 1.27-2.el7 ol7_latest 18 k
default: perl-libs x86_64 4:5.16.3-293.el7 ol7_latest 688 k
default: perl-macros x86_64 4:5.16.3-293.el7 ol7_latest 43 k
default: perl-parent noarch 1:0.225-244.el7 ol7_latest 12 k
default: perl-podlators noarch 2.5.1-3.el7 ol7_latest 111 k
default: perl-threads x86_64 1.87-4.el7 ol7_latest 48 k
default: perl-threads-shared x86_64 1.43-6.el7 ol7_latest 38 k
default: pigz x86_64 2.3.4-1.el7 ol7_addons 80 k
default: policycoreutils-python x86_64 2.5-29.0.1.el7 ol7_latest 455 k
default: python-IPy noarch 0.75-6.el7 ol7_latest 32 k
default: rsync x86_64 3.1.2-4.el7 ol7_latest 403 k
default: setools-libs x86_64 3.3.8-4.el7 ol7_latest 620 k
default: Updating for dependencies:
default: audit-libs x86_64 2.8.4-4.el7 ol7_latest 100 k
default: libselinux x86_64 2.5-14.1.el7 ol7_latest 162 k
default: libselinux-python x86_64 2.5-14.1.el7 ol7_latest 235 k
default: libselinux-utils
default: x86_64 2.5-14.1.el7 ol7_latest 151 k
default: libsemanage x86_64 2.5-14.el7 ol7_latest 150 k
default: libsepol x86_64 2.5-10.el7 ol7_latest 297 k
default: policycoreutils x86_64 2.5-29.0.1.el7 ol7_latest 915 k
default:
default: Transaction Summary
default: ================================================================================
default: Install 3 Packages (+41 Dependent packages)
default: Upgrade ( 7 Dependent packages)
default: Total download size: 55 M
default: Downloading packages:
default: Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
default: --------------------------------------------------------------------------------
default: Total 6.5 MB/s | 55 MB 00:08
default: Running transaction check
default: Running transaction test
default: Transaction test succeeded
default: Running transaction
default: Updating : libsepol-2.5-10.el7.x86_64 1/58
default:
default: Updating : libselinux-2.5-14.1.el7.x86_64 2/58
default:
default: Updating : audit-libs-2.8.4-4.el7.x86_64 3/58
default:
default: Updating : libsemanage-2.5-14.el7.x86_64 4/58
default:
default: Updating : libselinux-utils-2.5-14.1.el7.x86_64 5/58
default:
default: Updating : policycoreutils-2.5-29.0.1.el7.x86_64 6/58
default:
default: Installing : libcgroup-0.41-20.el7.x86_64 7/58
default:
default: Installing : libsemanage-python-2.5-14.el7.x86_64 8/58
default:
default: Installing : audit-libs-python-2.8.4-4.el7.x86_64 9/58
default:
default: Installing : setools-libs-3.3.8-4.el7.x86_64 10/58
default:
default: Updating : libselinux-python-2.5-14.1.el7.x86_64 11/58
default:
default: Installing : 1:perl-parent-0.225-244.el7.noarch 12/58
default:
default: Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 13/58
default:
default: Installing : perl-podlators-2.5.1-3.el7.noarch 14/58
default:
default: Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 15/58
default:
default: Installing : 1:perl-Pod-Escapes-1.04-293.el7.noarch 16/58
default:
default: Installing : perl-Encode-2.51-7.el7.x86_64 17/58
default:
default: Installing : perl-Text-ParseWords-3.29-4.el7.noarch 18/58
default:
default: Installing : perl-Pod-Usage-1.63-3.el7.noarch 19/58
default:
default: Installing : 4:perl-macros-5.16.3-293.el7.x86_64 20/58
default:
default: Installing : perl-Storable-2.45-3.el7.x86_64 21/58
default:
default: Installing : perl-Exporter-5.68-3.el7.noarch 22/58
default:
default: Installing : perl-constant-1.27-2.el7.noarch 23/58
default:
default: Installing : perl-Time-Local-1.2300-2.el7.noarch 24/58
default:
default: Installing : perl-Socket-2.010-4.el7.x86_64 25/58
default:
default: Installing : perl-Carp-1.26-244.el7.noarch 26/58
default:
default: Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 27/58
default:
default: Installing : perl-PathTools-3.40-5.el7.x86_64 28/58
default:
default: Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 29/58
default:
default: Installing : perl-File-Temp-0.23.01-3.el7.noarch 30/58
default:
default: Installing : perl-File-Path-2.09-2.el7.noarch 31/58
default:
default: Installing : perl-threads-shared-1.43-6.el7.x86_64 32/58
default:
default: Installing : perl-threads-1.87-4.el7.x86_64 33/58
default:
default: Installing : perl-Filter-1.49-3.el7.x86_64 34/58
default:
default: Installing : 4:perl-libs-5.16.3-293.el7.x86_64 35/58
default:
default: Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 36/58
default:
default: Installing : perl-Getopt-Long-2.40-3.el7.noarch 37/58
default:
default: Installing : 4:perl-5.16.3-293.el7.x86_64 38/58
default:
default: Installing : 1:perl-Error-0.17020-2.el7.noarch 39/58
default:
default: Installing : perl-TermReadKey-2.30-20.el7.x86_64 40/58
default:
default: Installing : rsync-3.1.2-4.el7.x86_64 41/58
default:
default: Installing : perl-Git-1.8.3.1-20.el7.noarch 42/58
default:
default: Installing : git-1.8.3.1-20.el7.x86_64 43/58
default:
default: Installing : python-IPy-0.75-6.el7.noarch 44/58
default:
default: Installing : libtool-ltdl-2.4.2-22.el7_3.x86_64 45/58
default:
default: Installing : pigz-2.3.4-1.el7.x86_64 46/58
default:
default: Installing : checkpolicy-2.5-8.el7.x86_64 47/58
default:
default: Installing : policycoreutils-python-2.5-29.0.1.el7.x86_64 48/58
default:
default: Installing : 2:container-selinux-2.21-1.el7.noarch 49/58
default:
default: Installing : docker-engine-18.03.1.ol-0.0.9.el7.x86_64 50/58
default:
default: Installing : unzip-6.0-19.el7.x86_64 51/58
default:
default: Cleanup : policycoreutils-2.5-22.0.1.el7.x86_64 52/58
default:
default: Cleanup : libsemanage-2.5-11.el7.x86_64 53/58
default:
default: Cleanup : libselinux-utils-2.5-12.0.1.el7.x86_64 54/58
default:
default: Cleanup : libselinux-python-2.5-12.0.1.el7.x86_64 55/58
default:
default: Cleanup : libselinux-2.5-12.0.1.el7.x86_64 56/58
default:
default: Cleanup : libsepol-2.5-8.1.el7.x86_64 57/58
default:
default: Cleanup : audit-libs-2.8.1-3.el7.x86_64 58/58
default:
default: Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 1/58
default:
default: Verifying : libcgroup-0.41-20.el7.x86_64 2/58
default:
default: Verifying : perl-threads-shared-1.43-6.el7.x86_64 3/58
default:
default: Verifying : perl-Storable-2.45-3.el7.x86_64 4/58
default:
default: Verifying : perl-Exporter-5.68-3.el7.noarch 5/58
default:
default: Verifying : perl-constant-1.27-2.el7.noarch 6/58
default:
default: Verifying : perl-PathTools-3.40-5.el7.x86_64 7/58
default:
default: Verifying : checkpolicy-2.5-8.el7.x86_64 8/58
default:
default: Verifying : perl-File-Temp-0.23.01-3.el7.noarch 9/58
default:
default: Verifying : 1:perl-parent-0.225-244.el7.noarch 10/58
default:
default: Verifying : 4:perl-macros-5.16.3-293.el7.x86_64 11/58
default:
default: Verifying : pigz-2.3.4-1.el7.x86_64 12/58
default:
default: Verifying : 2:container-selinux-2.21-1.el7.noarch 13/58
default:
default: Verifying : perl-Git-1.8.3.1-20.el7.noarch 14/58
default:
default: Verifying : libtool-ltdl-2.4.2-22.el7_3.x86_64 15/58
default:
default: Verifying : perl-Time-Local-1.2300-2.el7.noarch 16/58
default:
default: Verifying : audit-libs-2.8.4-4.el7.x86_64 17/58
default:
default: Verifying : 1:perl-Pod-Escapes-1.04-293.el7.noarch 18/58
default:
default: Verifying : policycoreutils-2.5-29.0.1.el7.x86_64 19/58
default:
default: Verifying : python-IPy-0.75-6.el7.noarch 20/58
default:
default: Verifying : perl-Socket-2.010-4.el7.x86_64 21/58
default:
default: Verifying : setools-libs-3.3.8-4.el7.x86_64 22/58
default:
default: Verifying : perl-Carp-1.26-244.el7.noarch 23/58
default:
default: Verifying : 1:perl-Error-0.17020-2.el7.noarch 24/58
default:
default: Verifying : libsemanage-python-2.5-14.el7.x86_64 25/58
default:
default: Verifying : git-1.8.3.1-20.el7.x86_64 26/58
default:
default: Verifying : libsemanage-2.5-14.el7.x86_64 27/58
default:
default: Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 28/58
default:
default: Verifying : libsepol-2.5-10.el7.x86_64 29/58
default:
default: Verifying : libselinux-utils-2.5-14.1.el7.x86_64 30/58
default:
default: Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 31/58
default:
default: Verifying : rsync-3.1.2-4.el7.x86_64 32/58
default:
default: Verifying : perl-Pod-Usage-1.63-3.el7.noarch 33/58
default:
default: Verifying : libselinux-python-2.5-14.1.el7.x86_64 34/58
default:
default: Verifying : audit-libs-python-2.8.4-4.el7.x86_64 35/58
default:
default: Verifying : perl-Encode-2.51-7.el7.x86_64 36/58
default:
default: Verifying : policycoreutils-python-2.5-29.0.1.el7.x86_64 37/58
default:
default: Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 38/58
default:
default: Verifying : perl-podlators-2.5.1-3.el7.noarch 39/58
default:
default: Verifying : 4:perl-5.16.3-293.el7.x86_64 40/58
default:
default: Verifying : perl-File-Path-2.09-2.el7.noarch 41/58
default:
default: Verifying : perl-TermReadKey-2.30-20.el7.x86_64 42/58
default:
default: Verifying : perl-threads-1.87-4.el7.x86_64 43/58
default:
default: Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 44/58
default:
default: Verifying : perl-Filter-1.49-3.el7.x86_64 45/58
default:
default: Verifying : perl-Getopt-Long-2.40-3.el7.noarch 46/58
default:
default: Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 47/58
default:
default: Verifying : unzip-6.0-19.el7.x86_64 48/58
default:
default: Verifying : 4:perl-libs-5.16.3-293.el7.x86_64 49/58
default:
default: Verifying : docker-engine-18.03.1.ol-0.0.9.el7.x86_64 50/58
default:
default: Verifying : libselinux-2.5-14.1.el7.x86_64 51/58
default:
default: Verifying : libsemanage-2.5-11.el7.x86_64 52/58
default:
default: Verifying : libselinux-utils-2.5-12.0.1.el7.x86_64 53/58
default:
default: Verifying : policycoreutils-2.5-22.0.1.el7.x86_64 54/58
default:
default: Verifying : libselinux-python-2.5-12.0.1.el7.x86_64 55/58
default:
default: Verifying : audit-libs-2.8.1-3.el7.x86_64 56/58
default:
default: Verifying : libsepol-2.5-8.1.el7.x86_64 57/58
default:
default: Verifying : libselinux-2.5-12.0.1.el7.x86_64 58/58
default:
default:
default: Installed:
default: docker-engine.x86_64 0:18.03.1.ol-0.0.9.el7 git.x86_64 0:1.8.3.1-20.el7
default: unzip.x86_64 0:6.0-19.el7
default:
default: Dependency Installed:
default: audit-libs-python.x86_64 0:2.8.4-4.el7
default: checkpolicy.x86_64 0:2.5-8.el7
default: container-selinux.noarch 2:2.21-1.el7
default: libcgroup.x86_64 0:0.41-20.el7
default: libsemanage-python.x86_64 0:2.5-14.el7
default: libtool-ltdl.x86_64 0:2.4.2-22.el7_3
default: perl.x86_64 4:5.16.3-293.el7
default: perl-Carp.noarch 0:1.26-244.el7
default: perl-Encode.x86_64 0:2.51-7.el7
default: perl-Error.noarch 1:0.17020-2.el7
default: perl-Exporter.noarch 0:5.68-3.el7
default: perl-File-Path.noarch 0:2.09-2.el7
default: perl-File-Temp.noarch 0:0.23.01-3.el7
default: perl-Filter.x86_64 0:1.49-3.el7
default: perl-Getopt-Long.noarch 0:2.40-3.el7
default: perl-Git.noarch 0:1.8.3.1-20.el7
default: perl-HTTP-Tiny.noarch 0:0.033-3.el7
default: perl-PathTools.x86_64 0:3.40-5.el7
default: perl-Pod-Escapes.noarch 1:1.04-293.el7
default: perl-Pod-Perldoc.noarch 0:3.20-4.el7
default: perl-Pod-Simple.noarch 1:3.28-4.el7
default: perl-Pod-Usage.noarch 0:1.63-3.el7
default: perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
default: perl-Socket.x86_64 0:2.010-4.el7
default: perl-Storable.x86_64 0:2.45-3.el7
default: perl-TermReadKey.x86_64 0:2.30-20.el7
default: perl-Text-ParseWords.noarch 0:3.29-4.el7
default: perl-Time-HiRes.x86_64 4:1.9725-3.el7
default: perl-Time-Local.noarch 0:1.2300-2.el7
default: perl-constant.noarch 0:1.27-2.el7
default: perl-libs.x86_64 4:5.16.3-293.el7
default: perl-macros.x86_64 4:5.16.3-293.el7
default: perl-parent.noarch 1:0.225-244.el7
default: perl-podlators.noarch 0:2.5.1-3.el7
default: perl-threads.x86_64 0:1.87-4.el7
default: perl-threads-shared.x86_64 0:1.43-6.el7
default: pigz.x86_64 0:2.3.4-1.el7
default: policycoreutils-python.x86_64 0:2.5-29.0.1.el7
default: python-IPy.noarch 0:0.75-6.el7
default: rsync.x86_64 0:3.1.2-4.el7
default: setools-libs.x86_64 0:3.3.8-4.el7
default:
default: Dependency Updated:
default: audit-libs.x86_64 0:2.8.4-4.el7
default: libselinux.x86_64 0:2.5-14.1.el7
default: libselinux-python.x86_64 0:2.5-14.1.el7
default: libselinux-utils.x86_64 0:2.5-14.1.el7
default: libsemanage.x86_64 0:2.5-14.el7
default: libsepol.x86_64 0:2.5-10.el7
default: policycoreutils.x86_64 0:2.5-29.0.1.el7
default: Complete!
default: Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
[Maris.Win10] ➤ ssh -i ~/96_VAGRANT/OL-docker/.vagrant/machines/default/virtualbox/private_key vagrant@192.168.33.13
Warning: Permanently added '192.168.33.13' (RSA) to the list of known hosts.
Welcome to Oracle Linux Server release 7.5 (GNU/Linux 4.14.35-1818.0.9.el7uek.x86_64)
The Oracle Linux End-User License Agreement can be viewed here:
* /usr/share/eula/eula.en_US
For additional packages, updates, documentation and community help, see:
* http://yum.oracle.com/
[vagrant@localhost ~]$ cd
[vagrant@localhost ~]$ git clone https://github.com/oracle/docker-images.git
Cloning into 'docker-images'...
remote: Enumerating objects: 27, done.
remote: Counting objects: 100% (27/27), done.
remote: Compressing objects: 100% (26/26), done.
remote: Total 8989 (delta 7), reused 5 (delta 0), pack-reused 8962
Receiving objects: 100% (8989/8989), 9.97 MiB | 940.00 KiB/s, done.
Resolving deltas: 100% (5119/5119), done.
[vagrant@localhost ~]$ mkdir /ORCL/oradb/patch/
[vagrant@localhost ~]$ cp /vagrant/p6880880*.zip /ORCL/oradb/patch/
[vagrant@localhost ~]$ unzip -q -d /ORCL/oradb/patch /vagrant/p28689117_180000_Linux-x86-64.zip
[vagrant@localhost ~]$ sed -i.back -e '/rm -rf $ORACLE_HOME/d' ~/docker-images/OracleDatabase/SingleInstance/dockerfiles/18.3.0/installDBBinaries.sh
[vagrant@localhost ~]$ cd ~/docker-images/OracleDatabase/SingleInstance/dockerfiles
[vagrant@localhost dockerfiles]$ cp /vagrant/LINUX.X64_180000_db_home.zip 18.3.0/LINUX.X64_180000_db_home.zip
[vagrant@localhost dockerfiles]$ ./buildDockerImage.sh -v 18.3.0 -e
Checking if required packages are present and valid...
LINUX.X64_180000_db_home.zip: OK
==========================
DOCKER info:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 18.03.1-ol
Storage Driver: btrfs
Build Version: Btrfs v4.9.1
Library Version: 102
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 773c489c9c1b21a6d78b5c538cd395416ec50f88
runc version: 4fc53a81fb7c994640722ac585fa9ca548971871
init version: 949e6fa
Security Options:
seccomp
Profile: default
selinux
Kernel Version: 4.14.35-1818.0.9.el7uek.x86_64
Operating System: Oracle Linux Server 7.5
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 7.531GiB
Name: localhost.localdomain
ID: Y7ID:6RY2:MTZK:FD7M:6OGP:X54F:7KLG:IVKL:UD4B:5F5O:GPU7:5R2J
Docker Root Dir: /ORCL/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Registries: docker.io (secure)
==========================
Building image 'oracle/database:18.3.0-ee' ...
Sending build context to Docker daemon 4.565GB
Step 1/24 : FROM oraclelinux:7-slim as base
Trying to pull repository docker.io/oraclelinux ...
7-slim: Pulling from docker.io/library/oraclelinux
f25d82609194: Pull complete
Digest: sha256:2ed2820810409491b0d8fced14b5f6b3fd8206eb8fbf5f9138d825c5a98db020
Status: Downloaded newer image for oraclelinux:7-slim
---> b19454a5f17a
Step 2/24 : MAINTAINER Gerald Venzl <gerald.venzl@oracle.com>
---> Running in 725b98d905e5
Removing intermediate container 725b98d905e5
---> 59471abd6928
Step 3/24 : ENV ORACLE_BASE=/opt/oracle ORACLE_HOME=/opt/oracle/product/18c/dbhome_1 INSTALL_DIR=/opt/install INSTALL_FILE_1="LINUX.X64_180000_db_home.zip" INSTALL_RSP="db_inst.rsp" CONFIG_RSP="dbca.rsp.tmpl" PWD_FILE="setPassword.sh" RUN_FILE="runOracle.sh" START_FILE="startDB.sh" CREATE_DB_FILE="createDB.sh" SETUP_LINUX_FILE="setupLinuxEnv.sh" CHECK_SPACE_FILE="checkSpace.sh" CHECK_DB_FILE="checkDBStatus.sh" USER_SCRIPTS_FILE="runUserScripts.sh" INSTALL_DB_BINARIES_FILE="installDBBinaries.sh"
---> Running in eda3376bc30c
Removing intermediate container eda3376bc30c
---> 7ab5f110e26c
Step 4/24 : ENV PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch/:/usr/sbin:$PATH LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
---> Running in 92744bd295bf
Removing intermediate container 92744bd295bf
---> 1a7d34fac0c1
Step 5/24 : COPY $SETUP_LINUX_FILE $CHECK_SPACE_FILE $INSTALL_DIR/
---> 47240b66891b
Step 6/24 : COPY $RUN_FILE $START_FILE $CREATE_DB_FILE $CONFIG_RSP $PWD_FILE $CHECK_DB_FILE $USER_SCRIPTS_FILE $ORACLE_BASE/
---> 1cc4704f5889
Step 7/24 : RUN chmod ug+x $INSTALL_DIR/*.sh && sync && $INSTALL_DIR/$CHECK_SPACE_FILE && $INSTALL_DIR/$SETUP_LINUX_FILE && rm -rf $INSTALL_DIR
---> Running in da989fb07798
Loaded plugins: ovl
Resolving Dependencies
--> Running transaction check
---> Package openssl.x86_64 1:1.0.2k-16.0.1.el7 will be installed
--> Processing Dependency: make for package: 1:openssl-1.0.2k-16.0.1.el7.x86_64
---> Package oracle-database-preinstall-18c.x86_64 0:1.0-1.el7 will be installed
--> Processing Dependency: binutils for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: bc for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: initscripts for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: sysstat for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: xorg-x11-utils for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: bind-utils for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: net-tools for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: pam for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: compat-libcap1 for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: ksh for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: libaio-devel for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: xorg-x11-xauth for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: util-linux-ng for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: libaio for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: psmisc for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: unzip for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: module-init-tools for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: glibc-devel for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: compat-libstdc++-33 for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: libstdc++-devel for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: ethtool for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: procps for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: openssh-clients for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: nfs-utils for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Processing Dependency: smartmontools for package: oracle-database-preinstall-18c-1.0-1.el7.x86_64
--> Running transaction check
---> Package bc.x86_64 0:1.06.95-13.el7 will be installed
---> Package bind-utils.x86_64 32:9.9.4-72.el7 will be installed
--> Processing Dependency: bind-libs = 32:9.9.4-72.el7 for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: libisccc.so.90()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: liblwres.so.90()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: libbind9.so.90()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: libisc.so.95()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: libdns.so.100()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: libGeoIP.so.1()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
--> Processing Dependency: libisccfg.so.90()(64bit) for package: 32:bind-utils-9.9.4-72.el7.x86_64
---> Package binutils.x86_64 0:2.27-34.base.0.1.el7 will be installed
---> Package compat-libcap1.x86_64 0:1.10-7.el7 will be installed
---> Package compat-libstdc++-33.x86_64 0:3.2.3-72.el7 will be installed
---> Package ethtool.x86_64 2:4.8-9.el7 will be installed
---> Package glibc-devel.x86_64 0:2.17-260.0.9.el7 will be installed
--> Processing Dependency: glibc-headers = 2.17-260.0.9.el7 for package: glibc-devel-2.17-260.0.9.el7.x86_64
--> Processing Dependency: glibc-headers for package: glibc-devel-2.17-260.0.9.el7.x86_64
---> Package initscripts.x86_64 0:9.49.46-1.0.1.el7 will be installed
--> Processing Dependency: udev >= 125-1 for package: initscripts-9.49.46-1.0.1.el7.x86_64
--> Processing Dependency: sysvinit-tools >= 2.87-5 for package: initscripts-9.49.46-1.0.1.el7.x86_64
--> Processing Dependency: /sbin/arping for package: initscripts-9.49.46-1.0.1.el7.x86_64
--> Processing Dependency: systemd for package: initscripts-9.49.46-1.0.1.el7.x86_64
--> Processing Dependency: iproute for package: initscripts-9.49.46-1.0.1.el7.x86_64
--> Processing Dependency: hostname for package: initscripts-9.49.46-1.0.1.el7.x86_64
---> Package kmod.x86_64 0:20-23.0.1.el7 will be installed
--> Processing Dependency: /usr/bin/gzip for package: kmod-20-23.0.1.el7.x86_64
--> Processing Dependency: /usr/bin/xz for package: kmod-20-23.0.1.el7.x86_64
--> Processing Dependency: dracut for package: kmod-20-23.0.1.el7.x86_64
---> Package ksh.x86_64 0:20120801-139.0.1.el7 will be installed
---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed
---> Package libaio-devel.x86_64 0:0.3.109-13.el7 will be installed
---> Package libstdc++-devel.x86_64 0:4.8.5-36.0.1.el7 will be installed
---> Package make.x86_64 1:3.82-23.el7 will be installed
---> Package net-tools.x86_64 0:2.0-0.24.20131004git.el7 will be installed
---> Package nfs-utils.x86_64 1:1.3.0-0.61.0.1.el7 will be installed
--> Processing Dependency: gssproxy >= 0.7.0-3 for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libtirpc >= 0.2.4-0.7 for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: rpcbind for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libdevmapper.so.1.02(Base)(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: keyutils for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: quota for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libevent for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libdevmapper.so.1.02(DM_1_02_97)(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libnfsidmap for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libdevmapper.so.1.02()(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libevent-2.0.so.5()(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libwrap.so.0()(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libtirpc.so.1()(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
--> Processing Dependency: libnfsidmap.so.0()(64bit) for package: 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64
---> Package openssh-clients.x86_64 0:7.4p1-16.el7 will be installed
--> Processing Dependency: openssh = 7.4p1-16.el7 for package: openssh-clients-7.4p1-16.el7.x86_64
--> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-16.el7.x86_64
--> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-16.el7.x86_64
--> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-16.el7.x86_64
---> Package pam.x86_64 0:1.1.8-22.el7 will be installed
--> Processing Dependency: libpwquality >= 0.9.9 for package: pam-1.1.8-22.el7.x86_64
--> Processing Dependency: cracklib-dicts >= 2.8 for package: pam-1.1.8-22.el7.x86_64
--> Processing Dependency: libcrack.so.2()(64bit) for package: pam-1.1.8-22.el7.x86_64
---> Package procps-ng.x86_64 0:3.3.10-23.el7 will be installed
--> Processing Dependency: libsystemd.so.0(LIBSYSTEMD_209)(64bit) for package: procps-ng-3.3.10-23.el7.x86_64
--> Processing Dependency: libsystemd.so.0()(64bit) for package: procps-ng-3.3.10-23.el7.x86_64
---> Package psmisc.x86_64 0:22.20-15.el7 will be installed
---> Package smartmontools.x86_64 1:6.5-1.el7 will be installed
--> Processing Dependency: mailx for package: 1:smartmontools-6.5-1.el7.x86_64
---> Package sysstat.x86_64 0:10.1.5-17.el7 will be installed
--> Processing Dependency: systemd-sysv for package: sysstat-10.1.5-17.el7.x86_64
--> Processing Dependency: /etc/cron.d for package: sysstat-10.1.5-17.el7.x86_64
--> Processing Dependency: libsensors.so.4()(64bit) for package: sysstat-10.1.5-17.el7.x86_64
---> Package unzip.x86_64 0:6.0-19.el7 will be installed
---> Package util-linux.x86_64 0:2.23.2-59.el7 will be installed
--> Processing Dependency: libsmartcols = 2.23.2-59.el7 for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libutempter.so.0(UTEMPTER_1.1)(64bit) for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libuser.so.1()(64bit) for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libutempter.so.0()(64bit) for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.23.2-59.el7.x86_64
---> Package xorg-x11-utils.x86_64 0:7.5-23.el7 will be installed
--> Processing Dependency: libXext.so.6()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXv.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXtst.so.6()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXrender.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXxf86vm.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXxf86misc.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libX11-xcb.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXrandr.so.2()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libdmx.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXinerama.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libX11.so.6()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXxf86dga.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libxcb.so.1()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libxcb-shape.so.0()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
--> Processing Dependency: libXi.so.6()(64bit) for package: xorg-x11-utils-7.5-23.el7.x86_64
---> Package xorg-x11-xauth.x86_64 1:1.0.9-1.el7 will be installed
--> Processing Dependency: libXau.so.6()(64bit) for package: 1:xorg-x11-xauth-1.0.9-1.el7.x86_64
--> Processing Dependency: libXmuu.so.1()(64bit) for package: 1:xorg-x11-xauth-1.0.9-1.el7.x86_64
--> Running transaction check
---> Package GeoIP.x86_64 0:1.5.0-13.el7 will be installed
---> Package bind-libs.x86_64 32:9.9.4-72.el7 will be installed
--> Processing Dependency: bind-license = 32:9.9.4-72.el7 for package: 32:bind-libs-9.9.4-72.el7.x86_64
---> Package cracklib.x86_64 0:2.9.0-11.el7 will be installed
---> Package cracklib-dicts.x86_64 0:2.9.0-11.el7 will be installed
---> Package cronie.x86_64 0:1.4.11-19.el7 will be installed
--> Processing Dependency: dailyjobs for package: cronie-1.4.11-19.el7.x86_64
---> Package device-mapper-libs.x86_64 7:1.02.149-10.el7_6.2 will be installed
--> Processing Dependency: device-mapper = 7:1.02.149-10.el7_6.2 for package: 7:device-mapper-libs-1.02.149-10.el7_6.2.x86_64
---> Package dracut.x86_64 0:033-554.0.3.el7 will be installed
--> Processing Dependency: /usr/bin/pkg-config for package: dracut-033-554.0.3.el7.x86_64
--> Processing Dependency: kpartx for package: dracut-033-554.0.3.el7.x86_64
--> Processing Dependency: tar for package: dracut-033-554.0.3.el7.x86_64
--> Processing Dependency: hardlink for package: dracut-033-554.0.3.el7.x86_64
---> Package fipscheck-lib.x86_64 0:1.4.1-6.el7 will be installed
--> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.el7.x86_64
---> Package glibc-headers.x86_64 0:2.17-260.0.9.el7 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-260.0.9.el7.x86_64
--> Processing Dependency: kernel-headers for package: glibc-headers-2.17-260.0.9.el7.x86_64
---> Package gssproxy.x86_64 0:0.7.0-21.el7 will be installed
--> Processing Dependency: libini_config >= 1.3.1-31 for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libref_array.so.1(REF_ARRAY_0.1.1)(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libini_config.so.3(INI_CONFIG_1.1.0)(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libini_config.so.3(INI_CONFIG_1.2.0)(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libverto-module-base for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libini_config.so.3()(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libbasicobjects.so.0()(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libref_array.so.1()(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
--> Processing Dependency: libcollection.so.2()(64bit) for package: gssproxy-0.7.0-21.el7.x86_64
---> Package gzip.x86_64 0:1.5-10.el7 will be installed
---> Package hostname.x86_64 0:3.13-3.el7 will be installed
---> Package iproute.x86_64 0:4.11.0-14.el7 will be installed
--> Processing Dependency: libmnl.so.0(LIBMNL_1.0)(64bit) for package: iproute-4.11.0-14.el7.x86_64
--> Processing Dependency: libmnl.so.0()(64bit) for package: iproute-4.11.0-14.el7.x86_64
--> Processing Dependency: libxtables.so.10()(64bit) for package: iproute-4.11.0-14.el7.x86_64
---> Package iputils.x86_64 0:20160308-10.el7 will be installed
---> Package keyutils.x86_64 0:1.5.8-3.el7 will be installed
---> Package libX11.x86_64 0:1.6.5-2.el7 will be installed
--> Processing Dependency: libX11-common >= 1.6.5-2.el7 for package: libX11-1.6.5-2.el7.x86_64
---> Package libXau.x86_64 0:1.0.8-2.1.el7 will be installed
---> Package libXext.x86_64 0:1.3.3-3.el7 will be installed
---> Package libXi.x86_64 0:1.7.9-1.el7 will be installed
---> Package libXinerama.x86_64 0:1.1.3-2.1.el7 will be installed
---> Package libXmu.x86_64 0:1.1.2-2.el7 will be installed
--> Processing Dependency: libXt.so.6()(64bit) for package: libXmu-1.1.2-2.el7.x86_64
---> Package libXrandr.x86_64 0:1.5.1-2.el7 will be installed
---> Package libXrender.x86_64 0:0.9.10-1.el7 will be installed
---> Package libXtst.x86_64 0:1.2.3-1.el7 will be installed
---> Package libXv.x86_64 0:1.0.11-1.el7 will be installed
---> Package libXxf86dga.x86_64 0:1.1.4-2.1.el7 will be installed
---> Package libXxf86misc.x86_64 0:1.0.3-7.1.el7 will be installed
---> Package libXxf86vm.x86_64 0:1.1.4-1.el7 will be installed
---> Package libdmx.x86_64 0:1.1.3-3.el7 will be installed
---> Package libedit.x86_64 0:3.0-12.20121213cvs.el7 will be installed
---> Package libevent.x86_64 0:2.0.21-4.el7 will be installed
---> Package libnfsidmap.x86_64 0:0.25-19.el7 will be installed
---> Package libpwquality.x86_64 0:1.2.3-5.el7 will be installed
---> Package libsmartcols.x86_64 0:2.23.2-59.el7 will be installed
---> Package libtirpc.x86_64 0:0.2.4-0.15.el7 will be installed
---> Package libuser.x86_64 0:0.60-9.el7 will be installed
---> Package libutempter.x86_64 0:1.1.6-4.el7 will be installed
---> Package libxcb.x86_64 0:1.13-1.el7 will be installed
---> Package lm_sensors-libs.x86_64 0:3.4.0-6.20160601gitf9185e5.el7 will be installed
---> Package mailx.x86_64 0:12.5-19.el7 will be installed
---> Package openssh.x86_64 0:7.4p1-16.el7 will be installed
---> Package quota.x86_64 1:4.01-17.el7 will be installed
--> Processing Dependency: quota-nls = 1:4.01-17.el7 for package: 1:quota-4.01-17.el7.x86_64
--> Processing Dependency: tcp_wrappers for package: 1:quota-4.01-17.el7.x86_64
--> Processing Dependency: libext2fs.so.2()(64bit) for package: 1:quota-4.01-17.el7.x86_64
---> Package rpcbind.x86_64 0:0.2.0-47.el7 will be installed
---> Package systemd.x86_64 0:219-62.0.1.el7 will be installed
--> Processing Dependency: dbus for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: acl for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libcryptsetup.so.12(CRYPTSETUP_2.0)(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libkmod.so.2(LIBKMOD_5)(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libdw.so.1(ELFUTILS_0.122)(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libdw.so.1(ELFUTILS_0.158)(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libdw.so.1(ELFUTILS_0.130)(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: liblz4.so.1()(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libdw.so.1()(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libkmod.so.2()(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libcryptsetup.so.12()(64bit) for package: systemd-219-62.0.1.el7.x86_64
--> Processing Dependency: libqrencode.so.3()(64bit) for package: systemd-219-62.0.1.el7.x86_64
---> Package systemd-libs.x86_64 0:219-62.0.1.el7 will be installed
---> Package systemd-sysv.x86_64 0:219-62.0.1.el7 will be installed
---> Package sysvinit-tools.x86_64 0:2.88-14.dsf.el7 will be installed
---> Package tcp_wrappers-libs.x86_64 0:7.6-77.el7 will be installed
---> Package xz.x86_64 0:5.2.2-1.el7 will be installed
--> Running transaction check
---> Package acl.x86_64 0:2.2.51-14.el7 will be installed
---> Package bind-license.noarch 32:9.9.4-72.el7 will be installed
---> Package cronie-anacron.x86_64 0:1.4.11-19.el7 will be installed
--> Processing Dependency: crontabs for package: cronie-anacron-1.4.11-19.el7.x86_64
---> Package cryptsetup-libs.x86_64 0:2.0.3-3.el7 will be installed
--> Processing Dependency: libjson-c.so.2()(64bit) for package: cryptsetup-libs-2.0.3-3.el7.x86_64
---> Package dbus.x86_64 1:1.10.24-12.0.1.el7 will be installed
--> Processing Dependency: dbus-libs(x86-64) = 1:1.10.24-12.0.1.el7 for package: 1:dbus-1.10.24-12.0.1.el7.x86_64
--> Processing Dependency: libdbus-1.so.3(LIBDBUS_PRIVATE_1.10.24)(64bit) for package: 1:dbus-1.10.24-12.0.1.el7.x86_64
--> Processing Dependency: libdbus-1.so.3(LIBDBUS_1_3)(64bit) for package: 1:dbus-1.10.24-12.0.1.el7.x86_64
--> Processing Dependency: libdbus-1.so.3()(64bit) for package: 1:dbus-1.10.24-12.0.1.el7.x86_64
---> Package device-mapper.x86_64 7:1.02.149-10.el7_6.2 will be installed
---> Package e2fsprogs-libs.x86_64 0:1.42.9-13.el7 will be installed
---> Package elfutils-libs.x86_64 0:0.172-2.el7 will be installed
--> Processing Dependency: default-yama-scope for package: elfutils-libs-0.172-2.el7.x86_64
---> Package fipscheck.x86_64 0:1.4.1-6.el7 will be installed
---> Package hardlink.x86_64 1:1.0-19.el7 will be installed
---> Package iptables.x86_64 0:1.4.21-28.el7 will be installed
--> Processing Dependency: libnetfilter_conntrack.so.3()(64bit) for package: iptables-1.4.21-28.el7.x86_64
--> Processing Dependency: libnfnetlink.so.0()(64bit) for package: iptables-1.4.21-28.el7.x86_64
---> Package kernel-headers.x86_64 0:3.10.0-957.el7 will be installed
---> Package kmod-libs.x86_64 0:20-23.0.1.el7 will be installed
---> Package kpartx.x86_64 0:0.4.9-123.el7 will be installed
---> Package libX11-common.noarch 0:1.6.5-2.el7 will be installed
---> Package libXt.x86_64 0:1.1.5-3.el7 will be installed
--> Processing Dependency: libICE.so.6()(64bit) for package: libXt-1.1.5-3.el7.x86_64
--> Processing Dependency: libSM.so.6()(64bit) for package: libXt-1.1.5-3.el7.x86_64
---> Package libbasicobjects.x86_64 0:0.1.1-32.el7 will be installed
---> Package libcollection.x86_64 0:0.7.0-32.el7 will be installed
---> Package libini_config.x86_64 0:1.3.1-32.el7 will be installed
--> Processing Dependency: libpath_utils.so.1(PATH_UTILS_0.2.1)(64bit) for package: libini_config-1.3.1-32.el7.x86_64
--> Processing Dependency: libpath_utils.so.1()(64bit) for package: libini_config-1.3.1-32.el7.x86_64
---> Package libmnl.x86_64 0:1.0.3-7.el7 will be installed
---> Package libref_array.x86_64 0:0.1.5-32.el7 will be installed
---> Package libverto-libevent.x86_64 0:0.2.5-4.el7 will be installed
---> Package lz4.x86_64 0:1.7.5-2.0.1.el7 will be installed
---> Package pkgconfig.x86_64 1:0.27.1-4.el7 will be installed
---> Package qrencode-libs.x86_64 0:3.4.1-3.el7 will be installed
---> Package quota-nls.noarch 1:4.01-17.el7 will be installed
---> Package tar.x86_64 2:1.26-35.el7 will be installed
---> Package tcp_wrappers.x86_64 0:7.6-77.el7 will be installed
--> Running transaction check
---> Package crontabs.noarch 0:1.11-6.20121102git.el7 will be installed
---> Package dbus-libs.x86_64 1:1.10.24-12.0.1.el7 will be installed
---> Package elfutils-default-yama-scope.noarch 0:0.172-2.el7 will be installed
---> Package json-c.x86_64 0:0.11-4.el7_0 will be installed
---> Package libICE.x86_64 0:1.0.9-9.el7 will be installed
---> Package libSM.x86_64 0:1.2.2-2.el7 will be installed
---> Package libnetfilter_conntrack.x86_64 0:1.0.6-1.el7_3 will be installed
---> Package libnfnetlink.x86_64 0:1.0.1-4.el7 will be installed
---> Package libpath_utils.x86_64 0:0.2.1-32.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
openssl x86_64 1:1.0.2k-16.0.1.el7 ol7_latest 492 k
oracle-database-preinstall-18c
x86_64 1.0-1.el7 ol7_latest 18 k
Installing for dependencies:
GeoIP x86_64 1.5.0-13.el7 ol7_latest 1.5 M
acl x86_64 2.2.51-14.el7 ol7_latest 81 k
bc x86_64 1.06.95-13.el7 ol7_latest 114 k
bind-libs x86_64 32:9.9.4-72.el7 ol7_latest 1.0 M
bind-license noarch 32:9.9.4-72.el7 ol7_latest 86 k
bind-utils x86_64 32:9.9.4-72.el7 ol7_latest 205 k
binutils x86_64 2.27-34.base.0.1.el7 ol7_latest 5.9 M
compat-libcap1 x86_64 1.10-7.el7 ol7_latest 17 k
compat-libstdc++-33 x86_64 3.2.3-72.el7 ol7_latest 190 k
cracklib x86_64 2.9.0-11.el7 ol7_latest 79 k
cracklib-dicts x86_64 2.9.0-11.el7 ol7_latest 3.6 M
cronie x86_64 1.4.11-19.el7 ol7_latest 91 k
cronie-anacron x86_64 1.4.11-19.el7 ol7_latest 35 k
crontabs noarch 1.11-6.20121102git.el7 ol7_latest 12 k
cryptsetup-libs x86_64 2.0.3-3.el7 ol7_latest 337 k
dbus x86_64 1:1.10.24-12.0.1.el7 ol7_latest 245 k
dbus-libs x86_64 1:1.10.24-12.0.1.el7 ol7_latest 169 k
device-mapper x86_64 7:1.02.149-10.el7_6.2 ol7_latest 292 k
device-mapper-libs x86_64 7:1.02.149-10.el7_6.2 ol7_latest 319 k
dracut x86_64 033-554.0.3.el7 ol7_latest 328 k
e2fsprogs-libs x86_64 1.42.9-13.el7 ol7_latest 166 k
elfutils-default-yama-scope
noarch 0.172-2.el7 ol7_latest 32 k
elfutils-libs x86_64 0.172-2.el7 ol7_latest 285 k
ethtool x86_64 2:4.8-9.el7 ol7_latest 126 k
fipscheck x86_64 1.4.1-6.el7 ol7_latest 21 k
fipscheck-lib x86_64 1.4.1-6.el7 ol7_latest 10 k
glibc-devel x86_64 2.17-260.0.9.el7 ol7_latest 1.1 M
glibc-headers x86_64 2.17-260.0.9.el7 ol7_latest 684 k
gssproxy x86_64 0.7.0-21.el7 ol7_latest 108 k
gzip x86_64 1.5-10.el7 ol7_latest 129 k
hardlink x86_64 1:1.0-19.el7 ol7_latest 14 k
hostname x86_64 3.13-3.el7 ol7_latest 16 k
initscripts x86_64 9.49.46-1.0.1.el7 ol7_latest 439 k
iproute x86_64 4.11.0-14.el7 ol7_latest 762 k
iptables x86_64 1.4.21-28.el7 ol7_latest 432 k
iputils x86_64 20160308-10.el7 ol7_latest 147 k
json-c x86_64 0.11-4.el7_0 ol7_latest 30 k
kernel-headers x86_64 3.10.0-957.el7 ol7_latest 8.0 M
keyutils x86_64 1.5.8-3.el7 ol7_latest 53 k
kmod x86_64 20-23.0.1.el7 ol7_latest 121 k
kmod-libs x86_64 20-23.0.1.el7 ol7_latest 50 k
kpartx x86_64 0.4.9-123.el7 ol7_latest 76 k
ksh x86_64 20120801-139.0.1.el7 ol7_latest 883 k
libICE x86_64 1.0.9-9.el7 ol7_latest 66 k
libSM x86_64 1.2.2-2.el7 ol7_latest 39 k
libX11 x86_64 1.6.5-2.el7 ol7_latest 606 k
libX11-common noarch 1.6.5-2.el7 ol7_latest 163 k
libXau x86_64 1.0.8-2.1.el7 ol7_latest 28 k
libXext x86_64 1.3.3-3.el7 ol7_latest 38 k
libXi x86_64 1.7.9-1.el7 ol7_latest 40 k
libXinerama x86_64 1.1.3-2.1.el7 ol7_latest 13 k
libXmu x86_64 1.1.2-2.el7 ol7_latest 70 k
libXrandr x86_64 1.5.1-2.el7 ol7_latest 27 k
libXrender x86_64 0.9.10-1.el7 ol7_latest 25 k
libXt x86_64 1.1.5-3.el7 ol7_latest 172 k
libXtst x86_64 1.2.3-1.el7 ol7_latest 20 k
libXv x86_64 1.0.11-1.el7 ol7_latest 18 k
libXxf86dga x86_64 1.1.4-2.1.el7 ol7_latest 18 k
libXxf86misc x86_64 1.0.3-7.1.el7 ol7_latest 19 k
libXxf86vm x86_64 1.1.4-1.el7 ol7_latest 17 k
libaio x86_64 0.3.109-13.el7 ol7_latest 24 k
libaio-devel x86_64 0.3.109-13.el7 ol7_latest 12 k
libbasicobjects x86_64 0.1.1-32.el7 ol7_latest 25 k
libcollection x86_64 0.7.0-32.el7 ol7_latest 41 k
libdmx x86_64 1.1.3-3.el7 ol7_latest 15 k
libedit x86_64 3.0-12.20121213cvs.el7 ol7_latest 88 k
libevent x86_64 2.0.21-4.el7 ol7_latest 208 k
libini_config x86_64 1.3.1-32.el7 ol7_latest 63 k
libmnl x86_64 1.0.3-7.el7 ol7_latest 22 k
libnetfilter_conntrack x86_64 1.0.6-1.el7_3 ol7_latest 55 k
libnfnetlink x86_64 1.0.1-4.el7 ol7_latest 25 k
libnfsidmap x86_64 0.25-19.el7 ol7_latest 49 k
libpath_utils x86_64 0.2.1-32.el7 ol7_latest 28 k
libpwquality x86_64 1.2.3-5.el7 ol7_latest 84 k
libref_array x86_64 0.1.5-32.el7 ol7_latest 27 k
libsmartcols x86_64 2.23.2-59.el7 ol7_latest 140 k
libstdc++-devel x86_64 4.8.5-36.0.1.el7 ol7_latest 1.5 M
libtirpc x86_64 0.2.4-0.15.el7 ol7_latest 88 k
libuser x86_64 0.60-9.el7 ol7_latest 400 k
libutempter x86_64 1.1.6-4.el7 ol7_latest 24 k
libverto-libevent x86_64 0.2.5-4.el7 ol7_latest 8.2 k
libxcb x86_64 1.13-1.el7 ol7_latest 213 k
lm_sensors-libs x86_64 3.4.0-6.20160601gitf9185e5.el7 ol7_latest 41 k
lz4 x86_64 1.7.5-2.0.1.el7 ol7_latest 98 k
mailx x86_64 12.5-19.el7 ol7_latest 244 k
make x86_64 1:3.82-23.el7 ol7_latest 420 k
net-tools x86_64 2.0-0.24.20131004git.el7 ol7_latest 305 k
nfs-utils x86_64 1:1.3.0-0.61.0.1.el7 ol7_latest 410 k
openssh x86_64 7.4p1-16.el7 ol7_latest 509 k
openssh-clients x86_64 7.4p1-16.el7 ol7_latest 653 k
pam x86_64 1.1.8-22.el7 ol7_latest 719 k
pkgconfig x86_64 1:0.27.1-4.el7 ol7_latest 53 k
procps-ng x86_64 3.3.10-23.el7 ol7_latest 290 k
psmisc x86_64 22.20-15.el7 ol7_latest 140 k
qrencode-libs x86_64 3.4.1-3.el7 ol7_latest 49 k
quota x86_64 1:4.01-17.el7 ol7_latest 178 k
quota-nls noarch 1:4.01-17.el7 ol7_latest 90 k
rpcbind x86_64 0.2.0-47.el7 ol7_latest 59 k
smartmontools x86_64 1:6.5-1.el7 ol7_latest 460 k
sysstat x86_64 10.1.5-17.el7 ol7_latest 314 k
systemd x86_64 219-62.0.1.el7 ol7_latest 5.1 M
systemd-libs x86_64 219-62.0.1.el7 ol7_latest 405 k
systemd-sysv x86_64 219-62.0.1.el7 ol7_latest 83 k
sysvinit-tools x86_64 2.88-14.dsf.el7 ol7_latest 62 k
tar x86_64 2:1.26-35.el7 ol7_latest 845 k
tcp_wrappers x86_64 7.6-77.el7 ol7_latest 78 k
tcp_wrappers-libs x86_64 7.6-77.el7 ol7_latest 65 k
unzip x86_64 6.0-19.el7 ol7_latest 169 k
util-linux x86_64 2.23.2-59.el7 ol7_latest 2.0 M
xorg-x11-utils x86_64 7.5-23.el7 ol7_latest 114 k
xorg-x11-xauth x86_64 1:1.0.9-1.el7 ol7_latest 29 k
xz x86_64 5.2.2-1.el7 ol7_latest 228 k
Transaction Summary
================================================================================
Install 2 Packages (+112 Dependent packages)
Total download size: 47 M
Installed size: 134 M
Downloading packages:
--------------------------------------------------------------------------------
Total 609 kB/s | 47 MB 01:18
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : tcp_wrappers-libs-7.6-77.el7.x86_64 1/114
Installing : fipscheck-1.4.1-6.el7.x86_64 2/114
Installing : fipscheck-lib-1.4.1-6.el7.x86_64 3/114
Installing : gzip-1.5-10.el7.x86_64 4/114
Installing : cracklib-2.9.0-11.el7.x86_64 5/114
Installing : cracklib-dicts-2.9.0-11.el7.x86_64 6/114
Installing : pam-1.1.8-22.el7.x86_64 7/114
Installing : libpwquality-1.2.3-5.el7.x86_64 8/114
Installing : libcollection-0.7.0-32.el7.x86_64 9/114
Installing : xz-5.2.2-1.el7.x86_64 10/114
Installing : libbasicobjects-0.1.1-32.el7.x86_64 11/114
Installing : libtirpc-0.2.4-0.15.el7.x86_64 12/114
Installing : lz4-1.7.5-2.0.1.el7.x86_64 13/114
Installing : libevent-2.0.21-4.el7.x86_64 14/114
Installing : libaio-0.3.109-13.el7.x86_64 15/114
Installing : libmnl-1.0.3-7.el7.x86_64 16/114
Installing : libref_array-0.1.5-32.el7.x86_64 17/114
Installing : libICE-1.0.9-9.el7.x86_64 18/114
Installing : libXau-1.0.8-2.1.el7.x86_64 19/114
Installing : libxcb-1.13-1.el7.x86_64 20/114
Installing : libnfnetlink-1.0.1-4.el7.x86_64 21/114
Installing : 1:make-3.82-23.el7.x86_64 22/114
Installing : GeoIP-1.5.0-13.el7.x86_64 23/114
Installing : binutils-2.27-34.base.0.1.el7.x86_64 24/114
install-info: /usr/share/info/dir: could not read (No such file or directory) and could not create (No such file or directory)
install-info: /usr/share/info/dir: could not read (No such file or directory) and could not create (No such file or directory)
install-info: /usr/share/info/dir: could not read (No such file or directory) and could not create (No such file or directory)
install-info: /usr/share/info/dir: could not read (No such file or directory) and could not create (No such file or directory)
install-info: /usr/share/info/dir: could not read (No such file or directory) and could not create (No such file or directory)
Installing : libnetfilter_conntrack-1.0.6-1.el7_3.x86_64 25/114
Installing : iptables-1.4.21-28.el7.x86_64 26/114
Installing : iproute-4.11.0-14.el7.x86_64 27/114
Installing : libSM-1.2.2-2.el7.x86_64 28/114
Installing : libaio-devel-0.3.109-13.el7.x86_64 29/114
Installing : libverto-libevent-0.2.5-4.el7.x86_64 30/114
Installing : libuser-0.60-9.el7.x86_64 31/114
Installing : tcp_wrappers-7.6-77.el7.x86_64 32/114
Installing : 1:quota-nls-4.01-17.el7.noarch 33/114
Installing : json-c-0.11-4.el7_0.x86_64 34/114
Installing : compat-libstdc++-33-3.2.3-72.el7.x86_64 35/114
Installing : 2:ethtool-4.8-9.el7.x86_64 36/114
Installing : mailx-12.5-19.el7.x86_64 37/114
Installing : 32:bind-license-9.9.4-72.el7.noarch 38/114
Installing : 32:bind-libs-9.9.4-72.el7.x86_64 39/114
Installing : 32:bind-utils-9.9.4-72.el7.x86_64 40/114
Installing : hostname-3.13-3.el7.x86_64 41/114
Installing : 2:tar-1.26-35.el7.x86_64 42/114
Installing : libstdc++-devel-4.8.5-36.0.1.el7.x86_64 43/114
Installing : kernel-headers-3.10.0-957.el7.x86_64 44/114
Installing : glibc-headers-2.17-260.0.9.el7.x86_64 45/114
Installing : glibc-devel-2.17-260.0.9.el7.x86_64 46/114
Installing : qrencode-libs-3.4.1-3.el7.x86_64 47/114
Installing : bc-1.06.95-13.el7.x86_64 48/114
Installing : 1:hardlink-1.0-19.el7.x86_64 49/114
Installing : keyutils-1.5.8-3.el7.x86_64 50/114
Installing : libnfsidmap-0.25-19.el7.x86_64 51/114
Installing : lm_sensors-libs-3.4.0-6.20160601gitf9185e5.el7.x86_64 52/114
Installing : psmisc-22.20-15.el7.x86_64 53/114
Installing : libX11-common-1.6.5-2.el7.noarch 54/114
Installing : libX11-1.6.5-2.el7.x86_64 55/114
Installing : libXext-1.3.3-3.el7.x86_64 56/114
Installing : libXrender-0.9.10-1.el7.x86_64 58/114
Installing : libXrandr-1.5.1-2.el7.x86_64 59/114
Installing : libXtst-1.2.3-1.el7.x86_64 60/114
Installing : libXxf86misc-1.0.3-7.1.el7.x86_64 61/114
Installing : libdmx-1.1.3-3.el7.x86_64 62/114
Installing : libXxf86dga-1.1.4-2.1.el7.x86_64 63/114
Installing : libXv-1.0.11-1.el7.x86_64 64/114
Installing : libXinerama-1.1.3-2.1.el7.x86_64 65/114
Installing : libXxf86vm-1.1.4-1.el7.x86_64 66/114
Installing : xorg-x11-utils-7.5-23.el7.x86_64 67/114
Installing : libXt-1.1.5-3.el7.x86_64 68/114
Installing : libXmu-1.1.2-2.el7.x86_64 69/114
Installing : 1:xorg-x11-xauth-1.0.9-1.el7.x86_64 70/114
Installing : kmod-libs-20-23.0.1.el7.x86_64 71/114
Installing : libutempter-1.1.6-4.el7.x86_64 72/114
Installing : unzip-6.0-19.el7.x86_64 73/114
Installing : libedit-3.0-12.20121213cvs.el7.x86_64 74/114
Installing : libpath_utils-0.2.1-32.el7.x86_64 75/114
Installing : libini_config-1.3.1-32.el7.x86_64 76/114
Installing : e2fsprogs-libs-1.42.9-13.el7.x86_64 77/114
Installing : libsmartcols-2.23.2-59.el7.x86_64 78/114
Installing : compat-libcap1-1.10-7.el7.x86_64 79/114
Installing : 1:pkgconfig-0.27.1-4.el7.x86_64 80/114
Installing : acl-2.2.51-14.el7.x86_64 81/114
Installing : util-linux-2.23.2-59.el7.x86_64 82/114
Installing : procps-ng-3.3.10-23.el7.x86_64 83/114
Installing : 7:device-mapper-1.02.149-10.el7_6.2.x86_64 84/114
Installing : kpartx-0.4.9-123.el7.x86_64 85/114
Installing : 7:device-mapper-libs-1.02.149-10.el7_6.2.x86_64 86/114
Installing : cryptsetup-libs-2.0.3-3.el7.x86_64 87/114
Installing : dracut-033-554.0.3.el7.x86_64 88/114
Installing : kmod-20-23.0.1.el7.x86_64 89/114
Installing : elfutils-libs-0.172-2.el7.x86_64 90/114
Installing : systemd-libs-219-62.0.1.el7.x86_64 91/114
Installing : 1:dbus-libs-1.10.24-12.0.1.el7.x86_64 92/114
Installing : systemd-219-62.0.1.el7.x86_64 93/114
Failed to get D-Bus connection: Operation not permitted
Installing : elfutils-default-yama-scope-0.172-2.el7.noarch 94/114
Installing : 1:dbus-1.10.24-12.0.1.el7.x86_64 95/114
Installing : crontabs-1.11-6.20121102git.el7.noarch 96/114
Installing : cronie-anacron-1.4.11-19.el7.x86_64 97/114
Installing : cronie-1.4.11-19.el7.x86_64 98/114
Installing : systemd-sysv-219-62.0.1.el7.x86_64 99/114
Installing : rpcbind-0.2.0-47.el7.x86_64 100/114
Installing : 1:quota-4.01-17.el7.x86_64 101/114
Installing : sysstat-10.1.5-17.el7.x86_64 102/114
Installing : 1:smartmontools-6.5-1.el7.x86_64 103/114
Installing : iputils-20160308-10.el7.x86_64 104/114
Installing : gssproxy-0.7.0-21.el7.x86_64 105/114
Installing : 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64 106/114
Installing : ksh-20120801-139.0.1.el7.x86_64 107/114
failed to link /usr/share/man/man1/ksh.1.gz -> /etc/alternatives/ksh-man: No such file or directory
Installing : net-tools-2.0-0.24.20131004git.el7.x86_64 108/114
Installing : openssh-7.4p1-16.el7.x86_64 109/114
Installing : openssh-clients-7.4p1-16.el7.x86_64 110/114
Installing : sysvinit-tools-2.88-14.dsf.el7.x86_64 111/114
Installing : initscripts-9.49.46-1.0.1.el7.x86_64 112/114
Installing : oracle-database-preinstall-18c-1.0-1.el7.x86_64 113/114
Installing : 1:openssl-1.0.2k-16.0.1.el7.x86_64 114/114
Verifying : fipscheck-lib-1.4.1-6.el7.x86_64 1/114
Verifying : libXext-1.3.3-3.el7.x86_64 2/114
Verifying : libXi-1.7.9-1.el7.x86_64 3/114
Verifying : libXrender-0.9.10-1.el7.x86_64 4/114
Verifying : tcp_wrappers-7.6-77.el7.x86_64 5/114
Verifying : binutils-2.27-34.base.0.1.el7.x86_64 6/114
Verifying : sysvinit-tools-2.88-14.dsf.el7.x86_64 7/114
Verifying : acl-2.2.51-14.el7.x86_64 8/114
Verifying : cryptsetup-libs-2.0.3-3.el7.x86_64 9/114
Verifying : GeoIP-1.5.0-13.el7.x86_64 10/114
Verifying : iptables-1.4.21-28.el7.x86_64 11/114
Verifying : 1:pkgconfig-0.27.1-4.el7.x86_64 12/114
Verifying : crontabs-1.11-6.20121102git.el7.noarch 13/114
Verifying : fipscheck-1.4.1-6.el7.x86_64 14/114
Verifying : compat-libcap1-1.10-7.el7.x86_64 15/114
Verifying : 1:make-3.82-23.el7.x86_64 16/114
Verifying : libsmartcols-2.23.2-59.el7.x86_64 17/114
Verifying : e2fsprogs-libs-1.42.9-13.el7.x86_64 18/114
Verifying : libpath_utils-0.2.1-32.el7.x86_64 19/114
Verifying : libnfnetlink-1.0.1-4.el7.x86_64 20/114
Verifying : openssh-7.4p1-16.el7.x86_64 21/114
Verifying : cracklib-dicts-2.9.0-11.el7.x86_64 22/114
Verifying : libXau-1.0.8-2.1.el7.x86_64 23/114
Verifying : 1:dbus-libs-1.10.24-12.0.1.el7.x86_64 24/114
Verifying : 1:smartmontools-6.5-1.el7.x86_64 25/114
Verifying : libedit-3.0-12.20121213cvs.el7.x86_64 26/114
Verifying : cronie-anacron-1.4.11-19.el7.x86_64 27/114
Verifying : unzip-6.0-19.el7.x86_64 28/114
Verifying : libutempter-1.1.6-4.el7.x86_64 29/114
Verifying : libXxf86misc-1.0.3-7.1.el7.x86_64 30/114
Verifying : libdmx-1.1.3-3.el7.x86_64 31/114
Verifying : libICE-1.0.9-9.el7.x86_64 32/114
Verifying : libXxf86dga-1.1.4-2.1.el7.x86_64 33/114
Verifying : kmod-libs-20-23.0.1.el7.x86_64 34/114
Verifying : libX11-common-1.6.5-2.el7.noarch 35/114
Verifying : iproute-4.11.0-14.el7.x86_64 36/114
Verifying : 1:openssl-1.0.2k-16.0.1.el7.x86_64 37/114
Verifying : systemd-sysv-219-62.0.1.el7.x86_64 38/114
Verifying : xorg-x11-utils-7.5-23.el7.x86_64 39/114
Verifying : libXtst-1.2.3-1.el7.x86_64 40/114
Verifying : 1:nfs-utils-1.3.0-0.61.0.1.el7.x86_64 41/114
Verifying : iputils-20160308-10.el7.x86_64 42/114
Verifying : psmisc-22.20-15.el7.x86_64 43/114
Verifying : lm_sensors-libs-3.4.0-6.20160601gitf9185e5.el7.x86_64 44/114
Verifying : rpcbind-0.2.0-47.el7.x86_64 45/114
Verifying : libXmu-1.1.2-2.el7.x86_64 46/114
Verifying : libref_array-0.1.5-32.el7.x86_64 47/114
Verifying : util-linux-2.23.2-59.el7.x86_64 48/114
Verifying : 1:xorg-x11-xauth-1.0.9-1.el7.x86_64 49/114
Verifying : libnfsidmap-0.25-19.el7.x86_64 50/114
Verifying : libuser-0.60-9.el7.x86_64 51/114
Verifying : oracle-database-preinstall-18c-1.0-1.el7.x86_64 52/114
Verifying : keyutils-1.5.8-3.el7.x86_64 53/114
Verifying : 1:hardlink-1.0-19.el7.x86_64 54/114
Verifying : cracklib-2.9.0-11.el7.x86_64 55/114
Verifying : initscripts-9.49.46-1.0.1.el7.x86_64 56/114
Verifying : libmnl-1.0.3-7.el7.x86_64 57/114
Verifying : gzip-1.5-10.el7.x86_64 58/114
Verifying : libXv-1.0.11-1.el7.x86_64 59/114
Verifying : tcp_wrappers-libs-7.6-77.el7.x86_64 60/114
Verifying : glibc-devel-2.17-260.0.9.el7.x86_64 61/114
Verifying : elfutils-libs-0.172-2.el7.x86_64 62/114
Verifying : sysstat-10.1.5-17.el7.x86_64 63/114
Verifying : bc-1.06.95-13.el7.x86_64 64/114
Verifying : qrencode-libs-3.4.1-3.el7.x86_64 65/114
Verifying : 7:device-mapper-1.02.149-10.el7_6.2.x86_64 66/114
Verifying : kernel-headers-3.10.0-957.el7.x86_64 67/114
Verifying : 32:bind-utils-9.9.4-72.el7.x86_64 68/114
Verifying : libaio-0.3.109-13.el7.x86_64 69/114
Verifying : libstdc++-devel-4.8.5-36.0.1.el7.x86_64 70/114
Verifying : elfutils-default-yama-scope-0.172-2.el7.noarch 71/114
Verifying : libevent-2.0.21-4.el7.x86_64 72/114
Verifying : gssproxy-0.7.0-21.el7.x86_64 73/114
Verifying : libXrandr-1.5.1-2.el7.x86_64 74/114
Verifying : libaio-devel-0.3.109-13.el7.x86_64 75/114
Verifying : 2:tar-1.26-35.el7.x86_64 76/114
Verifying : 1:quota-4.01-17.el7.x86_64 77/114
Verifying : hostname-3.13-3.el7.x86_64 78/114
Verifying : 32:bind-license-9.9.4-72.el7.noarch 79/114
Verifying : ksh-20120801-139.0.1.el7.x86_64 80/114
Verifying : pam-1.1.8-22.el7.x86_64 81/114
Verifying : libSM-1.2.2-2.el7.x86_64 82/114
Verifying : openssh-clients-7.4p1-16.el7.x86_64 83/114
Verifying : systemd-219-62.0.1.el7.x86_64 84/114
Verifying : mailx-12.5-19.el7.x86_64 85/114
Verifying : lz4-1.7.5-2.0.1.el7.x86_64 86/114
Verifying : 2:ethtool-4.8-9.el7.x86_64 87/114
Verifying : libtirpc-0.2.4-0.15.el7.x86_64 88/114
Verifying : kpartx-0.4.9-123.el7.x86_64 89/114
Verifying : libXinerama-1.1.3-2.1.el7.x86_64 90/114
Verifying : libXt-1.1.5-3.el7.x86_64 91/114
Verifying : glibc-headers-2.17-260.0.9.el7.x86_64 92/114
Verifying : libXxf86vm-1.1.4-1.el7.x86_64 93/114
Verifying : dracut-033-554.0.3.el7.x86_64 94/114
Verifying : libnetfilter_conntrack-1.0.6-1.el7_3.x86_64 95/114
Verifying : kmod-20-23.0.1.el7.x86_64 96/114
Verifying : libbasicobjects-0.1.1-32.el7.x86_64 97/114
Verifying : 32:bind-libs-9.9.4-72.el7.x86_64 98/114
Verifying : compat-libstdc++-33-3.2.3-72.el7.x86_64 99/114
Verifying : procps-ng-3.3.10-23.el7.x86_64 100/114
Verifying : libxcb-1.13-1.el7.x86_64 101/114
Verifying : libini_config-1.3.1-32.el7.x86_64 102/114
Verifying : json-c-0.11-4.el7_0.x86_64 103/114
Verifying : 1:quota-nls-4.01-17.el7.noarch 104/114
Verifying : net-tools-2.0-0.24.20131004git.el7.x86_64 105/114
Verifying : xz-5.2.2-1.el7.x86_64 106/114
Verifying : libX11-1.6.5-2.el7.x86_64 107/114
Verifying : libverto-libevent-0.2.5-4.el7.x86_64 108/114
Verifying : libcollection-0.7.0-32.el7.x86_64 109/114
Verifying : 7:device-mapper-libs-1.02.149-10.el7_6.2.x86_64 110/114
Verifying : cronie-1.4.11-19.el7.x86_64 111/114
Verifying : systemd-libs-219-62.0.1.el7.x86_64 112/114
Verifying : libpwquality-1.2.3-5.el7.x86_64 113/114
Verifying : 1:dbus-1.10.24-12.0.1.el7.x86_64 114/114
Installed:
openssl.x86_64 1:1.0.2k-16.0.1.el7
oracle-database-preinstall-18c.x86_64 0:1.0-1.el7
Dependency Installed:
GeoIP.x86_64 0:1.5.0-13.el7
acl.x86_64 0:2.2.51-14.el7
bc.x86_64 0:1.06.95-13.el7
bind-libs.x86_64 32:9.9.4-72.el7
bind-license.noarch 32:9.9.4-72.el7
bind-utils.x86_64 32:9.9.4-72.el7
binutils.x86_64 0:2.27-34.base.0.1.el7
compat-libcap1.x86_64 0:1.10-7.el7
compat-libstdc++-33.x86_64 0:3.2.3-72.el7
cracklib.x86_64 0:2.9.0-11.el7
cracklib-dicts.x86_64 0:2.9.0-11.el7
cronie.x86_64 0:1.4.11-19.el7
cronie-anacron.x86_64 0:1.4.11-19.el7
crontabs.noarch 0:1.11-6.20121102git.el7
cryptsetup-libs.x86_64 0:2.0.3-3.el7
dbus.x86_64 1:1.10.24-12.0.1.el7
dbus-libs.x86_64 1:1.10.24-12.0.1.el7
device-mapper.x86_64 7:1.02.149-10.el7_6.2
device-mapper-libs.x86_64 7:1.02.149-10.el7_6.2
dracut.x86_64 0:033-554.0.3.el7
e2fsprogs-libs.x86_64 0:1.42.9-13.el7
elfutils-default-yama-scope.noarch 0:0.172-2.el7
elfutils-libs.x86_64 0:0.172-2.el7
ethtool.x86_64 2:4.8-9.el7
fipscheck.x86_64 0:1.4.1-6.el7
fipscheck-lib.x86_64 0:1.4.1-6.el7
glibc-devel.x86_64 0:2.17-260.0.9.el7
glibc-headers.x86_64 0:2.17-260.0.9.el7
gssproxy.x86_64 0:0.7.0-21.el7
gzip.x86_64 0:1.5-10.el7
hardlink.x86_64 1:1.0-19.el7
hostname.x86_64 0:3.13-3.el7
initscripts.x86_64 0:9.49.46-1.0.1.el7
iproute.x86_64 0:4.11.0-14.el7
iptables.x86_64 0:1.4.21-28.el7
iputils.x86_64 0:20160308-10.el7
json-c.x86_64 0:0.11-4.el7_0
kernel-headers.x86_64 0:3.10.0-957.el7
keyutils.x86_64 0:1.5.8-3.el7
kmod.x86_64 0:20-23.0.1.el7
kmod-libs.x86_64 0:20-23.0.1.el7
kpartx.x86_64 0:0.4.9-123.el7
ksh.x86_64 0:20120801-139.0.1.el7
libICE.x86_64 0:1.0.9-9.el7
libSM.x86_64 0:1.2.2-2.el7
libX11.x86_64 0:1.6.5-2.el7
libX11-common.noarch 0:1.6.5-2.el7
libXau.x86_64 0:1.0.8-2.1.el7
libXext.x86_64 0:1.3.3-3.el7
libXi.x86_64 0:1.7.9-1.el7
libXinerama.x86_64 0:1.1.3-2.1.el7
libXmu.x86_64 0:1.1.2-2.el7
libXrandr.x86_64 0:1.5.1-2.el7
libXrender.x86_64 0:0.9.10-1.el7
libXt.x86_64 0:1.1.5-3.el7
libXtst.x86_64 0:1.2.3-1.el7
libXv.x86_64 0:1.0.11-1.el7
libXxf86dga.x86_64 0:1.1.4-2.1.el7
libXxf86misc.x86_64 0:1.0.3-7.1.el7
libXxf86vm.x86_64 0:1.1.4-1.el7
libaio.x86_64 0:0.3.109-13.el7
libaio-devel.x86_64 0:0.3.109-13.el7
libbasicobjects.x86_64 0:0.1.1-32.el7
libcollection.x86_64 0:0.7.0-32.el7
libdmx.x86_64 0:1.1.3-3.el7
libedit.x86_64 0:3.0-12.20121213cvs.el7
libevent.x86_64 0:2.0.21-4.el7
libini_config.x86_64 0:1.3.1-32.el7
libmnl.x86_64 0:1.0.3-7.el7
libnetfilter_conntrack.x86_64 0:1.0.6-1.el7_3
libnfnetlink.x86_64 0:1.0.1-4.el7
libnfsidmap.x86_64 0:0.25-19.el7
libpath_utils.x86_64 0:0.2.1-32.el7
libpwquality.x86_64 0:1.2.3-5.el7
libref_array.x86_64 0:0.1.5-32.el7
libsmartcols.x86_64 0:2.23.2-59.el7
libstdc++-devel.x86_64 0:4.8.5-36.0.1.el7
libtirpc.x86_64 0:0.2.4-0.15.el7
libuser.x86_64 0:0.60-9.el7
libutempter.x86_64 0:1.1.6-4.el7
libverto-libevent.x86_64 0:0.2.5-4.el7
libxcb.x86_64 0:1.13-1.el7
lm_sensors-libs.x86_64 0:3.4.0-6.20160601gitf9185e5.el7
lz4.x86_64 0:1.7.5-2.0.1.el7
mailx.x86_64 0:12.5-19.el7
make.x86_64 1:3.82-23.el7
net-tools.x86_64 0:2.0-0.24.20131004git.el7
nfs-utils.x86_64 1:1.3.0-0.61.0.1.el7
openssh.x86_64 0:7.4p1-16.el7
openssh-clients.x86_64 0:7.4p1-16.el7
pam.x86_64 0:1.1.8-22.el7
pkgconfig.x86_64 1:0.27.1-4.el7
procps-ng.x86_64 0:3.3.10-23.el7
psmisc.x86_64 0:22.20-15.el7
qrencode-libs.x86_64 0:3.4.1-3.el7
quota.x86_64 1:4.01-17.el7
quota-nls.noarch 1:4.01-17.el7
rpcbind.x86_64 0:0.2.0-47.el7
smartmontools.x86_64 1:6.5-1.el7
sysstat.x86_64 0:10.1.5-17.el7
systemd.x86_64 0:219-62.0.1.el7
systemd-libs.x86_64 0:219-62.0.1.el7
systemd-sysv.x86_64 0:219-62.0.1.el7
sysvinit-tools.x86_64 0:2.88-14.dsf.el7
tar.x86_64 2:1.26-35.el7
tcp_wrappers.x86_64 0:7.6-77.el7
tcp_wrappers-libs.x86_64 0:7.6-77.el7
unzip.x86_64 0:6.0-19.el7
util-linux.x86_64 0:2.23.2-59.el7
xorg-x11-utils.x86_64 0:7.5-23.el7
xorg-x11-xauth.x86_64 1:1.0.9-1.el7
xz.x86_64 0:5.2.2-1.el7
Complete!
Removing intermediate container da989fb07798
---> 226c7cfc0565
Step 8/24 : FROM base AS builder
---> 226c7cfc0565
Step 9/24 : ARG DB_EDITION
---> Running in 359967bfff59
Removing intermediate container 359967bfff59
---> 0304e8827bad
Step 10/24 : RUN yum -y install unzip
---> Running in a93a94eec918
Loaded plugins: ovl
Package unzip-6.0-19.el7.x86_64 already installed and latest version
Nothing to do
Removing intermediate container a93a94eec918
---> 6fe51f16a9f0
Step 11/24 : COPY --chown=oracle:dba $INSTALL_FILE_1 $INSTALL_RSP $INSTALL_DB_BINARIES_FILE $INSTALL_DIR/
---> a4e0b4c22e6f
Step 12/24 : USER oracle
---> Running in 53affd1824fe
Removing intermediate container 53affd1824fe
---> 60eda9a5db55
Step 13/24 : RUN chmod ug+x $INSTALL_DIR/*.sh && sync && $INSTALL_DIR/$INSTALL_DB_BINARIES_FILE $DB_EDITION
---> Running in f5183ff7818b
Archive: LINUX.X64_180000_db_home.zip
creating: drdaas/
creating: drdaas/admin/
inflating: drdaas/admin/drdasqtt_translator_setup.sql
inflating: drdaas/admin/drdapkg_db2.sql
inflating: drdaas/admin/drdaas.ora
...
... excluding lots and lots of lines to improve readability
...
javavm/admin/lfclasses.bin -> ../../javavm/jdk/jdk8/admin/lfclasses.bin
javavm/lib/security/cacerts -> ../../../javavm/jdk/jdk8/lib/security/cacerts
javavm/lib/sunjce_provider.jar -> ../../javavm/jdk/jdk8/lib/sunjce_provider.jar
javavm/lib/security/java.security -> ../../../javavm/jdk/jdk8/lib/security/java.security
javavm/lib/security/local_policy.jar -> ../../../javavm/jdk/jdk8/lib/security/local_policy.jar
javavm/lib/security/US_export_policy.jar -> ../../../javavm/jdk/jdk8/lib/security/US_export_policy.jar
Launching Oracle Database Setup Wizard...
[WARNING] [INS-32055] The Central Inventory is located in the Oracle base.
ACTION: Oracle recommends placing this Central Inventory in a location outside the Oracle base directory.
[WARNING] [INS-13013] Target environment does not meet some mandatory requirements.
either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
The response file for this session can be found at:
You can find the log of this install session at:
As a root user, execute the following script(s):
1. /opt/oracle/oraInventory/orainstRoot.sh
2. /opt/oracle/product/18c/dbhome_1/root.sh
Execute /opt/oracle/oraInventory/orainstRoot.sh on the following nodes:
[f5183ff7818b]
Execute /opt/oracle/product/18c/dbhome_1/root.sh on the following nodes:
[f5183ff7818b]
Successfully Setup Software with warning(s).
Moved the install session logs to:
Removing intermediate container f5183ff7818b
---> 632b5f59653c
Step 14/24 : FROM base
---> 226c7cfc0565
Step 15/24 : USER oracle
---> Running in 49e9030a8ae5
Removing intermediate container 49e9030a8ae5
---> fabc6b3821a0
Step 16/24 : COPY --chown=oracle:dba --from=builder $ORACLE_BASE $ORACLE_BASE
---> f26aec819240
Step 17/24 : USER root
---> Running in 567ef18e4cf9
Removing intermediate container 567ef18e4cf9
---> d7ae3c2100e9
Step 18/24 : RUN $ORACLE_BASE/oraInventory/orainstRoot.sh && $ORACLE_HOME/root.sh
---> Running in d2d816792a76
Changing permissions of /opt/oracle/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /opt/oracle/oraInventory to dba.
The execution of the script is complete.
Removing intermediate container d2d816792a76
---> 1f36a8b1eb8b
Step 19/24 : USER oracle
---> Running in 1c6963247db5
Removing intermediate container 1c6963247db5
---> 7a4ba4a5cb0c
Step 20/24 : WORKDIR /home/oracle
Removing intermediate container f90269ac04e2
---> 44976d4d5f0e
Step 21/24 : VOLUME ["$ORACLE_BASE/oradata"]
---> Running in 90fbac9f4cd7
Removing intermediate container 90fbac9f4cd7
---> 00a85d2ea0b2
Step 22/24 : EXPOSE 1521 5500
---> Running in fe5ccbd423b8
Removing intermediate container fe5ccbd423b8
---> b2cf32c4f137
Step 23/24 : HEALTHCHECK --interval=1m --start-period=5m CMD "$ORACLE_BASE/$CHECK_DB_FILE" >/dev/null || exit 1
---> Running in 005ad3359344
Removing intermediate container 005ad3359344
---> e7a0672a107e
Step 24/24 : CMD exec $ORACLE_BASE/$RUN_FILE
---> Running in 6c149ef82676
Removing intermediate container 6c149ef82676
---> d0354f6556d6
Successfully built d0354f6556d6
Successfully tagged oracle/database:18.3.0-ee
Oracle Database Docker Image for 'ee' version 18.3.0 is ready to be extended:
--> oracle/database:18.3.0-ee
Build completed in 1719 seconds.
[vagrant@localhost dockerfiles]$ rm 18.3.0/LINUX.X64_180000_db_home.zip
[vagrant@localhost dockerfiles]$ docker run -d -it --name d183-tmp -v /ORCL/oradb:/opt/oracle/oradata --privileged oracle/database:18.3.0-ee
98ec3387ebb9859e7599410ba8c3d22400ddda189f4bf9cac0a7d4b11038fbf4
[vagrant@localhost dockerfiles]$ docker logs d183-tmp -f
ORACLE PASSWORD FOR SYS, SYSTEM AND PDBADMIN: 39Oh6qToui0=1
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 20:04:06
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/98ec3387ebb9/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 20:04:06
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/98ec3387ebb9/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
Prepare for db operation
8% complete
Copying database files
31% complete
Creating and starting Oracle instance
32% complete
36% complete
40% complete
43% complete
46% complete
Completing Database Creation
51% complete
54% complete
Creating Pluggable Databases
58% complete
77% complete
Executing Post Configuration Actions
100% complete
Database creation complete. For details check the logfiles at:
/opt/oracle/cfgtoollogs/dbca/ORCLCDB.
Database Information:
Global Database Name:ORCLCDB
System Identifier(SID):ORCLCDB
Look at the log file "/opt/oracle/cfgtoollogs/dbca/ORCLCDB/ORCLCDB.log" for further details.
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 20:26:57 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL>
System altered.
SQL>
System altered.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):CREATE SMALLFILE TABLESPACE "USERS" LOGGING DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCLPDB1/users01.dbf' SIZE 5M REUSE AUTOEXTEND ON NEXT 1280K MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO
ORCLPDB1(3):Completed: CREATE SMALLFILE TABLESPACE "USERS" LOGGING DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCLPDB1/users01.dbf' SIZE 5M REUSE AUTOEXTEND ON NEXT 1280K MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO
ORCLPDB1(3):ALTER DATABASE DEFAULT TABLESPACE "USERS"
ORCLPDB1(3):Completed: ALTER DATABASE DEFAULT TABLESPACE "USERS"
ALTER SYSTEM SET control_files='/opt/oracle/oradata/ORCLCDB/control01.ctl' SCOPE=SPFILE;
ALTER SYSTEM SET local_listener='' SCOPE=BOTH;
ALTER PLUGGABLE DATABASE ORCLPDB1 SAVE STATE
Completed: ALTER PLUGGABLE DATABASE ORCLPDB1 SAVE STATE
[vagrant@localhost dockerfiles]$ # Ctrl-c
[vagrant@localhost ~]$ docker stop d183-tmp
d183-tmp
[vagrant@localhost ~]$ docker commit -m "created from 18.3.0-ee export" d183-tmp db:18.3-tmp
sha256:f94830dbe3c8e67d1949bbf905f2c1413ed952b95ea4145184254b2581fc88f2
[vagrant@localhost ~]$ mkdir ~/db-18.3 && cd ~/db-18.3
[vagrant@localhost db-18.3]$ cp ~/docker-images/OracleDatabase/SingleInstance/dockerfiles/18.3.0/startDB.sh .
[vagrant@localhost db-18.3]$ echo "
> FROM db:18.3-tmp as base
> COPY tagfile \${ORACLE_BASE}/
> COPY startDB.sh \${ORACLE_BASE}/" > Dockerfile
[vagrant@localhost db-18.3]$ echo "db:18.3" > tagfile
[vagrant@localhost db-18.3]$ LISTENER_LINE=$(grep -n "# Start Listener" ~/docker-images/OracleDatabase/SingleInstance/dockerfiles/18.3.0/startDB.sh | cut -d: -f1)
[vagrant@localhost db-18.3]$ head -$(expr ${LISTENER_LINE} - 1) ~/docker-images/OracleDatabase/SingleInstance/dockerfiles/18.3.0/startDB.sh > startDB.sh
[vagrant@localhost db-18.3]$
[vagrant@localhost db-18.3]$ echo "
> touch \$ORACLE_BASE/oradata/tagfile
> cmp --silent \$ORACLE_BASE/oradata/tagfile \$ORACLE_BASE/tagfile || {
> sqlplus / as sysdba << EOF
> STARTUP;
> ALTER PLUGGABLE DATABASE ALL OPEN;
> exit;
> EOF
> echo Running datapatch
> \$ORACLE_HOME/OPatch/datapatch -verbose
> \$ORACLE_HOME/OPatch/datapatch -verbose # remove for non-18.3 #
> cp \$ORACLE_BASE/tagfile \$ORACLE_BASE/oradata/tagfile
> sqlplus / as sysdba << EOF
> SHUTDOWN IMMEDIATE;
> exit;
> EOF
> }
> " >> startDB.sh
[vagrant@localhost db-18.3]$
[vagrant@localhost db-18.3]$ tail -n+${LISTENER_LINE} ~/docker-images/OracleDatabase/SingleInstance/dockerfiles/18.3.0/startDB.sh >> startDB.sh
[vagrant@localhost db-18.3]$ chmod u+x startDB.sh
[vagrant@localhost db-18.3]$ docker build -t db:18.3 .
Sending build context to Docker daemon 5.12kB
Step 1/3 : FROM db:18.3-tmp as base
---> f94830dbe3c8
Step 2/3 : COPY tagfile ${ORACLE_BASE}/
---> e6419ca73900
Step 3/3 : COPY startDB.sh ${ORACLE_BASE}/
---> eacc20cbcafd
Successfully built eacc20cbcafd
Successfully tagged db:18.3
[vagrant@localhost db-18.3]$ docker rm d183-tmp
d183-tmp
[vagrant@localhost db-18.3]$ docker run -d -it --name d183 -v /ORCL/oradb:/opt/oracle/oradata --privileged db:18.3
c067f8b7c621b55ace5f95c696ab3922d49493d2394cb9d56328059b0dbf0c1d
[vagrant@localhost db-18.3]$ docker logs d183 -f
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:11:52 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:12:12 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_273_2018_11_12_21_12_12/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Current state of release update SQL patches:
Binary registry:
18.3.0.0.0 Release_Update 1806280943: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
No interim patches need to be rolled back
No release update patches need to be installed
No interim patches need to be applied
SQL Patching tool complete on Mon Nov 12 21:12:51 2018
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:12:52 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_794_2018_11_12_21_12_52/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Current state of release update SQL patches:
Binary registry:
18.3.0.0.0 Release_Update 1806280943: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
No interim patches need to be rolled back
No release update patches need to be installed
No interim patches need to be applied
SQL Patching tool complete on Mon Nov 12 21:13:21 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:13:21 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:14:06
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/c067f8b7c621/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:14:07
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/c067f8b7c621/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:14:07 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization online undo segments: err:0 start: 6527183 end: 6527324 diff: 141 ms (0.1 seconds)
ORCLPDB1(3):Undo initialization finished serial:0 start:6527177 end:6527328 diff:151 ms (0.2 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=48, OS id=1565
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1378.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090523
Patch Description: Database Release Update : 18.3.0.0.180717 (28090523)
Patch Apply Time: 2018-07-18T17:39:24Z
Bugs Fixed: 9062315,13554903,21547051,21766220,21806121,23003564,23310101,
24489904,24689376,24737581,24925863,25035594,25035599,25287072,25348956,
25634405,25726981,25743479,25824236,25929650,25943740,26226953,26336101,
26423085,26427905,26450454,26476244,26598422,26615291,26646549,26654411,
26731697,26785169,26792891,26818960,26822620,26843558,26843664,26846077,
26894737,26898279,26928317,26933599,26956033,26961415,26966120,26986173,
26992964,27005278,27026401,27028251,27030974,27036408,27038986,27041253,
27044575,27047831,27053044,27058530,27060167,27060859,27061736,27066451,
27066519,27073066,27086821,27090765,27101527,27101652,27110878,27112686,
27119621,27126666,27128580,27135647,27143756,27143882,27147979,27153641,
27155549,27156355,27163928,27169796,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210872,27214085,27215007,27216224,
27221900,27222121,27222626,27224987,27226913,27232983,27233563,27236052,
27236110,27240246,27240570,27241221,27241247,27244337,27244785,27249215,
27250547,27254851,27258578,27259386,27259983,27262650,27262945,27263276,
27263996,27270197,27274456,27274536,27275136,27275776,27282707,27283029,
27283960,27284499,27285244,27288230,27292213,27294480,27301308,27301568,
27302594,27302681,27302695,27302711,27302730,27302777,27302800,27302960,
27304410,27304936,27305318,27307868,27310092,27313687,27314206,27314390,
27318869,27321179,27321834,27326204,27329812,27330158,27330161,27333658,
27333664,27333693,27334316,27334648,27335682,27338912,27338946,27339115,
27339396,27339483,27339495,27341036,27345190,27345231,27345450,27345498,
27346329,27346644,27346709,27346949,27347126,27348081,27348707,27349393,
27352600,27354783,27356373,27357773,27358241,27359178,27359368,27360126,
27364891,27364916,27364947,27365139,27365702,27365993,27367194,27368850,
27372756,27375260,27375542,27376871,27378103,27379233,27381383,27381656,
27384222,27389352,27392187,27395404,27395416,27395794,27396357,27396365,
27396377,27396624,27396666,27396672,27396813,27398080,27398660,27401637,
27405242,27405696,27410300,27410595,27412805,27417186,27420715,27421101,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27442041,27444727,27445330,27445462,27447452,27447687,27448162,
27450355,27450400,27450783,27451049,27451182,27451187,27451531,27452760,
27453225,27457666,27457891,27458164,27459909,27460675,27467543,27469329,
27471876,27472969,27473800,27479358,27483974,27484556,27486253,27487795,
27489719,27496224,27496308,27497950,27498477,27501327,27501413,27501465,
27502420,27504190,27505603,27506774,27508985,27511196,27512439,27517818,
27518227,27518310,27520070,27520900,27522245,27523368,27523800,27525909,
27532375,27533819,27534509,27537472,27544030,27545630,27547732,27550341,
27551855,27558557,27558559,27558861,27560702,27563629,27563767,27570318,
27577758,27579353,27580996,27585755,27585800,27586810,27586895,27587672,
27591842,27592466,27593389,27595973,27599689,27602091,27602488,27603841,
27604293,27607805,27608669,27610269,27613080,27613247,27615608,27616657,
27617522,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27663370,27664702,27679488,27679664,27679806,27679961,27680162,
27680509,27682151,27688099,27688692,27690578,27691809,27692215,27693713,
27697092,27701795,27705761,27707544,27709046,27718914,27719187,27723002,
27726269,27726780,27732323,27739006,27740844,27744211,27745220,27747869,
27748954,27751006,27753336,27757567,27772815,27773602,27774320,27774539,
27779886,27780562,27782339,27783289,27786772,27791223,27797290,27803665,
27807441,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27840386,27847259,27851757,27861909,27869339,27873643,27882176,
27892488,27924147,27926113,27930478,27934468,27941896,27945870,27950708,
27952762,27961746,27964051,27970265,27971575,27984028,27989849,27993289,
27994333,27997875,27999597,28021205,28022847,28033429,28057267,28059199,
28072130,28098865,28106402,28132287,28169711,28174827,28184554,28188330,
28264172
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27923415
Patch Description: OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)
Patch Apply Time: 2018-07-18T17:41:38Z
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27952586
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
===========================================================
[vagrant@localhost db-18.3]$ # Ctrl-c
[vagrant@localhost db-18.3]$ docker exec -u 0 -it d183 bash
bash-4.2# chown -R oracle:oinstall /opt/oracle/oradata/patch
bash-4.2# echo "db:18.4" > /opt/oracle/tagfile
bash-4.2# sed -i.back -e '/# remove for non-18.3 #/d' /opt/oracle/startDB.sh
bash-4.2# exit
exit
[vagrant@localhost db-18.3]$ docker exec -it d183 bash
[oracle@c067f8b7c621 ~]$ cd $ORACLE_HOME
[oracle@c067f8b7c621 dbhome_1]$ rm -rf OPatch
0000_Linux-x86-64.zipdbhome_1]$ unzip -q /opt/oracle/oradata/patch/p6880880_18
[oracle@c067f8b7c621 dbhome_1]$
[oracle@c067f8b7c621 dbhome_1]$ export ORACLE_SID=ORCLCDB
[oracle@c067f8b7c621 dbhome_1]$ ORAENV_ASK=NO
[oracle@c067f8b7c621 dbhome_1]$ . oraenv
The Oracle base remains unchanged with value /opt/oracle
[oracle@c067f8b7c621 dbhome_1]$ sqlplus / as sysdba << EOF
> shut immediate;
> exit;
> EOF
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:16:22 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
[oracle@c067f8b7c621 dbhome_1]$ lsnrctl stop
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:16:58
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
The command completed successfully
[oracle@c067f8b7c621 dbhome_1]$
/oracle@c067f8b7c621 dbhome_1]$ cd /opt/oracle/oradata/patch/28689117/28655784
[oracle@c067f8b7c621 28655784]$ opatch apply -silent
Oracle Interim Patch Installer version 12.2.0.1.14
Copyright (c) 2018, Oracle Corporation. All rights reserved.
Oracle Home : /opt/oracle/product/18c/dbhome_1
Central Inventory : /opt/oracle/oraInventory
from : /opt/oracle/product/18c/dbhome_1/oraInst.loc
OPatch version : 12.2.0.1.14
OUI version : 12.2.0.4.0
Verifying environment and performing prerequisite checks...
OPatch continues with these patches: 28655784
Do you want to proceed? [y|n]
Y (auto-answered by -silent)
User Responded with: Y
All checks passed.
Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/opt/oracle/product/18c/dbhome_1')
Is the local system ready for patching? [y|n]
Y (auto-answered by -silent)
User Responded with: Y
Backing up files...
Applying interim patch '28655784' to OH '/opt/oracle/product/18c/dbhome_1'
ApplySession: Optional component(s) [ oracle.assistants.asm, 18.0.0.0.0 ] , [ oracle.ons.daemon, 18.0.0.0.0 ] , [ oracle.crs, 18.0.0.0.0 ] , [ oracle.net.cman, 18.0.0.0.0 ] , [ oracle.network.cman, 18.0.0.0.0 ] , [ oracle.assistants.usm, 18.0.0.0.0 ] , [ oracle.tfa, 18.0.0.0.0 ] , [ oracle.assistants.server.oui, 18.0.0.0.0 ] , [ oracle.has.crs, 18.0.0.0.0 ] not present in the Oracle Home or a higher version is found.
Patching component oracle.rdbms.rsf.ic, 18.0.0.0.0...
Patching component oracle.oracore.rsf, 18.0.0.0.0...
Patching component oracle.ctx.atg, 18.0.0.0.0...
Patching component oracle.rdbms.rman, 18.0.0.0.0...
Patching component oracle.rdbms.rsf, 18.0.0.0.0...
Patching component oracle.sdo.locator.jrf, 18.0.0.0.0...
Patching component oracle.rdbms.oci, 18.0.0.0.0...
Patching component oracle.xdk.rsf, 18.0.0.0.0...
Patching component oracle.server, 18.0.0.0.0...
Patching component oracle.ctx.rsf, 18.0.0.0.0...
Patching component oracle.rdbms.dbscripts, 18.0.0.0.0...
Patching component oracle.assistants.deconfig, 18.0.0.0.0...
Patching component oracle.dbjava.ucp, 18.0.0.0.0...
Patching component oracle.network.client, 18.0.0.0.0...
Patching component oracle.dbjava.ic, 18.0.0.0.0...
Patching component oracle.rdbms.crs, 18.0.0.0.0...
Patching component oracle.sqlplus, 18.0.0.0.0...
Patching component oracle.dbjava.jdbc, 18.0.0.0.0...
Patching component oracle.rdbms.install.plugins, 18.0.0.0.0...
Patching component oracle.ons, 18.0.0.0.0...
Patching component oracle.assistants.server, 18.0.0.0.0...
Patching component oracle.network.listener, 18.0.0.0.0...
Patching component oracle.install.deinstalltool, 18.0.0.0.0...
Patching component oracle.oraolap.dbscripts, 18.0.0.0.0...
Patching component oracle.sdo, 18.0.0.0.0...
Patching component oracle.assistants.acf, 18.0.0.0.0...
Patching component oracle.sqlplus.ic, 18.0.0.0.0...
Patching component oracle.rdbms, 18.0.0.0.0...
Patching component oracle.rdbms.util, 18.0.0.0.0...
Patching component oracle.xdk.parser.java, 18.0.0.0.0...
Patching component oracle.nlsrtl.rsf, 18.0.0.0.0...
Patching component oracle.network.rsf, 18.0.0.0.0...
Patching component oracle.nlsrtl.rsf.core, 18.0.0.0.0...
Patching component oracle.ctx, 18.0.0.0.0...
Patching component oracle.sdo.locator, 18.0.0.0.0...
Patching component oracle.xdk, 18.0.0.0.0...
Patching component oracle.rdbms.deconfig, 18.0.0.0.0...
Patching component oracle.precomp.rsf, 18.0.0.0.0...
Patching component oracle.javavm.client, 18.0.0.0.0...
Patching component oracle.ldap.owm, 18.0.0.0.0...
Patching component oracle.ldap.security.osdt, 18.0.0.0.0...
Patching component oracle.rdbms.install.common, 18.0.0.0.0...
Patching component oracle.precomp.lang, 18.0.0.0.0...
Patching component oracle.precomp.common, 18.0.0.0.0...
Patch 28655784 successfully applied.
Sub-set patch [28090523] has become inactive due to the application of a super-set patch [28655784].
Please refer to Doc ID 2161861.1 for any possible further required actions.
OPatch succeeded.
/oracle@c067f8b7c621 28655784]$ cd /opt/oracle/oradata/patch/28689117/28502229
[oracle@c067f8b7c621 28502229]$ opatch apply -silent
Oracle Interim Patch Installer version 12.2.0.1.14
Copyright (c) 2018, Oracle Corporation. All rights reserved.
Oracle Home : /opt/oracle/product/18c/dbhome_1
Central Inventory : /opt/oracle/oraInventory
from : /opt/oracle/product/18c/dbhome_1/oraInst.loc
OPatch version : 12.2.0.1.14
OUI version : 12.2.0.4.0
Verifying environment and performing prerequisite checks...
OPatch continues with these patches: 28502229
Do you want to proceed? [y|n]
Y (auto-answered by -silent)
User Responded with: Y
All checks passed.
Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/opt/oracle/product/18c/dbhome_1')
Is the local system ready for patching? [y|n]
Y (auto-answered by -silent)
User Responded with: Y
Backing up files...
Applying interim patch '28502229' to OH '/opt/oracle/product/18c/dbhome_1'
Patching component oracle.javavm.server, 18.0.0.0.0...
Patching component oracle.javavm.server.core, 18.0.0.0.0...
Patching component oracle.rdbms.dbscripts, 18.0.0.0.0...
Patching component oracle.rdbms, 18.0.0.0.0...
Patching component oracle.javavm.client, 18.0.0.0.0...
Patch 28502229 successfully applied.
Sub-set patch [27923415] has become inactive due to the application of a super-set patch [28502229].
Please refer to Doc ID 2161861.1 for any possible further required actions.
OPatch succeeded.
[oracle@c067f8b7c621 28502229]$ exit
exit
[vagrant@localhost db-18.3]$ docker commit -m "created by patching db:18.3" d183 db:18.4
sha256:a5e024105de2f2a70137fad8ca6405567ac675fa97e89b8adb78fcc7686029b5
[vagrant@localhost db-18.3]$ docker stop d183
d183
[vagrant@localhost db-18.3]$ docker rm d183
d183
[vagrant@localhost db-18.3]$ docker image rm db:18.3-tmp
Untagged: db:18.3-tmp
[vagrant@localhost db-18.3]$ docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
db 18.4 a5e024105de2 12 seconds ago 14.1GB
db 18.3 eacc20cbcafd 11 minutes ago 10.2GB
oracle/database 18.3.0-ee d0354f6556d6 About an hour ago 10.2GB
oraclelinux 7-slim b19454a5f17a 4 days ago 117MB
[vagrant@localhost db-18.3]$ docker run -d -it --name d184 -v /ORCL/oradb:/opt/oracle/oradata --privileged db:18.4
81ca8a2d0e03081b3ef15e35721fa4e11d2a9d519453e082f4e54c5b7d51f36e
[vagrant@localhost db-18.3]$ docker logs d184 -f
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:24:22 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:24:49 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_278_2018_11_12_21_24_49/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Not installed
PDB ORCLPDB1: Not installed
PDB PDB$SEED: Not installed
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_26_01.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_28_09.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_29_21.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_31_30.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_31_30.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:31:48 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:31:48 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:34:26
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:34:27
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:34:27 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1255 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=49, OS id=1428
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1239.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
[vagrant@localhost db-18.3]$ # Ctrl-c
[vagrant@localhost db-18.3]$ docker stop d184 && docker logs d184
d184
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:24:22 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:24:49 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_278_2018_11_12_21_24_49/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Not installed
PDB ORCLPDB1: Not installed
PDB PDB$SEED: Not installed
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_26_01.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_28_09.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_29_21.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_31_30.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_31_30.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:31:48 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:31:48 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:34:26
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:34:27
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:34:27 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1255 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=49, OS id=1428
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1239.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:36:19 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Shutting down instance (immediate) (OS id: 1554)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@81ca8a2d0e03 (Q003) with pid is 53, OS pid 1473
Stopping background process MMNL
Process termination requested for pid 1473 [source = rdbms], [info = 2] [request issued by pid: 1554, uid: 54321]
Stopping background process MMON
alter pluggable database all close immediate
ORCLPDB1(3):JIT: pid 1554 requesting stop
ORCLPDB1(3):Buffer Cache flush deferred for PDB 3
Pluggable database ORCLPDB1 closed
Completed: alter pluggable database all close immediate
PDB$SEED(2):JIT: pid 1554 requesting stop
PDB$SEED(2):Buffer Cache flush deferred for PDB 2
License high water mark = 8
Dispatchers and shared servers shutdown
Data Pump shutdown on PDB: 1 in progress
ALTER DATABASE CLOSE NORMAL
Stopping Emon pool
Stopping background process AQPC
[vagrant@localhost db-18.3]$ docker run -d -it --name d183 -v /ORCL/oradb:/opt/oracle/oradata --privileged db:18.3
d743217c48d4e83834fd465bc08055ece9a7e189e7a0c68766d1386d9d0fcde2
[vagrant@localhost db-18.3]$ docker logs d183 -f
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:36:51 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:37:18 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_280_2018_11_12_21_37_18/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.31.31.475599 PM
PDB ORCLPDB1: Rolled back successfully on 12-NOV-18 09.31.38.657315 PM
PDB PDB$SEED: Rolled back successfully on 12-NOV-18 09.31.35.104510 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.31.35.027700 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.31.41.703557 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.31.38.579110 PM
Current state of release update SQL patches:
Binary registry:
18.3.0.0.0 Release_Update 1806280943: Installed
PDB CDB$ROOT:
Applied 18.4.0.0.0 Release_Update 1809251743 successfully on 12-NOV-18 09.31.35.003183 PM
PDB ORCLPDB1:
Applied 18.4.0.0.0 Release_Update 1809251743 successfully on 12-NOV-18 09.31.41.685919 PM
PDB PDB$SEED:
Applied 18.4.0.0.0 Release_Update 1809251743 successfully on 12-NOV-18 09.31.38.557940 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Rollback from 18.4.0.0.0 Release_Update 1809251743 to 18.3.0.0.0 Release_Update 1806280943
The following interim patches will be applied:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 28502229 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_CDBROOT_2018Nov12_21_38_05.log (no errors)
Patch 28655784 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_rollback_ORCLCDB_CDBROOT_2018Nov12_21_40_47.log (no errors)
Patch 27923415 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_apply_ORCLCDB_CDBROOT_2018Nov12_21_41_46.log (no errors)
Patch 28502229 rollback (pdb PDB$SEED): WITH ERRORS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_PDBSEED_2018Nov12_21_41_47.log (errors)
Error at line 45: ORA-06550: line 0, column 0:
Error at line 46: PLS-00907: cannot load library unit DBMS_REGISTRY (referenced by DBMS_REGISTRY)
Error at line 47: ORA-06550: line 0, column 0:
Error at line 61: SP2-0556: Invalid file name.
Patch 28655784 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_rollback_ORCLCDB_PDBSEED_2018Nov12_21_42_08.log (no errors)
Patch 27923415 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_apply_ORCLCDB_PDBSEED_2018Nov12_21_42_26.log (no errors)
Patch 28502229 rollback (pdb ORCLPDB1): WITH ERRORS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_41_48.log (errors)
Error at line 104: ORA-06550: line 0, column 0:
Error at line 105: PLS-00907: cannot load library unit DBMS_REGISTRY (referenced by DBMS_REGISTRY)
Error at line 106: ORA-06550: line 0, column 0:
Error at line 120: SP2-0556: Invalid file name.
Patch 28655784 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_42_08.log (no errors)
Patch 27923415 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_42_26.log (no errors)
Please refer to MOS Note 1609718.1 and/or the invocation log
/opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_280_2018_11_12_21_37_18/sqlpatch_invocation.log
for information on how to resolve the above errors.
SQL Patching tool complete on Mon Nov 12 21:43:10 2018
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:43:11 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_1048_2018_11_12_21_43_11/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.42.59.629936 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.43.05.757258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.43.02.775700 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Not installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.42.56.761089 PM
PDB ORCLPDB1: Rolled back with errors on 12-NOV-18 09.43.02.955487 PM
PDB PDB$SEED: Rolled back with errors on 12-NOV-18 09.42.59.737259 PM
Current state of release update SQL patches:
Binary registry:
18.3.0.0.0 Release_Update 1806280943: Installed
PDB CDB$ROOT:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.42.59.617361 PM
PDB ORCLPDB1:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.05.737797 PM
PDB PDB$SEED:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.02.765138 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT
No interim patches need to be rolled back
No release update patches need to be installed
No interim patches need to be applied
For the following PDBs: PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
No release update patches need to be installed
No interim patches need to be applied
Installing patches...
Patch installation complete. Total patches installed: 2
Validating logfiles...done
Patch 28502229 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_PDBSEED_2018Nov12_21_43_45.log (no errors)
Patch 28502229 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_43_45.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:43:50 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:43:50 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:45:50
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/d743217c48d4/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:45:50
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/d743217c48d4/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:45:50 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization online undo segments: err:0 start: 8429963 end: 8430079 diff: 116 ms (0.1 seconds)
ORCLPDB1(3):Undo initialization finished serial:0 start:8429954 end:8430084 diff:130 ms (0.1 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=48, OS id=1885
Shared IO Pool defaulting to 64MB. Trying to get it from Buffer Cache for process 1662.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090523
Patch Description: Database Release Update : 18.3.0.0.180717 (28090523)
Patch Apply Time: 2018-07-18T17:39:24Z
Bugs Fixed: 9062315,13554903,21547051,21766220,21806121,23003564,23310101,
24489904,24689376,24737581,24925863,25035594,25035599,25287072,25348956,
25634405,25726981,25743479,25824236,25929650,25943740,26226953,26336101,
26423085,26427905,26450454,26476244,26598422,26615291,26646549,26654411,
26731697,26785169,26792891,26818960,26822620,26843558,26843664,26846077,
26894737,26898279,26928317,26933599,26956033,26961415,26966120,26986173,
26992964,27005278,27026401,27028251,27030974,27036408,27038986,27041253,
27044575,27047831,27053044,27058530,27060167,27060859,27061736,27066451,
27066519,27073066,27086821,27090765,27101527,27101652,27110878,27112686,
27119621,27126666,27128580,27135647,27143756,27143882,27147979,27153641,
27155549,27156355,27163928,27169796,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210872,27214085,27215007,27216224,
27221900,27222121,27222626,27224987,27226913,27232983,27233563,27236052,
27236110,27240246,27240570,27241221,27241247,27244337,27244785,27249215,
27250547,27254851,27258578,27259386,27259983,27262650,27262945,27263276,
27263996,27270197,27274456,27274536,27275136,27275776,27282707,27283029,
27283960,27284499,27285244,27288230,27292213,27294480,27301308,27301568,
27302594,27302681,27302695,27302711,27302730,27302777,27302800,27302960,
27304410,27304936,27305318,27307868,27310092,27313687,27314206,27314390,
27318869,27321179,27321834,27326204,27329812,27330158,27330161,27333658,
27333664,27333693,27334316,27334648,27335682,27338912,27338946,27339115,
27339396,27339483,27339495,27341036,27345190,27345231,27345450,27345498,
27346329,27346644,27346709,27346949,27347126,27348081,27348707,27349393,
27352600,27354783,27356373,27357773,27358241,27359178,27359368,27360126,
27364891,27364916,27364947,27365139,27365702,27365993,27367194,27368850,
27372756,27375260,27375542,27376871,27378103,27379233,27381383,27381656,
27384222,27389352,27392187,27395404,27395416,27395794,27396357,27396365,
27396377,27396624,27396666,27396672,27396813,27398080,27398660,27401637,
27405242,27405696,27410300,27410595,27412805,27417186,27420715,27421101,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27442041,27444727,27445330,27445462,27447452,27447687,27448162,
27450355,27450400,27450783,27451049,27451182,27451187,27451531,27452760,
27453225,27457666,27457891,27458164,27459909,27460675,27467543,27469329,
27471876,27472969,27473800,27479358,27483974,27484556,27486253,27487795,
27489719,27496224,27496308,27497950,27498477,27501327,27501413,27501465,
27502420,27504190,27505603,27506774,27508985,27511196,27512439,27517818,
27518227,27518310,27520070,27520900,27522245,27523368,27523800,27525909,
27532375,27533819,27534509,27537472,27544030,27545630,27547732,27550341,
27551855,27558557,27558559,27558861,27560702,27563629,27563767,27570318,
27577758,27579353,27580996,27585755,27585800,27586810,27586895,27587672,
27591842,27592466,27593389,27595973,27599689,27602091,27602488,27603841,
27604293,27607805,27608669,27610269,27613080,27613247,27615608,27616657,
27617522,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27663370,27664702,27679488,27679664,27679806,27679961,27680162,
27680509,27682151,27688099,27688692,27690578,27691809,27692215,27693713,
27697092,27701795,27705761,27707544,27709046,27718914,27719187,27723002,
27726269,27726780,27732323,27739006,27740844,27744211,27745220,27747869,
27748954,27751006,27753336,27757567,27772815,27773602,27774320,27774539,
27779886,27780562,27782339,27783289,27786772,27791223,27797290,27803665,
27807441,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27840386,27847259,27851757,27861909,27869339,27873643,27882176,
27892488,27924147,27926113,27930478,27934468,27941896,27945870,27950708,
27952762,27961746,27964051,27970265,27971575,27984028,27989849,27993289,
27994333,27997875,27999597,28021205,28022847,28033429,28057267,28059199,
28072130,28098865,28106402,28132287,28169711,28174827,28184554,28188330,
28264172
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27923415
Patch Description: OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)
Patch Apply Time: 2018-07-18T17:41:38Z
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27952586
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
===========================================================
[vagrant@localhost db-18.3]$ # Ctrl-c
[vagrant@localhost db-18.3]$ docker stop d183 && docker logs d183
d183
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:36:51 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:37:18 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_280_2018_11_12_21_37_18/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.31.31.475599 PM
PDB ORCLPDB1: Rolled back successfully on 12-NOV-18 09.31.38.657315 PM
PDB PDB$SEED: Rolled back successfully on 12-NOV-18 09.31.35.104510 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.31.35.027700 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.31.41.703557 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.31.38.579110 PM
Current state of release update SQL patches:
Binary registry:
18.3.0.0.0 Release_Update 1806280943: Installed
PDB CDB$ROOT:
Applied 18.4.0.0.0 Release_Update 1809251743 successfully on 12-NOV-18 09.31.35.003183 PM
PDB ORCLPDB1:
Applied 18.4.0.0.0 Release_Update 1809251743 successfully on 12-NOV-18 09.31.41.685919 PM
PDB PDB$SEED:
Applied 18.4.0.0.0 Release_Update 1809251743 successfully on 12-NOV-18 09.31.38.557940 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Rollback from 18.4.0.0.0 Release_Update 1809251743 to 18.3.0.0.0 Release_Update 1806280943
The following interim patches will be applied:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 28502229 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_CDBROOT_2018Nov12_21_38_05.log (no errors)
Patch 28655784 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_rollback_ORCLCDB_CDBROOT_2018Nov12_21_40_47.log (no errors)
Patch 27923415 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_apply_ORCLCDB_CDBROOT_2018Nov12_21_41_46.log (no errors)
Patch 28502229 rollback (pdb PDB$SEED): WITH ERRORS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_PDBSEED_2018Nov12_21_41_47.log (errors)
Error at line 45: ORA-06550: line 0, column 0:
Error at line 46: PLS-00907: cannot load library unit DBMS_REGISTRY (referenced by DBMS_REGISTRY)
Error at line 47: ORA-06550: line 0, column 0:
Error at line 61: SP2-0556: Invalid file name.
Patch 28655784 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_rollback_ORCLCDB_PDBSEED_2018Nov12_21_42_08.log (no errors)
Patch 27923415 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_apply_ORCLCDB_PDBSEED_2018Nov12_21_42_26.log (no errors)
Patch 28502229 rollback (pdb ORCLPDB1): WITH ERRORS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_41_48.log (errors)
Error at line 104: ORA-06550: line 0, column 0:
Error at line 105: PLS-00907: cannot load library unit DBMS_REGISTRY (referenced by DBMS_REGISTRY)
Error at line 106: ORA-06550: line 0, column 0:
Error at line 120: SP2-0556: Invalid file name.
Patch 28655784 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_42_08.log (no errors)
Patch 27923415 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_42_26.log (no errors)
Please refer to MOS Note 1609718.1 and/or the invocation log
/opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_280_2018_11_12_21_37_18/sqlpatch_invocation.log
for information on how to resolve the above errors.
SQL Patching tool complete on Mon Nov 12 21:43:10 2018
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:43:11 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_1048_2018_11_12_21_43_11/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.42.59.629936 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.43.05.757258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.43.02.775700 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Not installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.42.56.761089 PM
PDB ORCLPDB1: Rolled back with errors on 12-NOV-18 09.43.02.955487 PM
PDB PDB$SEED: Rolled back with errors on 12-NOV-18 09.42.59.737259 PM
Current state of release update SQL patches:
Binary registry:
18.3.0.0.0 Release_Update 1806280943: Installed
PDB CDB$ROOT:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.42.59.617361 PM
PDB ORCLPDB1:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.05.737797 PM
PDB PDB$SEED:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.02.765138 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT
No interim patches need to be rolled back
No release update patches need to be installed
No interim patches need to be applied
For the following PDBs: PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
No release update patches need to be installed
No interim patches need to be applied
Installing patches...
Patch installation complete. Total patches installed: 2
Validating logfiles...done
Patch 28502229 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_PDBSEED_2018Nov12_21_43_45.log (no errors)
Patch 28502229 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_43_45.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:43:50 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:43:50 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:45:50
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/d743217c48d4/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:45:50
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/d743217c48d4/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:45:50 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization online undo segments: err:0 start: 8429963 end: 8430079 diff: 116 ms (0.1 seconds)
ORCLPDB1(3):Undo initialization finished serial:0 start:8429954 end:8430084 diff:130 ms (0.1 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=48, OS id=1885
Shared IO Pool defaulting to 64MB. Trying to get it from Buffer Cache for process 1662.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090523
Patch Description: Database Release Update : 18.3.0.0.180717 (28090523)
Patch Apply Time: 2018-07-18T17:39:24Z
Bugs Fixed: 9062315,13554903,21547051,21766220,21806121,23003564,23310101,
24489904,24689376,24737581,24925863,25035594,25035599,25287072,25348956,
25634405,25726981,25743479,25824236,25929650,25943740,26226953,26336101,
26423085,26427905,26450454,26476244,26598422,26615291,26646549,26654411,
26731697,26785169,26792891,26818960,26822620,26843558,26843664,26846077,
26894737,26898279,26928317,26933599,26956033,26961415,26966120,26986173,
26992964,27005278,27026401,27028251,27030974,27036408,27038986,27041253,
27044575,27047831,27053044,27058530,27060167,27060859,27061736,27066451,
27066519,27073066,27086821,27090765,27101527,27101652,27110878,27112686,
27119621,27126666,27128580,27135647,27143756,27143882,27147979,27153641,
27155549,27156355,27163928,27169796,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210872,27214085,27215007,27216224,
27221900,27222121,27222626,27224987,27226913,27232983,27233563,27236052,
27236110,27240246,27240570,27241221,27241247,27244337,27244785,27249215,
27250547,27254851,27258578,27259386,27259983,27262650,27262945,27263276,
27263996,27270197,27274456,27274536,27275136,27275776,27282707,27283029,
27283960,27284499,27285244,27288230,27292213,27294480,27301308,27301568,
27302594,27302681,27302695,27302711,27302730,27302777,27302800,27302960,
27304410,27304936,27305318,27307868,27310092,27313687,27314206,27314390,
27318869,27321179,27321834,27326204,27329812,27330158,27330161,27333658,
27333664,27333693,27334316,27334648,27335682,27338912,27338946,27339115,
27339396,27339483,27339495,27341036,27345190,27345231,27345450,27345498,
27346329,27346644,27346709,27346949,27347126,27348081,27348707,27349393,
27352600,27354783,27356373,27357773,27358241,27359178,27359368,27360126,
27364891,27364916,27364947,27365139,27365702,27365993,27367194,27368850,
27372756,27375260,27375542,27376871,27378103,27379233,27381383,27381656,
27384222,27389352,27392187,27395404,27395416,27395794,27396357,27396365,
27396377,27396624,27396666,27396672,27396813,27398080,27398660,27401637,
27405242,27405696,27410300,27410595,27412805,27417186,27420715,27421101,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27442041,27444727,27445330,27445462,27447452,27447687,27448162,
27450355,27450400,27450783,27451049,27451182,27451187,27451531,27452760,
27453225,27457666,27457891,27458164,27459909,27460675,27467543,27469329,
27471876,27472969,27473800,27479358,27483974,27484556,27486253,27487795,
27489719,27496224,27496308,27497950,27498477,27501327,27501413,27501465,
27502420,27504190,27505603,27506774,27508985,27511196,27512439,27517818,
27518227,27518310,27520070,27520900,27522245,27523368,27523800,27525909,
27532375,27533819,27534509,27537472,27544030,27545630,27547732,27550341,
27551855,27558557,27558559,27558861,27560702,27563629,27563767,27570318,
27577758,27579353,27580996,27585755,27585800,27586810,27586895,27587672,
27591842,27592466,27593389,27595973,27599689,27602091,27602488,27603841,
27604293,27607805,27608669,27610269,27613080,27613247,27615608,27616657,
27617522,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27663370,27664702,27679488,27679664,27679806,27679961,27680162,
27680509,27682151,27688099,27688692,27690578,27691809,27692215,27693713,
27697092,27701795,27705761,27707544,27709046,27718914,27719187,27723002,
27726269,27726780,27732323,27739006,27740844,27744211,27745220,27747869,
27748954,27751006,27753336,27757567,27772815,27773602,27774320,27774539,
27779886,27780562,27782339,27783289,27786772,27791223,27797290,27803665,
27807441,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27840386,27847259,27851757,27861909,27869339,27873643,27882176,
27892488,27924147,27926113,27930478,27934468,27941896,27945870,27950708,
27952762,27961746,27964051,27970265,27971575,27984028,27989849,27993289,
27994333,27997875,27999597,28021205,28022847,28033429,28057267,28059199,
28072130,28098865,28106402,28132287,28169711,28174827,28184554,28188330,
28264172
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27923415
Patch Description: OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)
Patch Apply Time: 2018-07-18T17:41:38Z
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27952586
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:49:14 2018
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
Shutting down instance (immediate) (OS id: 2079)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@d743217c48d4 (Q004) with pid is 58, OS pid 1943
Killed process oracle@d743217c48d4 (Q005) with pid is 60, OS pid 1973
Process termination requested for pid 1973 [source = rdbms], [info = 2] [request issued by pid: 2079, uid: 54321]
Stopping background process MMNL
Process termination requested for pid 1943 [source = rdbms], [info = 2] [request issued by pid: 2079, uid: 54321]
Stopping background process MMON
OS process OFSD (ospid 1623) idle for 30 seconds, exiting
alter pluggable database all close immediate
ORCLPDB1(3):JIT: pid 2079 requesting stop
ORCLPDB1(3):Buffer Cache flush deferred for PDB 3
ORCLPDB1(3):While transitioning the pdb 3 to clean state, clearing all its abort bits in the control file.
Pluggable database ORCLPDB1 closed
Completed: alter pluggable database all close immediate
PDB$SEED(2):JIT: pid 2079 requesting stop
PDB$SEED(2):Buffer Cache flush deferred for PDB 2
License high water mark = 8
Dispatchers and shared servers shutdown
Data Pump shutdown on PDB: 1 in progress
ALTER DATABASE CLOSE NORMAL
Stopping Emon pool
Stopping background process AQPC
[vagrant@localhost db-18.3]$ docker start d184 && docker logs d184 -f
d184
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:24:22 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:24:49 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_278_2018_11_12_21_24_49/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Not installed
PDB ORCLPDB1: Not installed
PDB PDB$SEED: Not installed
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_26_01.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_28_09.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_29_21.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_31_30.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_31_30.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:31:48 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:31:48 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:34:26
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:34:27
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:34:27 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1255 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=49, OS id=1428
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1239.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:36:19 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Shutting down instance (immediate) (OS id: 1554)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@81ca8a2d0e03 (Q003) with pid is 53, OS pid 1473
Stopping background process MMNL
Process termination requested for pid 1473 [source = rdbms], [info = 2] [request issued by pid: 1554, uid: 54321]
Stopping background process MMON
alter pluggable database all close immediate
ORCLPDB1(3):JIT: pid 1554 requesting stop
ORCLPDB1(3):Buffer Cache flush deferred for PDB 3
Pluggable database ORCLPDB1 closed
Completed: alter pluggable database all close immediate
PDB$SEED(2):JIT: pid 1554 requesting stop
PDB$SEED(2):Buffer Cache flush deferred for PDB 2
License high water mark = 8
Dispatchers and shared servers shutdown
Data Pump shutdown on PDB: 1 in progress
ALTER DATABASE CLOSE NORMAL
Stopping Emon pool
Stopping background process AQPC
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:49:30 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:49:46 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_274_2018_11_12_21_49_46/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.42.59.629936 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.43.05.757258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.43.02.775700 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.42.56.761089 PM
PDB ORCLPDB1: Rolled back successfully on 12-NOV-18 09.43.48.657090 PM
PDB PDB$SEED: Rolled back successfully on 12-NOV-18 09.43.48.537720 PM
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.42.59.617361 PM
PDB ORCLPDB1:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.05.737797 PM
PDB PDB$SEED:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.02.765138 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_50_37.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_52_17.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_53_13.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_53_15.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_53_58.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_54_18.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_53_15.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_53_58.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_54_18.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:54:31 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:54:31 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:56:37
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:56:39
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:56:39 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization finished serial:0 start:9078578 end:9078664 diff:86 ms (0.1 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1158 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=48, OS id=1329
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1142.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
[vagrant@localhost db-18.3]$ # Ctrl-c
[vagrant@localhost db-18.3]$ docker stop d184 && docker logs d184
d184
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:24:22 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:24:49 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_278_2018_11_12_21_24_49/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Not installed
PDB ORCLPDB1: Not installed
PDB PDB$SEED: Not installed
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_26_01.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_28_09.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_29_21.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_31_30.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_31_30.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:31:48 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:31:48 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:34:26
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:34:27
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:34:27 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1255 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=49, OS id=1428
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1239.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:36:19 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Shutting down instance (immediate) (OS id: 1554)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@81ca8a2d0e03 (Q003) with pid is 53, OS pid 1473
Stopping background process MMNL
Process termination requested for pid 1473 [source = rdbms], [info = 2] [request issued by pid: 1554, uid: 54321]
Stopping background process MMON
alter pluggable database all close immediate
ORCLPDB1(3):JIT: pid 1554 requesting stop
ORCLPDB1(3):Buffer Cache flush deferred for PDB 3
Pluggable database ORCLPDB1 closed
Completed: alter pluggable database all close immediate
PDB$SEED(2):JIT: pid 1554 requesting stop
PDB$SEED(2):Buffer Cache flush deferred for PDB 2
License high water mark = 8
Dispatchers and shared servers shutdown
Data Pump shutdown on PDB: 1 in progress
ALTER DATABASE CLOSE NORMAL
Stopping Emon pool
Stopping background process AQPC
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:49:30 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:49:46 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_274_2018_11_12_21_49_46/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.42.59.629936 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.43.05.757258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.43.02.775700 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.42.56.761089 PM
PDB ORCLPDB1: Rolled back successfully on 12-NOV-18 09.43.48.657090 PM
PDB PDB$SEED: Rolled back successfully on 12-NOV-18 09.43.48.537720 PM
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.42.59.617361 PM
PDB ORCLPDB1:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.05.737797 PM
PDB PDB$SEED:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.02.765138 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_50_37.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_52_17.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_53_13.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_53_15.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_53_58.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_54_18.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_53_15.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_53_58.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_54_18.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:54:31 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:54:31 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:56:37
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:56:39
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:56:39 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization finished serial:0 start:9078578 end:9078664 diff:86 ms (0.1 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1158 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=48, OS id=1329
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1142.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:58:41 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Shutting down instance (immediate) (OS id: 1488)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@81ca8a2d0e03 (Q001) with pid is 55, OS pid 1380
Process termination requested for pid 1380 [source = rdbms], [info = 2] [request issued by pid: 1488, uid: 54321]
Stopping background process MMNL
Stopping background process MMON
[vagrant@localhost db-18.3]$ docker start d184 && docker logs d184 -f
d184
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:24:22 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:24:49 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_278_2018_11_12_21_24_49/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 08.12.20.806630 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 08.22.37.343258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 08.22.37.343258 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Not installed
PDB ORCLPDB1: Not installed
PDB PDB$SEED: Not installed
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.12.20.791484 PM
PDB ORCLPDB1:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
PDB PDB$SEED:
Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 08.22.37.334561 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_26_01.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_28_09.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_29_21.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_31_30.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_29_25.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_30_39.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_31_30.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:31:48 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:31:48 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:34:26
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:34:27
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:34:27 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1255 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=49, OS id=1428
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1239.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:36:19 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Shutting down instance (immediate) (OS id: 1554)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@81ca8a2d0e03 (Q003) with pid is 53, OS pid 1473
Stopping background process MMNL
Process termination requested for pid 1473 [source = rdbms], [info = 2] [request issued by pid: 1554, uid: 54321]
Stopping background process MMON
alter pluggable database all close immediate
ORCLPDB1(3):JIT: pid 1554 requesting stop
ORCLPDB1(3):Buffer Cache flush deferred for PDB 3
Pluggable database ORCLPDB1 closed
Completed: alter pluggable database all close immediate
PDB$SEED(2):JIT: pid 1554 requesting stop
PDB$SEED(2):Buffer Cache flush deferred for PDB 2
License high water mark = 8
Dispatchers and shared servers shutdown
Data Pump shutdown on PDB: 1 in progress
ALTER DATABASE CLOSE NORMAL
Stopping Emon pool
Stopping background process AQPC
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:49:30 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL>
Pluggable database altered.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Running datapatch
SQL Patching tool version 18.0.0.0.0 Production on Mon Nov 12 21:49:46 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /opt/oracle/cfgtoollogs/sqlpatch/sqlpatch_274_2018_11_12_21_49_46/sqlpatch_invocation.log
Connecting to database...OK
Gathering database info...done
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of interim SQL patches:
Interim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):
Binary registry: Not installed
PDB CDB$ROOT: Applied successfully on 12-NOV-18 09.42.59.629936 PM
PDB ORCLPDB1: Applied successfully on 12-NOV-18 09.43.05.757258 PM
PDB PDB$SEED: Applied successfully on 12-NOV-18 09.43.02.775700 PM
Interim patch 28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)):
Binary registry: Installed
PDB CDB$ROOT: Rolled back successfully on 12-NOV-18 09.42.56.761089 PM
PDB ORCLPDB1: Rolled back successfully on 12-NOV-18 09.43.48.657090 PM
PDB PDB$SEED: Rolled back successfully on 12-NOV-18 09.43.48.537720 PM
Current state of release update SQL patches:
Binary registry:
18.4.0.0.0 Release_Update 1809251743: Installed
PDB CDB$ROOT:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.42.59.617361 PM
PDB ORCLPDB1:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.05.737797 PM
PDB PDB$SEED:
Rolled back to 18.3.0.0.0 Release_Update 1806280943 successfully on 12-NOV-18 09.43.02.765138 PM
Adding patches to installation queue and performing prereq checks...done
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED ORCLPDB1
The following interim patches will be rolled back:
27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))
Patch 28655784 (Database Release Update : 18.4.0.0.181016 (28655784)):
Apply from 18.3.0.0.0 Release_Update 1806280943 to 18.4.0.0.0 Release_Update 1809251743
The following interim patches will be applied:
28502229 (OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229))
Installing patches...
Patch installation complete. Total patches installed: 9
Validating logfiles...done
Patch 27923415 rollback (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_CDBROOT_2018Nov12_21_50_37.log (no errors)
Patch 28655784 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_CDBROOT_2018Nov12_21_52_17.log (no errors)
Patch 28502229 apply (pdb CDB$ROOT): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_CDBROOT_2018Nov12_21_53_13.log (no errors)
Patch 27923415 rollback (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_PDBSEED_2018Nov12_21_53_15.log (no errors)
Patch 28655784 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_PDBSEED_2018Nov12_21_53_58.log (no errors)
Patch 28502229 apply (pdb PDB$SEED): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_PDBSEED_2018Nov12_21_54_18.log (no errors)
Patch 27923415 rollback (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/27923415/22239273/27923415_rollback_ORCLCDB_ORCLPDB1_2018Nov12_21_53_15.log (no errors)
Patch 28655784 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28655784/22509982/28655784_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_53_58.log (no errors)
Patch 28502229 apply (pdb ORCLPDB1): SUCCESS
logfile: /opt/oracle/cfgtoollogs/sqlpatch/28502229/22435400/28502229_apply_ORCLCDB_ORCLPDB1_2018Nov12_21_54_18.log (no errors)
SQL Patching tool complete on Mon Nov 12 21:54:31 2018
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:54:31 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
SQL> Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:56:37
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:56:39
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:56:39 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization finished serial:0 start:9078578 end:9078664 diff:86 ms (0.1 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 1158 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=48, OS id=1329
Shared IO Pool defaulting to 80MB. Trying to get it from Buffer Cache for process 1142.
===========================================================
Dumping current patch information
===========================================================
Patch Id: 28090553
Patch Description: OCW RELEASE UPDATE 18.3.0.0.0 (28090553)
Patch Apply Time: 2018-07-18T17:40:01Z
Bugs Fixed: 12816839,18701017,22734786,23698980,23840305,25709124,25724089,
26299684,26313403,26433972,26527054,26586174,26587652,26647619,26827699,
26860285,26882126,26882316,26943660,26996813,27012915,27018734,27032726,
27034318,27040560,27080748,27086406,27092991,27098733,27106915,27114112,
27121566,27133637,27144533,27153755,27166715,27174938,27174948,27177551,
27177852,27182006,27182064,27184253,27204476,27212837,27213140,27220610,
27222423,27222938,27238077,27238258,27249544,27252023,27257509,27263677,
27265816,27267992,27271876,27274143,27285557,27299455,27300007,27302415,
27309182,27314512,27315159,27320985,27334353,27338838,27346984,27358232,
27362190,27370933,27377219,27378959,27379846,27379956,27393421,27398223,
27399499,27399762,27399985,27401618,27403244,27404599,27426277,27428790,
27430219,27430254,27433163,27452897,27458829,27465480,27475272,27481406,
27481765,27492916,27496806,27503318,27503413,27508936,27508984,27513114,
27519708,27526362,27528204,27532009,27534289,27560562,27560735,27573154,
27573408,27574335,27577122,27579969,27581484,27593587,27595801,27600706,
27609819,27625010,27625050,27627992,27654039,27657467,27657920,27668379,
27682288,27691717,27702244,27703242,27708711,27714373,27725967,27731346,
27734470,27735534,27739957,27740854,27747407,27748321,27757979,27766679,
27768034,27778433,27782464,27783059,27786669,27786699,27801774,27811439,
27839732,27850736,27862636,27864737,27865439,27889841,27896388,27897639,
27906509,27931506,27935826,27941514,27957892,27978668,27984314,27993298,
28023410,28025398,28032758,28039471,28039953,28045209,28099592,28109698,
28174926,28182503,28204423,28240153
Patch Id: 27908644
Patch Description: UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171
Patch Apply Time: 2018-07-18T17:44:11Z
Bugs Fixed: 27908644
Patch Id: 28655784
Patch Description: Database Release Update : 18.4.0.0.181016 (28655784)
Bugs Fixed: 9062315,13554903,14221306,20436508,21547051,21744603,21766220,
21806121,23003564,23061453,23310101,24489904,24689376,24737581,24925863,
24971597,25035594,25035599,25287072,25303284,25309116,25348956,25487146,
25634405,25644811,25686739,25726981,25743479,25824236,25882883,25890002,
25911069,25929650,25943740,25958554,26226953,26297826,26336101,26399691,
26422277,26423085,26427905,26450454,26476244,26521043,26536320,26598422,
26615291,26646549,26654411,26694735,26731697,26785169,26792891,26818960,
26822620,26843558,26843664,26846077,26883456,26894737,26895149,26898279,
26928317,26933599,26956033,26960097,26961415,26966120,26966916,26986173,
26992964,27005278,27006664,27026401,27028251,27030974,27035653,27036408,
27037839,27038986,27041253,27044575,27047831,27053044,27058530,27060167,
27060859,27061736,27066451,27066519,27073066,27075854,27080874,27086821,
27090765,27093423,27101527,27101652,27110878,27112686,27119621,27122162,
27125872,27126666,27128580,27135647,27143756,27143882,27147979,27150500,
27151826,27152892,27153641,27155549,27156355,27160360,27163928,27165231,
27166354,27169796,27169888,27170305,27181521,27181537,27189611,27190851,
27193810,27199245,27208953,27210038,27210263,27210872,27214085,27215007,
27216224,27220937,27221900,27222121,27222626,27224987,27226913,27228786,
27231051,27232983,27233563,27236052,27236110,27240246,27240570,27241221,
27241247,27242616,27244337,27244785,27249215,27250547,27251690,27254851,
27255377,27256000,27256488,27256534,27256584,27258578,27259307,27259386,
27259983,27262601,27262650,27262798,27262945,27262991,27263276,27263996,
27270197,27274456,27274536,27275136,27275776,27276231,27282707,27283029,
27283960,27284375,27284499,27285244,27288230,27288894,27292213,27293599,
27294480,27301308,27301568,27302594,27302632,27302681,27302695,27302711,
27302714,27302730,27302777,27302800,27302960,27303785,27304410,27304936,
27305318,27307868,27310092,27313687,27314206,27314390,27318869,27321179,
27321834,27326204,27329812,27330158,27330161,27333658,27333664,27333693,
27333731,27334316,27334648,27335682,27338912,27338946,27339115,27339396,
27339483,27339495,27341036,27345190,27345231,27345450,27345498,27346329,
27346644,27346709,27346949,27347126,27348081,27348707,27349393,27350267,
27351628,27352600,27354783,27356373,27357773,27358241,27359178,27359368,
27360126,27364891,27364916,27364947,27365139,27365702,27365993,27367194,
27368850,27372756,27375260,27375542,27376871,27378103,27379233,27381383,
27381656,27384222,27389352,27392187,27394086,27395404,27395416,27395794,
27396357,27396365,27396377,27396624,27396666,27396672,27396813,27398080,
27398660,27400598,27401637,27405242,27405645,27405696,27410279,27410300,
27410595,27412805,27416327,27416997,27417186,27420715,27421101,27421733,
27422874,27423251,27425507,27425622,27426363,27427805,27430802,27432338,
27432355,27433870,27434050,27434193,27434486,27434974,27435537,27439835,
27441326,27441980,27442041,27444727,27445330,27445462,27447452,27447687,
27448162,27449814,27450355,27450400,27450783,27451049,27451182,27451187,
27451531,27452046,27452760,27453225,27454722,27457666,27457891,27458164,
27459909,27460675,27462994,27466597,27467543,27469329,27471876,27472969,
27473800,27479358,27483974,27484556,27486253,27487795,27489719,27493674,
27496224,27496308,27497950,27498477,27501327,27501413,27501465,27502420,
27504190,27504770,27505229,27505603,27506774,27508985,27511196,27512439,
27517818,27518227,27518310,27520070,27520900,27522245,27523368,27523800,
27525909,27532375,27533819,27534509,27537472,27544030,27545630,27547732,
27550341,27551855,27555481,27558557,27558559,27558861,27560602,27560702,
27563629,27563767,27567477,27570318,27577758,27579353,27580996,27585755,
27585800,27586810,27586895,27587672,27591842,27592466,27593389,27595973,
27599689,27599927,27601118,27602091,27602488,27603841,27604293,27607563,
27607805,27608669,27610269,27613080,27613247,27615608,27616657,27617522,
27620808,27625274,27625620,27631506,27634676,27635508,27644757,27649707,
27652302,27654521,27662528,27663370,27664702,27679488,27679664,27679806,
27679961,27680162,27680509,27682151,27688099,27688692,27690513,27690578,
27691809,27691920,27691939,27692215,27693713,27697092,27698953,27700466,
27701795,27705761,27707544,27709046,27718914,27719187,27723002,27723151,
27726269,27726780,27732323,27739006,27740424,27740844,27744211,27745220,
27747869,27748954,27751006,27753336,27757567,27757794,27757888,27759457,
27766324,27767081,27772093,27772815,27773602,27774320,27774539,27779886,
27780562,27782339,27783289,27786772,27791223,27797290,27803665,27807441,
27810967,27812560,27812593,27813267,27815347,27818871,27832643,27833369,
27834984,27835925,27840386,27843646,27847259,27849825,27851757,27861452,
27861909,27869339,27873643,27876671,27882176,27892488,27898015,27918832,
27924147,27926113,27930478,27934468,27940876,27941896,27945870,27948050,
27950708,27952762,27960021,27961746,27964051,27965830,27970265,27971503,
27971575,27977039,27984028,27989849,27993289,27994325,27994333,27997875,
27998003,27999597,28000269,28004853,28018962,28021205,28022847,28024347,
28033429,28057267,28059199,28072130,28074713,28090453,28091981,28098865,
28103600,28104361,28106402,28111583,28132287,28165545,28169711,28174827,
28174951,28184554,28187706,28188330,28209341,28210192,28211734,28218832,
28226179,28227512,28238264,28258608,28264172,28285766,28290434,28304709,
28305001,28312508,28315995,28320117,28320399,28321446,28328895,28330714,
28338399,28344964,28354603,28385102,28390273,28391582,28393678,28403295,
28413955,28420042,28445741,28455212,28475164,28478676,28483184,28492362,
28502403,28504545,28508296,28508557,28527416,28553468,28571483,28679454
Patch Id: 28502229
Patch Description: OJVM RELEASE UPDATE: 18.4.0.0.181016 (28502229)
Bugs Fixed: 27304131,27461740,27539876,27636900,27642235,27936676,27952586,
28278547,28278640,28502098
===========================================================
Stopping container.
SIGTERM received, shutting down database!
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:58:41 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
Shutting down instance (immediate) (OS id: 1488)
Stopping background process SMCO
Shutting down instance: further logons disabled
Stopping background process CJQ0
Killed process oracle@81ca8a2d0e03 (Q001) with pid is 55, OS pid 1380
Process termination requested for pid 1380 [source = rdbms], [info = 2] [request issued by pid: 1488, uid: 54321]
Stopping background process MMNL
Stopping background process MMON
LSNRCTL for Linux: Version 18.0.0.0.0 - Production on 12-NOV-2018 21:58:57
Copyright (c) 1991, 2018, Oracle. All rights reserved.
Starting /opt/oracle/product/18c/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 18.0.0.0.0 - Production
System parameter file is /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Log messages written to /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 18.0.0.0.0 - Production
Start Date 12-NOV-2018 21:58:59
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/product/18c/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/diag/tnslsnr/81ca8a2d0e03/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=0.0.0.0)(PORT=1521)))
The listener supports no services
The command completed successfully
SQL*Plus: Release 18.0.0.0.0 - Production on Mon Nov 12 21:58:59 2018
Version 18.4.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 1610612704 bytes
Fixed Size 8896480 bytes
Variable Size 520093696 bytes
Database Buffers 1073741824 bytes
Redo Buffers 7880704 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.4.0.0.0
The Oracle base remains unchanged with value /opt/oracle
#########################
DATABASE IS READY TO USE!
#########################
The following output is now a tail of the alert.log:
ORCLPDB1(3):Undo initialization finished serial:0 start:9220439 end:9220544 diff:105 ms (0.1 seconds)
ORCLPDB1(3):Database Characterset for ORCLPDB1 is AL32UTF8
ORCLPDB1(3):Opening pdb with no Resource Manager plan active
ORCLPDB1(3):joxcsys_required_dirobj_exists: directory object exists with required path /opt/oracle/product/18c/dbhome_1/javavm/admin/, pid 100 cid 3
Pluggable database ORCLPDB1 opened read write
Starting background process CJQ0
Completed: ALTER DATABASE OPEN
CJQ0 started with pid=47, OS id=269
[vagrant@localhost db-18.3]$ # Ctrl-c
[vagrant@localhost db-18.3]$ docker stop d184
d184
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment