Docker #11:CentOSにDockerをインストールしてみるが…(2)

Docker入門(第三回)~各種dockerコマンドとDockerイメージ作成について~


■環境
ホスト:Windows10 1909 (18363.900)
VirtualBox:6.1.8
仮想OS:CentOS 8 (8.2.2004)
ネットワークはブリッジアダプターとし、仮想OSのIPは 192.168.1.52

VirtualBox上のCentOS8にDockerをインストール、
Docker上にCentOS7を起動した

しかし、どうしても yum が動かない…
[root@localhost user]# docker pull centos:7
7: Pulling from library/centos
524b0c1e57f8: Pull complete                                                     Digest: sha256:e9ce0b76f29f942502facd849f3e468232492b259b9d9f076f71b392293f1582
Status: Downloaded newer image for centos:7
docker.io/library/centos:7
[root@localhost user]# mkdir -p /root/tomcat-container/logs
[root@localhost user]# docker run -it -d -p 18080:8080 -v /root/tomcat-container/logs:/share/logs --name tomcat centos:7
afc0a581b3307ae9d14c2806d18610b98d30d8a4ef11aed4a929dfb2ce03e98c
[root@localhost user]# docker exec -it tomcat bash
[root@afc0a581b330 /]# yum install -y java
Loaded plugins: fastestmirror, ovl
Determining fastest mirrors
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=container error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"


 One of the configured repositories failed (Unknown),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo= ...

     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable 
        or
            subscription-manager repos --disable=

     5. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=.skip_if_unavailable=true

Cannot find a valid baseurl for repo: base/7/x86_64
[root@afc0a581b330 /]#

→ Dockerには3つのネットワークがインストールされる
[root@localhost user]# docker network ls
NETWORK ID          NAME                DRIVER              SCOPE
06b91485037b        bridge              bridge              local
61d83dc320ce        host                host                local
678732dc833f        none                null                local

none … ネットワーク無し
host … Dockerホストと同じネットワークインターフェース、IPアドレス
brige … NATで外部接続 (既定値)

もしかして host接続 にすれば繋がる?
ということで docker run より再試行
[root@localhost user]# docker run -it -d -p 18080:8080 --net=host -v /root/tomca
t-container/logs:/share/logs --name tomcat centos:7
WARNING: Published ports are discarded when using host network mode
4883a61a1ecd9b8500f2c0bde17dc657cd336ac963b7956d5f234b9d7c1a888b

なんか警告が出た
"ホストネットワークモードを使用すると、公開されたポートが破棄される"

無視してyumを実行してみる。
動いた!
[root@localhost user]# docker run -it -d -p 18080:8080 --net=host -v /root/tomca
t-container/logs:/share/logs --name tomcat centos:7
WARNING: Published ports are discarded when using host network mode
4883a61a1ecd9b8500f2c0bde17dc657cd336ac963b7956d5f234b9d7c1a888b
[root@localhost user]# docker exec -it tomcat bash
[root@localhost /]# yum install -y java
Loaded plugins: fastestmirror, ovl
Determining fastest mirrors
 * base: ftp.jaist.ac.jp
 * extras: ftp.jaist.ac.jp
 * updates: ftp.jaist.ac.jp
base                                                     | 3.6 kB     00:00
extras                                                   | 2.9 kB     00:00
updates                                                  | 2.9 kB     00:00
(1/4): base/7/x86_64/group_gz                              | 153 kB   00:00
(2/4): extras/7/x86_64/primary_db                          | 205 kB   00:00
(3/4): updates/7/x86_64/primary_db                         | 3.0 MB   00:00
(4/4): base/7/x86_64/primary_db                            | 6.1 MB   00:01
Resolving Dependencies
--> Running transaction check
---> Package java-1.8.0-openjdk.x86_64 1:1.8.0.252.b09-2.el7_8 will be installed
--> Processing Dependency: java-1.8.0-openjdk-headless(x86-64) = 1:1.8.0.252.b09-2.el7_8 for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: xorg-x11-fonts-Type1 for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libpng15.so.15(PNG15_0)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libjvm.so(SUNWprivate_1.1)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libjava.so(SUNWprivate_1.1)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libasound.so.2(ALSA_0.9.0rc4)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libasound.so.2(ALSA_0.9)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libXcomposite(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: gtk2(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: fontconfig(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libpng15.so.15()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libjvm.so()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libjpeg.so.62()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libjava.so()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libgif.so.4()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libasound.so.2()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libXtst.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libXrender.so.1()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libXi.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libXext.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: libX11.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64
--> Running transaction check
---> Package alsa-lib.x86_64 0:1.1.8-1.el7 will be installed
---> Package fontconfig.x86_64 0:2.13.0-4.3.el7 will be installed
--> Processing Dependency: freetype >= 2.8-7 for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: freetype for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: fontpackages-filesystem for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: dejavu-sans-fonts for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: libfreetype.so.6()(64bit) for package: fontconfig-2.13.0-4.3.el7.x86_64
---> Package giflib.x86_64 0:4.1.6-9.el7 will be installed
--> Processing Dependency: libSM.so.6()(64bit) for package: giflib-4.1.6-9.el7.x86_64
--> Processing Dependency: libICE.so.6()(64bit) for package: giflib-4.1.6-9.el7.x86_64
---> Package gtk2.x86_64 0:2.24.31-1.el7 will be installed
--> Processing Dependency: pango >= 1.20.0-1 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libtiff >= 3.6.1 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXrandr >= 1.2.99.4-2 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: atk >= 1.29.4-2 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: hicolor-icon-theme for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: gtk-update-icon-cache for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libpangoft2-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libpango-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libcups.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libcairo.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libatk-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXrandr.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXinerama.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXfixes.so.3()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXdamage.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXcursor.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
---> Package java-1.8.0-openjdk-headless.x86_64 1:1.8.0.252.b09-2.el7_8 will be installed
--> Processing Dependency: tzdata-java >= 2015d for package: 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: copy-jdk-configs >= 3.3 for package: 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: pcsc-lite-libs(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: lksctp-tools(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_64
--> Processing Dependency: jpackage-utils for package: 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_64
---> Package libX11.x86_64 0:1.6.7-2.el7 will be installed
--> Processing Dependency: libX11-common >= 1.6.7-2.el7 for package: libX11-1.6.7-2.el7.x86_64
--> Processing Dependency: libxcb.so.1()(64bit) for package: libX11-1.6.7-2.el7.x86_64
---> Package libXcomposite.x86_64 0:0.4.4-4.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 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 libjpeg-turbo.x86_64 0:1.2.90-8.el7 will be installed
---> Package libpng.x86_64 2:1.5.13-7.el7_2 will be installed
---> Package xorg-x11-fonts-Type1.noarch 0:7.5-9.el7 will be installed
--> Processing Dependency: ttmkfdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Processing Dependency: ttmkfdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Processing Dependency: mkfontdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Processing Dependency: mkfontdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Running transaction check
---> Package atk.x86_64 0:2.28.1-2.el7 will be installed
---> Package cairo.x86_64 0:1.15.12-4.el7 will be installed
--> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.15.12-4.el7.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: cairo-1.15.12-4.el7.x86_64
--> Processing Dependency: libEGL.so.1()(64bit) for package: cairo-1.15.12-4.el7.x86_64
---> Package copy-jdk-configs.noarch 0:3.3-10.el7_5 will be installed
---> Package cups-libs.x86_64 1:1.6.3-43.el7 will be installed
--> Processing Dependency: libavahi-common.so.3()(64bit) for package: 1:cups-libs-1.6.3-43.el7.x86_64
--> Processing Dependency: libavahi-client.so.3()(64bit) for package: 1:cups-libs-1.6.3-43.el7.x86_64
---> Package dejavu-sans-fonts.noarch 0:2.33-6.el7 will be installed
--> Processing Dependency: dejavu-fonts-common = 2.33-6.el7 for package: dejavu-sans-fonts-2.33-6.el7.noarch
---> Package fontpackages-filesystem.noarch 0:1.44-8.el7 will be installed
---> Package freetype.x86_64 0:2.8-14.el7 will be installed
---> Package gdk-pixbuf2.x86_64 0:2.36.12-3.el7 will be installed
--> Processing Dependency: libjasper.so.1()(64bit) for package: gdk-pixbuf2-2.36.12-3.el7.x86_64
---> Package gtk-update-icon-cache.x86_64 0:3.22.30-5.el7 will be installed
---> Package hicolor-icon-theme.noarch 0:0.12-7.el7 will be installed
---> Package javapackages-tools.noarch 0:3.4.1-11.el7 will be installed
--> Processing Dependency: python-javapackages = 3.4.1-11.el7 for package: javapackages-tools-3.4.1-11.el7.noarch
--> Processing Dependency: libxslt for package: javapackages-tools-3.4.1-11.el7.noarch
---> 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 libX11-common.noarch 0:1.6.7-2.el7 will be installed
---> Package libXcursor.x86_64 0:1.1.15-1.el7 will be installed
---> Package libXdamage.x86_64 0:1.1.4-4.1.el7 will be installed
---> Package libXfixes.x86_64 0:5.0.3-1.el7 will be installed
---> Package libXinerama.x86_64 0:1.1.3-2.1.el7 will be installed
---> Package libXrandr.x86_64 0:1.5.1-2.el7 will be installed
---> Package libtiff.x86_64 0:4.0.3-32.el7 will be installed
--> Processing Dependency: libjbig.so.2.0()(64bit) for package: libtiff-4.0.3-32.el7.x86_64
---> Package libxcb.x86_64 0:1.13-1.el7 will be installed
--> Processing Dependency: libXau.so.6()(64bit) for package: libxcb-1.13-1.el7.x86_64
---> Package lksctp-tools.x86_64 0:1.0.17-2.el7 will be installed
---> Package pango.x86_64 0:1.42.4-4.el7_7 will be installed
--> Processing Dependency: libthai(x86-64) >= 0.1.9 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libXft(x86-64) >= 2.0.0 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: harfbuzz(x86-64) >= 1.4.2 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: fribidi(x86-64) >= 1.0 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libharfbuzz.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libfribidi.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libXft.so.2()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
---> Package pcsc-lite-libs.x86_64 0:1.8.8-8.el7 will be installed
---> Package ttmkfdir.x86_64 0:3.0.9-42.el7 will be installed
---> Package tzdata-java.noarch 0:2020a-1.el7 will be installed
---> Package xorg-x11-font-utils.x86_64 1:7.5-21.el7 will be installed
--> Processing Dependency: libfontenc.so.1()(64bit) for package: 1:xorg-x11-font-utils-7.5-21.el7.x86_64
--> Running transaction check
---> Package avahi-libs.x86_64 0:0.6.31-20.el7 will be installed
---> Package dejavu-fonts-common.noarch 0:2.33-6.el7 will be installed
---> Package fribidi.x86_64 0:1.0.2-1.el7_7.1 will be installed
---> Package harfbuzz.x86_64 0:1.7.5-2.el7 will be installed
--> Processing Dependency: libgraphite2.so.3()(64bit) for package: harfbuzz-1.7.5-2.el7.x86_64
---> Package jasper-libs.x86_64 0:1.900.1-33.el7 will be installed
---> Package jbigkit-libs.x86_64 0:2.0-11.el7 will be installed
---> Package libXau.x86_64 0:1.0.8-2.1.el7 will be installed
---> Package libXft.x86_64 0:2.3.2-2.el7 will be installed
---> Package libfontenc.x86_64 0:1.1.3-3.el7 will be installed
---> Package libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed
--> Processing Dependency: libglvnd(x86-64) = 1:1.0.1-0.8.git5baa1e5.el7 for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64
--> Processing Dependency: mesa-libEGL(x86-64) >= 13.0.4-1 for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64
--> Processing Dependency: libGLdispatch.so.0()(64bit) for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64
---> Package libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed
--> Processing Dependency: mesa-libGL(x86-64) >= 13.0.4-1 for package: 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64
---> Package libthai.x86_64 0:0.1.14-9.el7 will be installed
---> Package libxslt.x86_64 0:1.1.28-5.el7 will be installed
---> Package pixman.x86_64 0:0.34.0-1.el7 will be installed
---> Package python-javapackages.noarch 0:3.4.1-11.el7 will be installed
--> Processing Dependency: python-lxml for package: python-javapackages-3.4.1-11.el7.noarch
--> Running transaction check
---> Package graphite2.x86_64 0:1.3.10-1.el7_3 will be installed
---> Package libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed
---> Package mesa-libEGL.x86_64 0:18.3.4-7.el7_8.1 will be installed
--> Processing Dependency: mesa-libgbm = 18.3.4-7.el7_8.1 for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
--> Processing Dependency: libxshmfence.so.1()(64bit) for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
--> Processing Dependency: libwayland-server.so.0()(64bit) for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
--> Processing Dependency: libwayland-client.so.0()(64bit) for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
--> Processing Dependency: libglapi.so.0()(64bit) for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
--> Processing Dependency: libgbm.so.1()(64bit) for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libEGL-18.3.4-7.el7_8.1.x86_64
---> Package mesa-libGL.x86_64 0:18.3.4-7.el7_8.1 will be installed
--> Processing Dependency: libXxf86vm.so.1()(64bit) for package: mesa-libGL-18.3.4-7.el7_8.1.x86_64
---> Package python-lxml.x86_64 0:3.2.1-4.el7 will be installed
--> Running transaction check
---> Package libXxf86vm.x86_64 0:1.1.4-1.el7 will be installed
---> Package libdrm.x86_64 0:2.4.97-2.el7 will be installed
--> Processing Dependency: libpciaccess.so.0()(64bit) for package: libdrm-2.4.97-2.el7.x86_64
---> Package libwayland-client.x86_64 0:1.15.0-1.el7 will be installed
---> Package libwayland-server.x86_64 0:1.15.0-1.el7 will be installed
---> Package libxshmfence.x86_64 0:1.2-1.el7 will be installed
---> Package mesa-libgbm.x86_64 0:18.3.4-7.el7_8.1 will be installed
---> Package mesa-libglapi.x86_64 0:18.3.4-7.el7_8.1 will be installed
--> Running transaction check
---> Package libpciaccess.x86_64 0:0.14-1.el7 will be installed
--> Processing Dependency: hwdata for package: libpciaccess-0.14-1.el7.x86_64
--> Running transaction check
---> Package hwdata.x86_64 0:0.252-9.5.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package                     Arch   Version                       Repository
                                                                           Size
================================================================================
Installing:
 java-1.8.0-openjdk          x86_64 1:1.8.0.252.b09-2.el7_8       updates 295 k
Installing for dependencies:
 alsa-lib                    x86_64 1.1.8-1.el7                   base    425 k
 atk                         x86_64 2.28.1-2.el7                  base    263 k
 avahi-libs                  x86_64 0.6.31-20.el7                 base     62 k
 cairo                       x86_64 1.15.12-4.el7                 base    741 k
 copy-jdk-configs            noarch 3.3-10.el7_5                  base     21 k
 cups-libs                   x86_64 1:1.6.3-43.el7                base    358 k
 dejavu-fonts-common         noarch 2.33-6.el7                    base     64 k
 dejavu-sans-fonts           noarch 2.33-6.el7                    base    1.4 M
 fontconfig                  x86_64 2.13.0-4.3.el7                base    254 k
 fontpackages-filesystem     noarch 1.44-8.el7                    base    9.9 k
 freetype                    x86_64 2.8-14.el7                    base    380 k
 fribidi                     x86_64 1.0.2-1.el7_7.1               base     79 k
 gdk-pixbuf2                 x86_64 2.36.12-3.el7                 base    570 k
 giflib                      x86_64 4.1.6-9.el7                   base     40 k
 graphite2                   x86_64 1.3.10-1.el7_3                base    115 k
 gtk-update-icon-cache       x86_64 3.22.30-5.el7                 base     27 k
 gtk2                        x86_64 2.24.31-1.el7                 base    3.4 M
 harfbuzz                    x86_64 1.7.5-2.el7                   base    267 k
 hicolor-icon-theme          noarch 0.12-7.el7                    base     42 k
 hwdata                      x86_64 0.252-9.5.el7                 base    2.4 M
 jasper-libs                 x86_64 1.900.1-33.el7                base    150 k
 java-1.8.0-openjdk-headless x86_64 1:1.8.0.252.b09-2.el7_8       updates  32 M
 javapackages-tools          noarch 3.4.1-11.el7                  base     73 k
 jbigkit-libs                x86_64 2.0-11.el7                    base     46 k
 libICE                      x86_64 1.0.9-9.el7                   base     66 k
 libSM                       x86_64 1.2.2-2.el7                   base     39 k
 libX11                      x86_64 1.6.7-2.el7                   base    607 k
 libX11-common               noarch 1.6.7-2.el7                   base    164 k
 libXau                      x86_64 1.0.8-2.1.el7                 base     29 k
 libXcomposite               x86_64 0.4.4-4.1.el7                 base     22 k
 libXcursor                  x86_64 1.1.15-1.el7                  base     30 k
 libXdamage                  x86_64 1.1.4-4.1.el7                 base     20 k
 libXext                     x86_64 1.3.3-3.el7                   base     39 k
 libXfixes                   x86_64 5.0.3-1.el7                   base     18 k
 libXft                      x86_64 2.3.2-2.el7                   base     58 k
 libXi                       x86_64 1.7.9-1.el7                   base     40 k
 libXinerama                 x86_64 1.1.3-2.1.el7                 base     14 k
 libXrandr                   x86_64 1.5.1-2.el7                   base     27 k
 libXrender                  x86_64 0.9.10-1.el7                  base     26 k
 libXtst                     x86_64 1.2.3-1.el7                   base     20 k
 libXxf86vm                  x86_64 1.1.4-1.el7                   base     18 k
 libdrm                      x86_64 2.4.97-2.el7                  base    151 k
 libfontenc                  x86_64 1.1.3-3.el7                   base     31 k
 libglvnd                    x86_64 1:1.0.1-0.8.git5baa1e5.el7    base     89 k
 libglvnd-egl                x86_64 1:1.0.1-0.8.git5baa1e5.el7    base     44 k
 libglvnd-glx                x86_64 1:1.0.1-0.8.git5baa1e5.el7    base    125 k
 libjpeg-turbo               x86_64 1.2.90-8.el7                  base    135 k
 libpciaccess                x86_64 0.14-1.el7                    base     26 k
 libpng                      x86_64 2:1.5.13-7.el7_2              base    213 k
 libthai                     x86_64 0.1.14-9.el7                  base    187 k
 libtiff                     x86_64 4.0.3-32.el7                  base    171 k
 libwayland-client           x86_64 1.15.0-1.el7                  base     33 k
 libwayland-server           x86_64 1.15.0-1.el7                  base     39 k
 libxcb                      x86_64 1.13-1.el7                    base    214 k
 libxshmfence                x86_64 1.2-1.el7                     base    7.2 k
 libxslt                     x86_64 1.1.28-5.el7                  base    242 k
 lksctp-tools                x86_64 1.0.17-2.el7                  base     88 k
 mesa-libEGL                 x86_64 18.3.4-7.el7_8.1              updates 109 k
 mesa-libGL                  x86_64 18.3.4-7.el7_8.1              updates 165 k
 mesa-libgbm                 x86_64 18.3.4-7.el7_8.1              updates  39 k
 mesa-libglapi               x86_64 18.3.4-7.el7_8.1              updates  46 k
 pango                       x86_64 1.42.4-4.el7_7                base    280 k
 pcsc-lite-libs              x86_64 1.8.8-8.el7                   base     34 k
 pixman                      x86_64 0.34.0-1.el7                  base    248 k
 python-javapackages         noarch 3.4.1-11.el7                  base     31 k
 python-lxml                 x86_64 3.2.1-4.el7                   base    758 k
 ttmkfdir                    x86_64 3.0.9-42.el7                  base     48 k
 tzdata-java                 noarch 2020a-1.el7                   updates 188 k
 xorg-x11-font-utils         x86_64 1:7.5-21.el7                  base    104 k
 xorg-x11-fonts-Type1        noarch 7.5-9.el7                     base    521 k

Transaction Summary
================================================================================
Install  1 Package (+70 Dependent packages)

Total download size: 49 M
Installed size: 167 M
Downloading packages:
warning: /var/cache/yum/x86_64/7/base/packages/avahi-libs-0.6.31-20.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for avahi-libs-0.6.31-20.el7.x86_64.rpm is not installed
(1/71): avahi-libs-0.6.31-20.el7.x86_64.rpm                |  62 kB   00:00
(2/71): alsa-lib-1.1.8-1.el7.x86_64.rpm                    | 425 kB   00:00
(3/71): atk-2.28.1-2.el7.x86_64.rpm                        | 263 kB   00:00
(4/71): copy-jdk-configs-3.3-10.el7_5.noarch.rpm           |  21 kB   00:00
(5/71): dejavu-fonts-common-2.33-6.el7.noarch.rpm          |  64 kB   00:00
(6/71): cups-libs-1.6.3-43.el7.x86_64.rpm                  | 358 kB   00:00
(7/71): cairo-1.15.12-4.el7.x86_64.rpm                     | 741 kB   00:00
(8/71): fontconfig-2.13.0-4.3.el7.x86_64.rpm               | 254 kB   00:00
(9/71): fontpackages-filesystem-1.44-8.el7.noarch.rpm      | 9.9 kB   00:00
(10/71): fribidi-1.0.2-1.el7_7.1.x86_64.rpm                |  79 kB   00:00
(11/71): dejavu-sans-fonts-2.33-6.el7.noarch.rpm           | 1.4 MB   00:00
(12/71): freetype-2.8-14.el7.x86_64.rpm                    | 380 kB   00:00
(13/71): gdk-pixbuf2-2.36.12-3.el7.x86_64.rpm              | 570 kB   00:00
(14/71): gtk-update-icon-cache-3.22.30-5.el7.x86_64.rpm    |  27 kB   00:00
(15/71): graphite2-1.3.10-1.el7_3.x86_64.rpm               | 115 kB   00:00
(16/71): harfbuzz-1.7.5-2.el7.x86_64.rpm                   | 267 kB   00:00
(17/71): hicolor-icon-theme-0.12-7.el7.noarch.rpm          |  42 kB   00:00
(18/71): giflib-4.1.6-9.el7.x86_64.rpm                     |  40 kB   00:00
(19/71): hwdata-0.252-9.5.el7.x86_64.rpm                   | 2.4 MB   00:00
(20/71): jasper-libs-1.900.1-33.el7.x86_64.rpm             | 150 kB   00:00
(21/71): jbigkit-libs-2.0-11.el7.x86_64.rpm                |  46 kB   00:00
(22/71): libICE-1.0.9-9.el7.x86_64.rpm                     |  66 kB   00:00
(23/71): libSM-1.2.2-2.el7.x86_64.rpm                      |  39 kB   00:00
(24/71): gtk2-2.24.31-1.el7.x86_64.rpm                     | 3.4 MB   00:00
(25/71): libX11-common-1.6.7-2.el7.noarch.rpm              | 164 kB   00:00
(26/71): libXau-1.0.8-2.1.el7.x86_64.rpm                   |  29 kB   00:00
(27/71): javapackages-tools-3.4.1-11.el7.noarch.rpm        |  73 kB   00:00
(28/71): libXcomposite-0.4.4-4.1.el7.x86_64.rpm            |  22 kB   00:00
(29/71): libXcursor-1.1.15-1.el7.x86_64.rpm                |  30 kB   00:00
(30/71): libX11-1.6.7-2.el7.x86_64.rpm                     | 607 kB   00:00
(31/71): libXdamage-1.1.4-4.1.el7.x86_64.rpm               |  20 kB   00:00
Public key for java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64.rpm is not installed
(32/71): java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64.r | 295 kB   00:00
(33/71): libXext-1.3.3-3.el7.x86_64.rpm                    |  39 kB   00:00
(34/71): libXfixes-5.0.3-1.el7.x86_64.rpm                  |  18 kB   00:00
(35/71): libXft-2.3.2-2.el7.x86_64.rpm                     |  58 kB   00:00
(36/71): libXi-1.7.9-1.el7.x86_64.rpm                      |  40 kB   00:00
(37/71): libXinerama-1.1.3-2.1.el7.x86_64.rpm              |  14 kB   00:00
(38/71): libXrandr-1.5.1-2.el7.x86_64.rpm                  |  27 kB   00:00
(39/71): libXrender-0.9.10-1.el7.x86_64.rpm                |  26 kB   00:00
(40/71): libXtst-1.2.3-1.el7.x86_64.rpm                    |  20 kB   00:00
(41/71): libXxf86vm-1.1.4-1.el7.x86_64.rpm                 |  18 kB   00:00
(42/71): libdrm-2.4.97-2.el7.x86_64.rpm                    | 151 kB   00:00
(43/71): libfontenc-1.1.3-3.el7.x86_64.rpm                 |  31 kB   00:00
(44/71): libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64.rpm  |  44 kB   00:00
(45/71): libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64.rpm      |  89 kB   00:00
(46/71): libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64.rpm  | 125 kB   00:00
(47/71): libjpeg-turbo-1.2.90-8.el7.x86_64.rpm             | 135 kB   00:00
(48/71): libpciaccess-0.14-1.el7.x86_64.rpm                |  26 kB   00:00
(49/71): libpng-1.5.13-7.el7_2.x86_64.rpm                  | 213 kB   00:00
(50/71): libthai-0.1.14-9.el7.x86_64.rpm                   | 187 kB   00:00
(51/71): libwayland-client-1.15.0-1.el7.x86_64.rpm         |  33 kB   00:00
(52/71): libtiff-4.0.3-32.el7.x86_64.rpm                   | 171 kB   00:00
(53/71): libwayland-server-1.15.0-1.el7.x86_64.rpm         |  39 kB   00:00
(54/71): libxshmfence-1.2-1.el7.x86_64.rpm                 | 7.2 kB   00:00
(55/71): libxcb-1.13-1.el7.x86_64.rpm                      | 214 kB   00:00
(56/71): libxslt-1.1.28-5.el7.x86_64.rpm                   | 242 kB   00:00
(57/71): lksctp-tools-1.0.17-2.el7.x86_64.rpm              |  88 kB   00:00
(58/71): mesa-libEGL-18.3.4-7.el7_8.1.x86_64.rpm           | 109 kB   00:00
(59/71): mesa-libgbm-18.3.4-7.el7_8.1.x86_64.rpm           |  39 kB   00:00
(60/71): mesa-libGL-18.3.4-7.el7_8.1.x86_64.rpm            | 165 kB   00:00
(61/71): mesa-libglapi-18.3.4-7.el7_8.1.x86_64.rpm         |  46 kB   00:00
(62/71): pcsc-lite-libs-1.8.8-8.el7.x86_64.rpm             |  34 kB   00:00
(63/71): pixman-0.34.0-1.el7.x86_64.rpm                    | 248 kB   00:00
(64/71): python-javapackages-3.4.1-11.el7.noarch.rpm       |  31 kB   00:00
(65/71): ttmkfdir-3.0.9-42.el7.x86_64.rpm                  |  48 kB   00:00
(66/71): xorg-x11-font-utils-7.5-21.el7.x86_64.rpm         | 104 kB   00:00
(67/71): xorg-x11-fonts-Type1-7.5-9.el7.noarch.rpm         | 521 kB   00:00
(68/71): python-lxml-3.2.1-4.el7.x86_64.rpm                | 758 kB   00:00
(69/71): pango-1.42.4-4.el7_7.x86_64.rpm                   | 280 kB   00:00
(70/71): tzdata-java-2020a-1.el7.noarch.rpm                | 188 kB   00:00
(71/71): java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8 |  32 MB   00:07
--------------------------------------------------------------------------------
Total                                              5.8 MB/s |  49 MB  00:08
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) "
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 Package    : centos-release-7-8.2003.0.el7.centos.x86_64 (@CentOS)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : libjpeg-turbo-1.2.90-8.el7.x86_64                           1/71
  Installing : 2:libpng-1.5.13-7.el7_2.x86_64                              2/71
  Installing : freetype-2.8-14.el7.x86_64                                  3/71
  Installing : mesa-libglapi-18.3.4-7.el7_8.1.x86_64                       4/71
  Installing : libxshmfence-1.2-1.el7.x86_64                               5/71
  Installing : libxslt-1.1.28-5.el7.x86_64                                 6/71
  Installing : libwayland-server-1.15.0-1.el7.x86_64                       7/71
  Installing : 1:libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64                  8/71
  Installing : fontpackages-filesystem-1.44-8.el7.noarch                   9/71
  Installing : libICE-1.0.9-9.el7.x86_64                                  10/71
  Installing : libSM-1.2.2-2.el7.x86_64                                   11/71
  Installing : dejavu-fonts-common-2.33-6.el7.noarch                      12/71
  Installing : dejavu-sans-fonts-2.33-6.el7.noarch                        13/71
  Installing : fontconfig-2.13.0-4.3.el7.x86_64                           14/71
  Installing : python-lxml-3.2.1-4.el7.x86_64                             15/71
  Installing : python-javapackages-3.4.1-11.el7.noarch                    16/71
  Installing : javapackages-tools-3.4.1-11.el7.noarch                     17/71
  Installing : ttmkfdir-3.0.9-42.el7.x86_64                               18/71
  Installing : jasper-libs-1.900.1-33.el7.x86_64                          19/71
  Installing : pixman-0.34.0-1.el7.x86_64                                 20/71
  Installing : avahi-libs-0.6.31-20.el7.x86_64                            21/71
  Installing : 1:cups-libs-1.6.3-43.el7.x86_64                            22/71
  Installing : libfontenc-1.1.3-3.el7.x86_64                              23/71
  Installing : 1:xorg-x11-font-utils-7.5-21.el7.x86_64                    24/71
  Installing : xorg-x11-fonts-Type1-7.5-9.el7.noarch                      25/71
  Installing : atk-2.28.1-2.el7.x86_64                                    26/71
  Installing : libthai-0.1.14-9.el7.x86_64                                27/71
  Installing : graphite2-1.3.10-1.el7_3.x86_64                            28/71
  Installing : harfbuzz-1.7.5-2.el7.x86_64                                29/71
  Installing : libXau-1.0.8-2.1.el7.x86_64                                30/71
  Installing : libxcb-1.13-1.el7.x86_64                                   31/71
  Installing : jbigkit-libs-2.0-11.el7.x86_64                             32/71
  Installing : libtiff-4.0.3-32.el7.x86_64                                33/71
  Installing : pcsc-lite-libs-1.8.8-8.el7.x86_64                          34/71
  Installing : hwdata-0.252-9.5.el7.x86_64                                35/71
  Installing : libpciaccess-0.14-1.el7.x86_64                             36/71
  Installing : libdrm-2.4.97-2.el7.x86_64                                 37/71
  Installing : mesa-libgbm-18.3.4-7.el7_8.1.x86_64                        38/71
  Installing : lksctp-tools-1.0.17-2.el7.x86_64                           39/71
  Installing : libX11-common-1.6.7-2.el7.noarch                           40/71
  Installing : libX11-1.6.7-2.el7.x86_64                                  41/71
  Installing : libXext-1.3.3-3.el7.x86_64                                 42/71
  Installing : libXrender-0.9.10-1.el7.x86_64                             43/71
  Installing : libXfixes-5.0.3-1.el7.x86_64                               44/71
  Installing : libXi-1.7.9-1.el7.x86_64                                   45/71
  Installing : libXdamage-1.1.4-4.1.el7.x86_64                            46/71
  Installing : gdk-pixbuf2-2.36.12-3.el7.x86_64                           47/71
  Installing : libXcomposite-0.4.4-4.1.el7.x86_64                         48/71
  Installing : gtk-update-icon-cache-3.22.30-5.el7.x86_64                 49/71
  Installing : libXtst-1.2.3-1.el7.x86_64                                 50/71
  Installing : libXcursor-1.1.15-1.el7.x86_64                             51/71
  Installing : libXft-2.3.2-2.el7.x86_64                                  52/71
  Installing : libXrandr-1.5.1-2.el7.x86_64                               53/71
  Installing : libXinerama-1.1.3-2.1.el7.x86_64                           54/71
  Installing : libXxf86vm-1.1.4-1.el7.x86_64                              55/71
  Installing : mesa-libGL-18.3.4-7.el7_8.1.x86_64                         56/71
  Installing : 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64             57/71
  Installing : giflib-4.1.6-9.el7.x86_64                                  58/71
  Installing : fribidi-1.0.2-1.el7_7.1.x86_64                             59/71
  Installing : copy-jdk-configs-3.3-10.el7_5.noarch                       60/71
  Installing : libwayland-client-1.15.0-1.el7.x86_64                      61/71
  Installing : 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64             62/71
  Installing : mesa-libEGL-18.3.4-7.el7_8.1.x86_64                        63/71
  Installing : cairo-1.15.12-4.el7.x86_64                                 64/71
  Installing : pango-1.42.4-4.el7_7.x86_64                                65/71
  Installing : alsa-lib-1.1.8-1.el7.x86_64                                66/71
  Installing : hicolor-icon-theme-0.12-7.el7.noarch                       67/71
  Installing : gtk2-2.24.31-1.el7.x86_64                                  68/71
  Installing : tzdata-java-2020a-1.el7.noarch                             69/71
  Installing : 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_   70/71
  Installing : 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64          71/71
  Verifying  : libXext-1.3.3-3.el7.x86_64                                  1/71
  Verifying  : libpciaccess-0.14-1.el7.x86_64                              2/71
  Verifying  : libXi-1.7.9-1.el7.x86_64                                    3/71
  Verifying  : fontconfig-2.13.0-4.3.el7.x86_64                            4/71
  Verifying  : giflib-4.1.6-9.el7.x86_64                                   5/71
  Verifying  : libXinerama-1.1.3-2.1.el7.x86_64                            6/71
  Verifying  : libXrender-0.9.10-1.el7.x86_64                              7/71
  Verifying  : 1:cups-libs-1.6.3-43.el7.x86_64                             8/71
  Verifying  : libXxf86vm-1.1.4-1.el7.x86_64                               9/71
  Verifying  : mesa-libGL-18.3.4-7.el7_8.1.x86_64                         10/71
  Verifying  : libXcursor-1.1.15-1.el7.x86_64                             11/71
  Verifying  : tzdata-java-2020a-1.el7.noarch                             12/71
  Verifying  : mesa-libEGL-18.3.4-7.el7_8.1.x86_64                        13/71
  Verifying  : 2:libpng-1.5.13-7.el7_2.x86_64                             14/71
  Verifying  : freetype-2.8-14.el7.x86_64                                 15/71
  Verifying  : libICE-1.0.9-9.el7.x86_64                                  16/71
  Verifying  : dejavu-fonts-common-2.33-6.el7.noarch                      17/71
  Verifying  : fontpackages-filesystem-1.44-8.el7.noarch                  18/71
  Verifying  : ttmkfdir-3.0.9-42.el7.x86_64                               19/71
  Verifying  : mesa-libglapi-18.3.4-7.el7_8.1.x86_64                      20/71
  Verifying  : hicolor-icon-theme-0.12-7.el7.noarch                       21/71
  Verifying  : alsa-lib-1.1.8-1.el7.x86_64                                22/71
  Verifying  : libwayland-client-1.15.0-1.el7.x86_64                      23/71
  Verifying  : gdk-pixbuf2-2.36.12-3.el7.x86_64                           24/71
  Verifying  : libXcomposite-0.4.4-4.1.el7.x86_64                         25/71
  Verifying  : gtk2-2.24.31-1.el7.x86_64                                  26/71
  Verifying  : copy-jdk-configs-3.3-10.el7_5.noarch                       27/71
  Verifying  : python-javapackages-3.4.1-11.el7.noarch                    28/71
  Verifying  : 1:java-1.8.0-openjdk-headless-1.8.0.252.b09-2.el7_8.x86_   29/71
  Verifying  : pango-1.42.4-4.el7_7.x86_64                                30/71
  Verifying  : fribidi-1.0.2-1.el7_7.1.x86_64                             31/71
  Verifying  : libXtst-1.2.3-1.el7.x86_64                                 32/71
  Verifying  : libX11-1.6.7-2.el7.x86_64                                  33/71
  Verifying  : libX11-common-1.6.7-2.el7.noarch                           34/71
  Verifying  : 1:java-1.8.0-openjdk-1.8.0.252.b09-2.el7_8.x86_64          35/71
  Verifying  : libXft-2.3.2-2.el7.x86_64                                  36/71
  Verifying  : libdrm-2.4.97-2.el7.x86_64                                 37/71
  Verifying  : lksctp-tools-1.0.17-2.el7.x86_64                           38/71
  Verifying  : gtk-update-icon-cache-3.22.30-5.el7.x86_64                 39/71
  Verifying  : 1:libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64                 40/71
  Verifying  : libjpeg-turbo-1.2.90-8.el7.x86_64                          41/71
  Verifying  : libxcb-1.13-1.el7.x86_64                                   42/71
  Verifying  : libwayland-server-1.15.0-1.el7.x86_64                      43/71
  Verifying  : xorg-x11-fonts-Type1-7.5-9.el7.noarch                      44/71
  Verifying  : hwdata-0.252-9.5.el7.x86_64                                45/71
  Verifying  : harfbuzz-1.7.5-2.el7.x86_64                                46/71
  Verifying  : libxslt-1.1.28-5.el7.x86_64                                47/71
  Verifying  : 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64             48/71
  Verifying  : dejavu-sans-fonts-2.33-6.el7.noarch                        49/71
  Verifying  : libXrandr-1.5.1-2.el7.x86_64                               50/71
  Verifying  : pcsc-lite-libs-1.8.8-8.el7.x86_64                          51/71
  Verifying  : javapackages-tools-3.4.1-11.el7.noarch                     52/71
  Verifying  : jbigkit-libs-2.0-11.el7.x86_64                             53/71
  Verifying  : cairo-1.15.12-4.el7.x86_64                                 54/71
  Verifying  : mesa-libgbm-18.3.4-7.el7_8.1.x86_64                        55/71
  Verifying  : libxshmfence-1.2-1.el7.x86_64                              56/71
  Verifying  : libXau-1.0.8-2.1.el7.x86_64                                57/71
  Verifying  : libtiff-4.0.3-32.el7.x86_64                                58/71
  Verifying  : libSM-1.2.2-2.el7.x86_64                                   59/71
  Verifying  : jasper-libs-1.900.1-33.el7.x86_64                          60/71
  Verifying  : graphite2-1.3.10-1.el7_3.x86_64                            61/71
  Verifying  : 1:xorg-x11-font-utils-7.5-21.el7.x86_64                    62/71
  Verifying  : python-lxml-3.2.1-4.el7.x86_64                             63/71
  Verifying  : libthai-0.1.14-9.el7.x86_64                                64/71
  Verifying  : libXdamage-1.1.4-4.1.el7.x86_64                            65/71
  Verifying  : libXfixes-5.0.3-1.el7.x86_64                               66/71
  Verifying  : atk-2.28.1-2.el7.x86_64                                    67/71
  Verifying  : libfontenc-1.1.3-3.el7.x86_64                              68/71
  Verifying  : avahi-libs-0.6.31-20.el7.x86_64                            69/71
  Verifying  : 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64             70/71
  Verifying  : pixman-0.34.0-1.el7.x86_64                                 71/71

Installed:
  java-1.8.0-openjdk.x86_64 1:1.8.0.252.b09-2.el7_8

Dependency Installed:
  alsa-lib.x86_64 0:1.1.8-1.el7
  atk.x86_64 0:2.28.1-2.el7
  avahi-libs.x86_64 0:0.6.31-20.el7
  cairo.x86_64 0:1.15.12-4.el7
  copy-jdk-configs.noarch 0:3.3-10.el7_5
  cups-libs.x86_64 1:1.6.3-43.el7
  dejavu-fonts-common.noarch 0:2.33-6.el7
  dejavu-sans-fonts.noarch 0:2.33-6.el7
  fontconfig.x86_64 0:2.13.0-4.3.el7
  fontpackages-filesystem.noarch 0:1.44-8.el7
  freetype.x86_64 0:2.8-14.el7
  fribidi.x86_64 0:1.0.2-1.el7_7.1
  gdk-pixbuf2.x86_64 0:2.36.12-3.el7
  giflib.x86_64 0:4.1.6-9.el7
  graphite2.x86_64 0:1.3.10-1.el7_3
  gtk-update-icon-cache.x86_64 0:3.22.30-5.el7
  gtk2.x86_64 0:2.24.31-1.el7
  harfbuzz.x86_64 0:1.7.5-2.el7
  hicolor-icon-theme.noarch 0:0.12-7.el7
  hwdata.x86_64 0:0.252-9.5.el7
  jasper-libs.x86_64 0:1.900.1-33.el7
  java-1.8.0-openjdk-headless.x86_64 1:1.8.0.252.b09-2.el7_8
  javapackages-tools.noarch 0:3.4.1-11.el7
  jbigkit-libs.x86_64 0:2.0-11.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.7-2.el7
  libX11-common.noarch 0:1.6.7-2.el7
  libXau.x86_64 0:1.0.8-2.1.el7
  libXcomposite.x86_64 0:0.4.4-4.1.el7
  libXcursor.x86_64 0:1.1.15-1.el7
  libXdamage.x86_64 0:1.1.4-4.1.el7
  libXext.x86_64 0:1.3.3-3.el7
  libXfixes.x86_64 0:5.0.3-1.el7
  libXft.x86_64 0:2.3.2-2.el7
  libXi.x86_64 0:1.7.9-1.el7
  libXinerama.x86_64 0:1.1.3-2.1.el7
  libXrandr.x86_64 0:1.5.1-2.el7
  libXrender.x86_64 0:0.9.10-1.el7
  libXtst.x86_64 0:1.2.3-1.el7
  libXxf86vm.x86_64 0:1.1.4-1.el7
  libdrm.x86_64 0:2.4.97-2.el7
  libfontenc.x86_64 0:1.1.3-3.el7
  libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7
  libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7
  libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7
  libjpeg-turbo.x86_64 0:1.2.90-8.el7
  libpciaccess.x86_64 0:0.14-1.el7
  libpng.x86_64 2:1.5.13-7.el7_2
  libthai.x86_64 0:0.1.14-9.el7
  libtiff.x86_64 0:4.0.3-32.el7
  libwayland-client.x86_64 0:1.15.0-1.el7
  libwayland-server.x86_64 0:1.15.0-1.el7
  libxcb.x86_64 0:1.13-1.el7
  libxshmfence.x86_64 0:1.2-1.el7
  libxslt.x86_64 0:1.1.28-5.el7
  lksctp-tools.x86_64 0:1.0.17-2.el7
  mesa-libEGL.x86_64 0:18.3.4-7.el7_8.1su
  mesa-libGL.x86_64 0:18.3.4-7.el7_8.1
  mesa-libgbm.x86_64 0:18.3.4-7.el7_8.1
  mesa-libglapi.x86_64 0:18.3.4-7.el7_8.1
  pango.x86_64 0:1.42.4-4.el7_7
  pcsc-lite-libs.x86_64 0:1.8.8-8.el7
  pixman.x86_64 0:0.34.0-1.el7
  python-javapackages.noarch 0:3.4.1-11.el7
  python-lxml.x86_64 0:3.2.1-4.el7
  ttmkfdir.x86_64 0:3.0.9-42.el7
  tzdata-java.noarch 0:2020a-1.el7
  xorg-x11-font-utils.x86_64 1:7.5-21.el7
  xorg-x11-fonts-Type1.noarch 0:7.5-9.el7

Complete!
[root@localhost /]#

参考サイトでは "-p 18080:8080" として、ポート18080 への付け替えを行っているが、--net=host を使うとこの機能が使えない?

仮想上のCentOS8でブラウザ(Firefox)を起動しTomcatへアクセス
・localhost:8080 → OK
・localhost:18080 → 繋がらない

仮想ホスト(Windows)からのアクセス
→ 繋がらない
繋がらないのはFirewallの影響かもしれないので、ファイアウォールを停止してみる。
sudo systemctl stop firewalld

→ Windowsからもアクセスできた
"http://192.168.1.52:8080"

0 件のコメント:

その他の記事