ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Install Zabbix on Fedora 27

    IT Discussion
    zabbix fedora 27 fedora linux how to
    10
    25
    5.9k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • O
      Obsolesce
      last edited by Obsolesce

      1. Create a new file somewhere named zabbix_installer.sh, then paste everything below exactly as it is.
        • You will need to edit Zabbix_Passwd in the script below before saving it.
        • In my case, to get the script to create the databases without error, I had to change in the below script: sudo mysql -uroot to sudo mysql -u root -p. Then it prompted me for the password and it finished successfully.
      #!/bin/sh
      
      set -e
      
      # Avoid "Your password does not satisfy the current policy requirements".
      [ -z "${ZABBIX_PASSWD}" ] && ZABBIX_PASSWD=Zabbix_Passwd
      
      zabbix_install()
      {
        sudo dnf install -y policycoreutils-python-utils zabbix-server-mysql zabbix-web-mysql \
             mod_ssl mariadb-server
      
        timezone=$(timedatectl | grep "Time zone:" | \
                      awk -F':' '{ print $2 }' | awk '{ print $1 }')
        sudo sed -e 's/^post_max_size = .*/post_max_size = 16M/g' \
             -e 's/^max_execution_time = .*/max_execution_time = 300/g' \
             -e 's/^max_input_time = .*/max_input_time = 300/g' \
             -e "s:^;date.timezone =.*:date.timezone = \"${timezone}\":g" \
             -i /etc/php.ini
      
        sudo systemctl enable mariadb
        sudo systemctl start mariadb
      
        cat <<EOF | sudo mysql -uroot
      create database zabbix;
      grant all privileges on zabbix.* to zabbix@localhost identified by '${ZABBIX_PASSWD}';
      exit
      EOF
      
        for sql in schema.sql images.sql data.sql; do
          # shellcheck disable=SC2002
          cat /usr/share/zabbix-mysql/"${sql}" | \
            sudo mysql -uzabbix -p"${ZABBIX_PASSWD}" zabbix
        done
      
        sudo sed -e 's/# ListenPort=.*/ListenPort=10051/g' \
             -e "s/# DBPassword=.*/DBPassword=${ZABBIX_PASSWD}/g" \
             -i /etc/zabbix_server.conf
      
        # Skip setup.php
        cat <<EOF | sudo tee /etc/zabbix/web/zabbix.conf.php
      <?php
      // Zabbix GUI configuration file.
      global \$DB;
      
      \$DB['TYPE']     = 'MYSQL';
      \$DB['SERVER']   = 'localhost';
      \$DB['PORT']     = '0';
      \$DB['DATABASE'] = 'zabbix';
      \$DB['USER']     = 'zabbix';
      \$DB['PASSWORD'] = '${ZABBIX_PASSWD}';
      
      // Schema name. Used for IBM DB2 and PostgreSQL.
      \$DB['SCHEMA'] = '';
      
      \$ZBX_SERVER      = 'localhost';
      \$ZBX_SERVER_PORT = '10051';
      \$ZBX_SERVER_NAME = '';
      
      \$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
      ?>
      EOF
      
        sudo firewall-cmd --add-service=http --permanent
        sudo firewall-cmd --add-service=https --permanent
        sudo firewall-cmd --add-port=10050/tcp --permanent
        sudo firewall-cmd --add-port=10051/tcp --permanent
        sudo firewall-cmd --reload
      
        cat <<EOF > zabbix-server.te
      module zabbix-server 1.0;
      require {
        type zabbix_t;
        class process setrlimit;
      }
      #============= zabbix_t ==============
      allow zabbix_t self:process setrlimit;
      EOF
        checkmodule -M -m -o zabbix-server.mod zabbix-server.te
        semodule_package -m zabbix-server.mod -o zabbix-server.pp
        sudo semodule -i zabbix-server.pp
        rm -f zabbix-server.te zabbix-server.mod zabbix-server.pp
      
        sudo setsebool -P httpd_can_connect_zabbix 1
      
        sudo systemctl enable httpd zabbix-server-mysql
        sudo systemctl restart httpd zabbix-server
      
        # This Hostname is used for Host name in
        # Configuration -> Hosts -> Create Host.
        sudo dnf install -y zabbix-agent
        sudo sed -e "s/^Hostname=.*/Hostname=localhost/g" \
             -i /etc/zabbix_agentd.conf
        sudo systemctl enable zabbix-agent
        sudo systemctl start zabbix-agent
      }
      
      zabbix_install
      
      1. Edit the following file: vi /etc/zabbix_agentd.conf
        Note: The Hostname must match the name of the host.
        Note2: Mine is like below because I'm running the agent on the Zabbix server.

        • ServerActive=zabbixServer.domain.com
        • Hostname=zabbixServer.domain.com
      2. Restart Zabbix services:
        service zabbix-server restart && service zabbix-agent restart

      3. Access your server here:
        https://<server>/zabbix

      Mine is up as a demo at https://tgserv.timothygruber.com/zabbix

      1 Reply Last reply Reply Quote 3
      • N
        NashBrydges
        last edited by

        Nice write-up. How large a VM would you recommend for Zabbix?

        O 1 Reply Last reply Reply Quote 0
        • J
          JaredBusch
          last edited by

          Suggestion.

          If you are going to make a script based install, make it properly interactive like @scottalanmiller’s recent Nextcloud guide.

          Then just instruct people to pull your script from git.

          O 1 Reply Last reply Reply Quote 2
          • O
            Obsolesce @NashBrydges
            last edited by

            @nashbrydges said in Install Zabbix on Fedora 27:

            Nice write-up. How large a VM would you recommend for Zabbix?

            It depends on how busy it is, but I found this earlier:

            0_1519403702334_e0b869fa-e0c2-4b9e-a10f-c5c6126c62b3-image.png

            D 1 Reply Last reply Reply Quote 1
            • O
              Obsolesce @JaredBusch
              last edited by

              @jaredbusch said in Install Zabbix on Fedora 27:

              Suggestion.

              If you are going to make a script based install, make it properly interactive like @scottalanmiller’s recent Nextcloud guide.

              Then just instruct people to pull your script from git.

              That's a good idea.

              I'll add that in sometime.

              1 Reply Last reply Reply Quote 0
              • A
                AdamF
                last edited by

                @tim_g said in Install Zabbix on Fedora 27:

                https://tgserv.timothygruber.com/zabbix

                @Tim_G Nice write up. Can you add tags?

                scottalanmillerS 1 Reply Last reply Reply Quote 0
                • D
                  dafyre @Obsolesce
                  last edited by dafyre

                  @tim_g said in Install Zabbix on Fedora 27:

                  @nashbrydges said in Install Zabbix on Fedora 27:

                  Nice write-up. How large a VM would you recommend for Zabbix?

                  It depends on how busy it is, but I found this earlier:

                  0_1519403702334_e0b869fa-e0c2-4b9e-a10f-c5c6126c62b3-image.png

                  Having run Zabbix on a system with ~150 devices, I'd definitely recommend going with 2 Cores and 4GB of RAM as a minimum. Depending on your history requirements, I'd go with 64GB or 128GB.

                  1 Reply Last reply Reply Quote 1
                  • scottalanmillerS
                    scottalanmiller @AdamF
                    last edited by

                    @fuznutz04 said in Install Zabbix on Fedora 27:

                    @tim_g said in Install Zabbix on Fedora 27:

                    https://tgserv.timothygruber.com/zabbix

                    @Tim_G Nice write up. Can you add tags?

                    Nice write up.... would be a shame if someone... tagged it.

                    1 Reply Last reply Reply Quote 0
                    • N
                      NashBrydges
                      last edited by

                      @tim_g said in Install Zabbix on Fedora 27:

                      service zabbix-server restart && service zabbix-agent restart

                      Is this assuming a minimal install? My first try failed. Going to retry each step manually to see if I can figure out where I f'd up.

                      O 1 Reply Last reply Reply Quote 0
                      • O
                        Obsolesce @NashBrydges
                        last edited by

                        @nashbrydges said in Install Zabbix on Fedora 27:

                        @tim_g said in Install Zabbix on Fedora 27:

                        service zabbix-server restart && service zabbix-agent restart

                        Is this assuming a minimal install? My first try failed. Going to retry each step manually to see if I can figure out where I f'd up.

                        The services aren't restarting? What's the issue?

                        N 1 Reply Last reply Reply Quote 0
                        • N
                          NashBrydges @Obsolesce
                          last edited by

                          @tim_g said in Install Zabbix on Fedora 27:

                          @nashbrydges said in Install Zabbix on Fedora 27:

                          @tim_g said in Install Zabbix on Fedora 27:

                          service zabbix-server restart && service zabbix-agent restart

                          Is this assuming a minimal install? My first try failed. Going to retry each step manually to see if I can figure out where I f'd up.

                          The services aren't restarting? What's the issue?

                          The services appear to have started but can't access via the web page.

                          O 1 Reply Last reply Reply Quote 0
                          • O
                            Obsolesce @NashBrydges
                            last edited by

                            @nashbrydges said in Install Zabbix on Fedora 27:

                            @tim_g said in Install Zabbix on Fedora 27:

                            @nashbrydges said in Install Zabbix on Fedora 27:

                            @tim_g said in Install Zabbix on Fedora 27:

                            service zabbix-server restart && service zabbix-agent restart

                            Is this assuming a minimal install? My first try failed. Going to retry each step manually to see if I can figure out where I f'd up.

                            The services aren't restarting? What's the issue?

                            The services appear to have started but can't access via the web page.

                            Blank white page?

                            1 Reply Last reply Reply Quote 0
                            • N
                              NashBrydges
                              last edited by

                              I've rerun the script on a minimal install with the addition of sudo mysql_secure_installation and it worked all the way to where I got this error...

                              ./zabbix_installer.sh: line 80: checkmodule: command not found

                              Here is the output of the installation:

                              Last metadata expiration check: 0:04:28 ago on Fri 23 Feb 2018 04:18:04 PM EST.
                              Dependencies resolved.
                              ================================================================================
                               Package                   Arch     Version                     Repository
                                                                                                         Size
                              ================================================================================
                              Installing:
                               mariadb-server            x86_64   3:10.2.12-5.fc27            updates    17 M
                               mod_ssl                   x86_64   1:2.4.29-1.fc27             updates   114 k
                               zabbix-server-mysql       x86_64   3.0.14-1.fc27               updates   537 k
                               zabbix-web-mysql          noarch   3.0.14-1.fc27               updates    17 k
                              Installing dependencies:
                               OpenIPMI-libs             x86_64   2.0.23-6.fc27               updates   535 k
                               apr                       x86_64   1.6.3-1.fc27                updates   121 k
                               apr-util                  x86_64   1.6.1-2.fc27                updates   102 k
                               bison                     x86_64   3.0.4-8.fc27                fedora    684 k
                               compat-openssl10          x86_64   1:1.0.2m-1.fc27             updates   1.1 M
                               dejavu-fonts-common       noarch   2.35-5.fc27                 fedora     72 k
                               dejavu-sans-fonts         noarch   2.35-5.fc27                 fedora    1.5 M
                               fedora-logos-httpd        noarch   28.0.2-1.fc27               updates    33 k
                               fontconfig                x86_64   2.12.6-4.fc27               updates   253 k
                               fontpackages-filesystem   noarch   1.44-19.fc27                fedora     14 k
                               fping                     x86_64   4.0-4.fc27                  fedora     40 k
                               gd                        x86_64   2.2.5-1.fc27                fedora    142 k
                               httpd                     x86_64   2.4.29-1.fc27               updates   1.3 M
                               httpd-filesystem          noarch   2.4.29-1.fc27               updates    25 k
                               httpd-tools               x86_64   2.4.29-1.fc27               updates    89 k
                               iksemel                   x86_64   1.5-0.1.git978b733.fc26     fedora     54 k
                               jbigkit-libs              x86_64   2.1-8.fc27                  fedora     52 k
                               js-jquery1                noarch   1.12.4-4.fc27               fedora    185 k
                               libX11                    x86_64   1.6.5-4.fc27                fedora    616 k
                               libX11-common             noarch   1.6.5-4.fc27                fedora    166 k
                               libXau                    x86_64   1.0.8-9.fc27                fedora     33 k
                               libXpm                    x86_64   3.5.12-4.fc27               fedora     56 k
                               libjpeg-turbo             x86_64   1.5.3-1.fc27                updates   153 k
                               libtiff                   x86_64   4.0.9-2.fc27                updates   184 k
                               libwebp                   x86_64   0.6.1-1.fc27                updates   265 k
                               libxcb                    x86_64   1.12-5.fc27                 fedora    224 k
                               libxslt                   x86_64   1.1.29-4.fc27               fedora    252 k
                               logrotate                 x86_64   3.12.3-4.fc27               updates    79 k
                               m4                        x86_64   1.4.18-5.fc27               fedora    219 k
                               mailcap                   noarch   2.1.48-2.fc27               fedora     37 k
                               mariadb                   x86_64   3:10.2.12-5.fc27            updates   6.2 M
                               mariadb-common            x86_64   3:10.2.12-5.fc27            updates    64 k
                               mariadb-config            x86_64   3:10.2.12-5.fc27            updates    38 k
                               mariadb-errmsg            x86_64   3:10.2.12-5.fc27            updates   225 k
                               mariadb-libs              x86_64   3:10.2.12-5.fc27            updates   154 k
                               mod_http2                 x86_64   1.10.13-1.fc27              updates   151 k
                               net-snmp-libs             x86_64   1:5.7.3-26.fc27             updates   794 k
                               nginx-filesystem          noarch   1:1.12.1-1.fc27             fedora     20 k
                               perl-Carp                 noarch   1.42-394.fc27               fedora     28 k
                               perl-DBD-MySQL            x86_64   4.043-6.fc27                updates   154 k
                               perl-DBI                  x86_64   1.637-1.fc27                fedora    734 k
                               perl-Data-Dumper          x86_64   2.167-398.fc27              updates    56 k
                               perl-Encode               x86_64   4:2.94-16.fc27              updates   1.5 M
                               perl-Errno                x86_64   1.28-402.fc27               updates    72 k
                               perl-Exporter             noarch   5.72-395.fc27               fedora     32 k
                               perl-File-Path            noarch   2.15-1.fc27                 fedora     37 k
                               perl-File-Temp            noarch   0.230.400-394.fc27          fedora     61 k
                               perl-Getopt-Long          noarch   1:2.50-3.fc27               fedora     61 k
                               perl-HTTP-Tiny            noarch   0.070-394.fc27              fedora     56 k
                               perl-IO                   x86_64   1.38-402.fc27               updates   137 k
                               perl-IO-Socket-IP         noarch   0.39-4.fc27                 fedora     45 k
                               perl-MIME-Base64          x86_64   3.15-395.fc27               fedora     29 k
                               perl-Math-BigInt          noarch   1:1.9998.11-4.fc27          fedora    194 k
                               perl-Math-Complex         noarch   1.59-402.fc27               updates   104 k
                               perl-Net-SSLeay           x86_64   1.81-4.fc27                 fedora    334 k
                               perl-PathTools            x86_64   3.67-395.fc27               fedora     88 k
                               perl-Pod-Escapes          noarch   1:1.07-394.fc27             fedora     19 k
                               perl-Pod-Perldoc          noarch   3.28-395.fc27               fedora     87 k
                               perl-Pod-Simple           noarch   1:3.35-394.fc27             fedora    211 k
                               perl-Pod-Usage            noarch   4:1.69-394.fc27             fedora     33 k
                               perl-Scalar-List-Utils    x86_64   3:1.48-1.fc27               fedora     65 k
                               perl-Socket               x86_64   4:2.027-1.fc27              updates    57 k
                               perl-Storable             x86_64   1:2.62-395.fc27             fedora     84 k
                               perl-Term-ANSIColor       noarch   4.06-395.fc27               fedora     44 k
                               perl-Term-Cap             noarch   1.17-394.fc27               fedora     21 k
                               perl-Text-ParseWords      noarch   3.30-394.fc27               fedora     16 k
                               perl-Text-Tabs+Wrap       noarch   2013.0523-394.fc27          fedora     23 k
                               perl-Time-Local           noarch   1:1.250-394.fc27            fedora     30 k
                               perl-URI                  noarch   1.72-1.fc27                 fedora    114 k
                               perl-Unicode-Normalize    x86_64   1.25-395.fc27               fedora     80 k
                               perl-constant             noarch   1.33-395.fc27               fedora     24 k
                               perl-interpreter          x86_64   4:5.26.1-402.fc27           updates   6.2 M
                               perl-libnet               noarch   3.11-1.fc27                 updates   119 k
                               perl-libs                 x86_64   4:5.26.1-402.fc27           updates   1.5 M
                               perl-macros               x86_64   4:5.26.1-402.fc27           updates    68 k
                               perl-parent               noarch   1:0.236-394.fc27            fedora     18 k
                               perl-podlators            noarch   4.09-395.fc27               updates   115 k
                               perl-threads              x86_64   1:2.21-1.fc27               updates    60 k
                               perl-threads-shared       x86_64   1.58-1.fc27                 updates    46 k
                               php                       x86_64   7.1.14-1.fc27               updates   2.8 M
                               php-bcmath                x86_64   7.1.14-1.fc27               updates    81 k
                               php-cli                   x86_64   7.1.14-1.fc27               updates   4.2 M
                               php-common                x86_64   7.1.14-1.fc27               updates   1.0 M
                               php-gd                    x86_64   7.1.14-1.fc27               updates    87 k
                               php-json                  x86_64   7.1.14-1.fc27               updates    72 k
                               php-ldap                  x86_64   7.1.14-1.fc27               updates    79 k
                               php-mbstring              x86_64   7.1.14-1.fc27               updates   594 k
                               php-mysqlnd               x86_64   7.1.14-1.fc27               updates   243 k
                               php-pdo                   x86_64   7.1.14-1.fc27               updates   137 k
                               php-xml                   x86_64   7.1.14-1.fc27               updates   226 k
                               psmisc                    x86_64   23.1-2.fc27                 fedora    148 k
                               sscg                      x86_64   2.3.3-1.fc27                updates    38 k
                               traceroute                x86_64   3:2.1.0-5.fc27              fedora     65 k
                               unixODBC                  x86_64   2.3.4-7.fc27                fedora    438 k
                               web-assets-filesystem     noarch   5-6.fc27                    fedora    8.3 k
                               web-assets-httpd          noarch   5-6.fc27                    fedora    9.5 k
                               zabbix                    x86_64   3.0.14-1.fc27               updates   290 k
                               zabbix-dbfiles-mysql      noarch   3.0.14-1.fc27               updates   1.1 M
                               zabbix-server             noarch   3.0.14-1.fc27               updates    27 k
                               zabbix-web                noarch   3.0.14-1.fc27               updates   3.4 M
                              Installing weak dependencies:
                               mariadb-backup            x86_64   3:10.2.12-5.fc27            updates   5.8 M
                               mariadb-gssapi-server     x86_64   3:10.2.12-5.fc27            updates    44 k
                               mariadb-rocksdb-engine    x86_64   3:10.2.12-5.fc27            updates   4.0 M
                               mariadb-server-utils      x86_64   3:10.2.12-5.fc27            updates   1.6 M
                               mariadb-tokudb-engine     x86_64   3:10.2.12-5.fc27            updates   831 k
                               perl-IO-Socket-SSL        noarch   2.051-1.fc27                fedora    271 k
                               perl-Mozilla-CA           noarch   20160104-6.fc27             fedora     14 k
                               php-fpm                   x86_64   7.1.14-1.fc27               updates   1.5 M
                              
                              Transaction Summary
                              ================================================================================
                              Install  112 Packages
                              
                              Total download size: 76 M
                              Installed size: 316 M
                              Downloading Packages:
                              (1/112): zabbix-server-3.0.14-1.fc27.noarch.rpm  68 kB/s |  27 kB     00:00
                              (2/112): iksemel-1.5-0.1.git978b733.fc26.x86_64 310 kB/s |  54 kB     00:00
                              (3/112): zabbix-3.0.14-1.fc27.x86_64.rpm        418 kB/s | 290 kB     00:00
                              (4/112): fping-4.0-4.fc27.x86_64.rpm            344 kB/s |  40 kB     00:00
                              (5/112): unixODBC-2.3.4-7.fc27.x86_64.rpm       1.2 MB/s | 438 kB     00:00
                              (6/112): zabbix-web-mysql-3.0.14-1.fc27.noarch. 464 kB/s |  17 kB     00:00
                              (7/112): traceroute-2.1.0-5.fc27.x86_64.rpm     371 kB/s |  65 kB     00:00
                              (8/112): zabbix-server-mysql-3.0.14-1.fc27.x86_ 518 kB/s | 537 kB     00:01
                              (9/112): js-jquery1-1.12.4-4.fc27.noarch.rpm    352 kB/s | 185 kB     00:00
                              (10/112): web-assets-httpd-5-6.fc27.noarch.rpm  132 kB/s | 9.5 kB     00:00
                              (11/112): dejavu-fonts-common-2.35-5.fc27.noarc 344 kB/s |  72 kB     00:00
                              (12/112): web-assets-filesystem-5-6.fc27.noarch 216 kB/s | 8.3 kB     00:00
                              (13/112): fontpackages-filesystem-1.44-19.fc27. 465 kB/s |  14 kB     00:00
                              (14/112): mod_ssl-2.4.29-1.fc27.x86_64.rpm      466 kB/s | 114 kB     00:00
                              (15/112): dejavu-sans-fonts-2.35-5.fc27.noarch. 699 kB/s | 1.5 MB     00:02
                              (16/112): httpd-filesystem-2.4.29-1.fc27.noarch 573 kB/s |  25 kB     00:00
                              (17/112): httpd-tools-2.4.29-1.fc27.x86_64.rpm  918 kB/s |  89 kB     00:00
                              (18/112): mailcap-2.1.48-2.fc27.noarch.rpm      362 kB/s |  37 kB     00:00
                              (19/112): httpd-2.4.29-1.fc27.x86_64.rpm        881 kB/s | 1.3 MB     00:01
                              (20/112): mariadb-common-10.2.12-5.fc27.x86_64. 686 kB/s |  64 kB     00:00
                              (21/112): mariadb-errmsg-10.2.12-5.fc27.x86_64. 823 kB/s | 225 kB     00:00
                              (22/112): zabbix-web-3.0.14-1.fc27.noarch.rpm   930 kB/s | 3.4 MB     00:03
                              (23/112): bison-3.0.4-8.fc27.x86_64.rpm         887 kB/s | 684 kB     00:00
                              (24/112): psmisc-23.1-2.fc27.x86_64.rpm         641 kB/s | 148 kB     00:00
                              (25/112): m4-1.4.18-5.fc27.x86_64.rpm           895 kB/s | 219 kB     00:00
                              (26/112): php-mysqlnd-7.1.14-1.fc27.x86_64.rpm  573 kB/s | 243 kB     00:00
                              (27/112): php-pdo-7.1.14-1.fc27.x86_64.rpm      554 kB/s | 137 kB     00:00
                              (28/112): compat-openssl10-1.0.2m-1.fc27.x86_64 662 kB/s | 1.1 MB     00:01
                              (29/112): php-json-7.1.14-1.fc27.x86_64.rpm     543 kB/s |  72 kB     00:00
                              (30/112): php-common-7.1.14-1.fc27.x86_64.rpm   759 kB/s | 1.0 MB     00:01
                              (31/112): php-xml-7.1.14-1.fc27.x86_64.rpm      603 kB/s | 226 kB     00:00
                              (32/112): php-ldap-7.1.14-1.fc27.x86_64.rpm     409 kB/s |  79 kB     00:00
                              (33/112): php-gd-7.1.14-1.fc27.x86_64.rpm       447 kB/s |  87 kB     00:00
                              (34/112): php-bcmath-7.1.14-1.fc27.x86_64.rpm   432 kB/s |  81 kB     00:00
                              (35/112): php-mbstring-7.1.14-1.fc27.x86_64.rpm 467 kB/s | 594 kB     00:01
                              (36/112): libxslt-1.1.29-4.fc27.x86_64.rpm      451 kB/s | 252 kB     00:00
                              (37/112): gd-2.2.5-1.fc27.x86_64.rpm            453 kB/s | 142 kB     00:00
                              (38/112): libX11-1.6.5-4.fc27.x86_64.rpm        554 kB/s | 616 kB     00:01
                              (39/112): libXpm-3.5.12-4.fc27.x86_64.rpm       893 kB/s |  56 kB     00:00
                              (40/112): php-7.1.14-1.fc27.x86_64.rpm          565 kB/s | 2.8 MB     00:05
                              (41/112): libX11-common-1.6.5-4.fc27.noarch.rpm 420 kB/s | 166 kB     00:00
                              (42/112): libxcb-1.12-5.fc27.x86_64.rpm         524 kB/s | 224 kB     00:00
                              (43/112): libXau-1.0.8-9.fc27.x86_64.rpm        510 kB/s |  33 kB     00:00
                              (44/112): OpenIPMI-libs-2.0.23-6.fc27.x86_64.rp 620 kB/s | 535 kB     00:00
                              (45/112): php-cli-7.1.14-1.fc27.x86_64.rpm      860 kB/s | 4.2 MB     00:05
                              (46/112): net-snmp-libs-5.7.3-26.fc27.x86_64.rp 613 kB/s | 794 kB     00:01
                              (47/112): logrotate-3.12.3-4.fc27.x86_64.rpm    570 kB/s |  79 kB     00:00
                              (48/112): libjpeg-turbo-1.5.3-1.fc27.x86_64.rpm 612 kB/s | 153 kB     00:00
                              (49/112): sscg-2.3.3-1.fc27.x86_64.rpm          542 kB/s |  38 kB     00:00
                              (50/112): mariadb-config-10.2.12-5.fc27.x86_64. 551 kB/s |  38 kB     00:00
                              (51/112): apr-1.6.3-1.fc27.x86_64.rpm           622 kB/s | 121 kB     00:00
                              (52/112): apr-util-1.6.1-2.fc27.x86_64.rpm      523 kB/s | 102 kB     00:00
                              (53/112): zabbix-dbfiles-mysql-3.0.14-1.fc27.no 785 kB/s | 1.1 MB     00:01
                              (54/112): mod_http2-1.10.13-1.fc27.x86_64.rpm   434 kB/s | 151 kB     00:00
                              (55/112): fontconfig-2.12.6-4.fc27.x86_64.rpm   969 kB/s | 253 kB     00:00
                              (56/112): jbigkit-libs-2.1-8.fc27.x86_64.rpm    724 kB/s |  52 kB     00:00
                              (57/112): libtiff-4.0.9-2.fc27.x86_64.rpm       400 kB/s | 184 kB     00:00
                              (58/112): libwebp-0.6.1-1.fc27.x86_64.rpm       938 kB/s | 265 kB     00:00
                              (59/112): mariadb-libs-10.2.12-5.fc27.x86_64.rp 981 kB/s | 154 kB     00:00
                              (60/112): perl-Exporter-5.72-395.fc27.noarch.rp 626 kB/s |  32 kB     00:00
                              (61/112): perl-File-Temp-0.230.400-394.fc27.noa 668 kB/s |  61 kB     00:00
                              (62/112): perl-Getopt-Long-2.50-3.fc27.noarch.r 644 kB/s |  61 kB     00:00
                              (63/112): perl-Carp-1.42-394.fc27.noarch.rpm    476 kB/s |  28 kB     00:00
                              (64/112): perl-File-Path-2.15-1.fc27.noarch.rpm 501 kB/s |  37 kB     00:00
                              (65/112): perl-PathTools-3.67-395.fc27.x86_64.r 702 kB/s |  88 kB     00:00
                              (66/112): perl-Scalar-List-Utils-1.48-1.fc27.x8 706 kB/s |  65 kB     00:00
                              (67/112): perl-constant-1.33-395.fc27.noarch.rp 463 kB/s |  24 kB     00:00
                              (68/112): perl-parent-0.236-394.fc27.noarch.rpm 584 kB/s |  18 kB     00:00
                              (69/112): perl-Pod-Usage-1.69-394.fc27.noarch.r 557 kB/s |  33 kB     00:00
                              (70/112): perl-Text-ParseWords-3.30-394.fc27.no 522 kB/s |  16 kB     00:00
                              (71/112): perl-Pod-Perldoc-3.28-395.fc27.noarch 945 kB/s |  87 kB     00:00
                              (72/112): perl-HTTP-Tiny-0.070-394.fc27.noarch. 701 kB/s |  56 kB     00:00
                              (73/112): perl-Pod-Simple-3.35-394.fc27.noarch. 1.1 MB/s | 211 kB     00:00
                              (74/112): perl-MIME-Base64-3.15-395.fc27.x86_64 767 kB/s |  29 kB     00:00
                              (75/112): perl-Time-Local-1.250-394.fc27.noarch 949 kB/s |  30 kB     00:00
                              (76/112): perl-Pod-Escapes-1.07-394.fc27.noarch 551 kB/s |  19 kB     00:00
                              (77/112): perl-Text-Tabs+Wrap-2013.0523-394.fc2 651 kB/s |  23 kB     00:00
                              (78/112): mariadb-10.2.12-5.fc27.x86_64.rpm     707 kB/s | 6.2 MB     00:09
                              (79/112): perl-interpreter-5.26.1-402.fc27.x86_ 732 kB/s | 6.2 MB     00:08
                              (80/112): perl-Unicode-Normalize-1.25-395.fc27. 535 kB/s |  80 kB     00:00
                              (81/112): perl-Errno-1.28-402.fc27.x86_64.rpm   597 kB/s |  72 kB     00:00
                              (82/112): fedora-logos-httpd-28.0.2-1.fc27.noar 510 kB/s |  33 kB     00:00
                              (83/112): perl-podlators-4.09-395.fc27.noarch.r 781 kB/s | 115 kB     00:00
                              (84/112): perl-Term-ANSIColor-4.06-395.fc27.noa 448 kB/s |  44 kB     00:00
                              (85/112): mariadb-server-10.2.12-5.fc27.x86_64. 715 kB/s |  17 MB     00:24
                              (86/112): perl-Term-Cap-1.17-394.fc27.noarch.rp 179 kB/s |  21 kB     00:00
                              (87/112): perl-Storable-2.62-395.fc27.x86_64.rp 558 kB/s |  84 kB     00:00
                              (88/112): perl-libs-5.26.1-402.fc27.x86_64.rpm  735 kB/s | 1.5 MB     00:02
                              (89/112): perl-IO-1.38-402.fc27.x86_64.rpm      720 kB/s | 137 kB     00:00
                              (90/112): perl-Socket-2.027-1.fc27.x86_64.rpm   532 kB/s |  57 kB     00:00
                              (91/112): perl-macros-5.26.1-402.fc27.x86_64.rp 735 kB/s |  68 kB     00:00
                              (92/112): perl-threads-shared-1.58-1.fc27.x86_6 655 kB/s |  46 kB     00:00
                              (93/112): perl-threads-2.21-1.fc27.x86_64.rpm   589 kB/s |  60 kB     00:00
                              (94/112): mariadb-gssapi-server-10.2.12-5.fc27. 683 kB/s |  44 kB     00:00
                              (95/112): perl-Encode-2.94-16.fc27.x86_64.rpm   913 kB/s | 1.5 MB     00:01
                              (96/112): mariadb-server-utils-10.2.12-5.fc27.x 899 kB/s | 1.6 MB     00:01
                              (97/112): perl-DBI-1.637-1.fc27.x86_64.rpm      651 kB/s | 734 kB     00:01
                              (98/112): perl-Math-BigInt-1.9998.11-4.fc27.noa 435 kB/s | 194 kB     00:00
                              (99/112): mariadb-rocksdb-engine-10.2.12-5.fc27 832 kB/s | 4.0 MB     00:04
                              (100/112): mariadb-tokudb-engine-10.2.12-5.fc27 592 kB/s | 831 kB     00:01
                              (101/112): nginx-filesystem-1.12.1-1.fc27.noarc 580 kB/s |  20 kB     00:00
                              (102/112): perl-Mozilla-CA-20160104-6.fc27.noar 353 kB/s |  14 kB     00:00
                              (103/112): mariadb-backup-10.2.12-5.fc27.x86_64 952 kB/s | 5.8 MB     00:06
                              (104/112): perl-IO-Socket-SSL-2.051-1.fc27.noar 689 kB/s | 271 kB     00:00
                              (105/112): perl-IO-Socket-IP-0.39-4.fc27.noarch 281 kB/s |  45 kB     00:00
                              (106/112): perl-URI-1.72-1.fc27.noarch.rpm      896 kB/s | 114 kB     00:00
                              (107/112): perl-Data-Dumper-2.167-398.fc27.x86_ 912 kB/s |  56 kB     00:00
                              (108/112): php-fpm-7.1.14-1.fc27.x86_64.rpm     884 kB/s | 1.5 MB     00:01
                              (109/112): perl-libnet-3.11-1.fc27.noarch.rpm   942 kB/s | 119 kB     00:00
                              (110/112): perl-Net-SSLeay-1.81-4.fc27.x86_64.r 868 kB/s | 334 kB     00:00
                              (111/112): perl-Math-Complex-1.59-402.fc27.noar 507 kB/s | 104 kB     00:00
                              (112/112): perl-DBD-MySQL-4.043-6.fc27.x86_64.r 990 kB/s | 154 kB     00:00
                              --------------------------------------------------------------------------------
                              Total                                           2.1 MB/s |  76 MB     00:36
                              Running transaction check
                              Transaction check succeeded.
                              Running transaction test
                              Transaction test succeeded.
                              Running transaction
                                Preparing        :                                                        1/1
                                Installing       : perl-Carp-1.42-394.fc27.noarch                       1/112
                                Installing       : perl-libs-4:5.26.1-402.fc27.x86_64                   2/112
                                Running scriptlet: perl-libs-4:5.26.1-402.fc27.x86_64                   2/112
                                Installing       : perl-Exporter-5.72-395.fc27.noarch                   3/112
                                Installing       : php-json-7.1.14-1.fc27.x86_64                        4/112
                                Installing       : php-common-7.1.14-1.fc27.x86_64                      5/112
                                Installing       : perl-Scalar-List-Utils-3:1.48-1.fc27.x86_64          6/112
                                Running scriptlet: httpd-filesystem-2.4.29-1.fc27.noarch                7/112
                                Installing       : httpd-filesystem-2.4.29-1.fc27.noarch                7/112
                                Installing       : apr-1.6.3-1.fc27.x86_64                              8/112
                                Running scriptlet: apr-1.6.3-1.fc27.x86_64                              8/112
                                Installing       : libjpeg-turbo-1.5.3-1.fc27.x86_64                    9/112
                                Running scriptlet: libjpeg-turbo-1.5.3-1.fc27.x86_64                    9/112
                                Installing       : apr-util-1.6.1-2.fc27.x86_64                        10/112
                                Running scriptlet: apr-util-1.6.1-2.fc27.x86_64                        10/112
                                Installing       : perl-Text-ParseWords-3.30-394.fc27.noarch           11/112
                                Installing       : mariadb-config-3:10.2.12-5.fc27.x86_64              12/112
                                Installing       : mariadb-common-3:10.2.12-5.fc27.x86_64              13/112
                                Installing       : mariadb-libs-3:10.2.12-5.fc27.x86_64                14/112
                                Running scriptlet: mariadb-libs-3:10.2.12-5.fc27.x86_64                14/112
                                Installing       : fontpackages-filesystem-1.44-19.fc27.noarch         15/112
                                Installing       : web-assets-filesystem-5-6.fc27.noarch               16/112
                                Installing       : js-jquery1-1.12.4-4.fc27.noarch                     17/112
                                Installing       : dejavu-fonts-common-2.35-5.fc27.noarch              18/112
                                Installing       : dejavu-sans-fonts-2.35-5.fc27.noarch                19/112
                                Installing       : fontconfig-2.12.6-4.fc27.x86_64                     20/112
                                Running scriptlet: fontconfig-2.12.6-4.fc27.x86_64                     20/112
                                Installing       : mariadb-errmsg-3:10.2.12-5.fc27.x86_64              21/112
                                Installing       : httpd-tools-2.4.29-1.fc27.x86_64                    22/112
                                Installing       : php-pdo-7.1.14-1.fc27.x86_64                        23/112
                                Installing       : php-mysqlnd-7.1.14-1.fc27.x86_64                    24/112
                                Installing       : php-mbstring-7.1.14-1.fc27.x86_64                   25/112
                                Installing       : php-ldap-7.1.14-1.fc27.x86_64                       26/112
                                Installing       : php-bcmath-7.1.14-1.fc27.x86_64                     27/112
                                Installing       : php-cli-7.1.14-1.fc27.x86_64                        28/112
                                Installing       : perl-Term-ANSIColor-4.06-395.fc27.noarch            29/112
                                Installing       : perl-macros-4:5.26.1-402.fc27.x86_64                30/112
                                Installing       : perl-File-Path-2.15-1.fc27.noarch                   31/112
                                Installing       : perl-PathTools-3.67-395.fc27.x86_64                 32/112
                                Installing       : perl-constant-1.33-395.fc27.noarch                  33/112
                                Installing       : perl-parent-1:0.236-394.fc27.noarch                 34/112
                                Installing       : perl-Text-Tabs+Wrap-2013.0523-394.fc27.noarch       35/112
                                Installing       : perl-Unicode-Normalize-1.25-395.fc27.x86_64         36/112
                                Installing       : perl-Errno-1.28-402.fc27.x86_64                     37/112
                                Installing       : perl-threads-shared-1.58-1.fc27.x86_64              38/112
                                Installing       : perl-threads-1:2.21-1.fc27.x86_64                   39/112
                                Installing       : perl-interpreter-4:5.26.1-402.fc27.x86_64           40/112
                                Installing       : perl-Socket-4:2.027-1.fc27.x86_64                   41/112
                                Installing       : perl-IO-1.38-402.fc27.x86_64                        42/112
                                Installing       : perl-MIME-Base64-3.15-395.fc27.x86_64               43/112
                                Installing       : perl-File-Temp-0.230.400-394.fc27.noarch            44/112
                                Installing       : perl-Data-Dumper-2.167-398.fc27.x86_64              45/112
                                Installing       : perl-Storable-1:2.62-395.fc27.x86_64                46/112
                                Installing       : perl-IO-Socket-IP-0.39-4.fc27.noarch                47/112
                                Installing       : perl-Time-Local-1:1.250-394.fc27.noarch             48/112
                                Installing       : perl-HTTP-Tiny-0.070-394.fc27.noarch                49/112
                                Installing       : perl-libnet-3.11-1.fc27.noarch                      50/112
                                Installing       : perl-Net-SSLeay-1.81-4.fc27.x86_64                  51/112
                                Installing       : perl-Pod-Escapes-1:1.07-394.fc27.noarch             52/112
                                Installing       : perl-Term-Cap-1.17-394.fc27.noarch                  53/112
                                Installing       : perl-Pod-Simple-1:3.35-394.fc27.noarch              54/112
                                Installing       : perl-Getopt-Long-1:2.50-3.fc27.noarch               55/112
                                Installing       : perl-Encode-4:2.94-16.fc27.x86_64                   56/112
                                Installing       : perl-Pod-Usage-4:1.69-394.fc27.noarch               57/112
                                Installing       : perl-podlators-4.09-395.fc27.noarch                 58/112
                                Installing       : perl-Pod-Perldoc-3.28-395.fc27.noarch               59/112
                                Installing       : perl-URI-1.72-1.fc27.noarch                         60/112
                                Installing       : mariadb-3:10.2.12-5.fc27.x86_64                     61/112
                                Installing       : perl-Math-Complex-1.59-402.fc27.noarch              62/112
                                Installing       : perl-Math-BigInt-1:1.9998.11-4.fc27.noarch          63/112
                                Installing       : perl-DBI-1.637-1.fc27.x86_64                        64/112
                                Installing       : perl-DBD-MySQL-4.043-6.fc27.x86_64                  65/112
                                Running scriptlet: nginx-filesystem-1:1.12.1-1.fc27.noarch             66/112
                                Installing       : nginx-filesystem-1:1.12.1-1.fc27.noarch             66/112
                                Installing       : fedora-logos-httpd-28.0.2-1.fc27.noarch             67/112
                                Installing       : libwebp-0.6.1-1.fc27.x86_64                         68/112
                                Running scriptlet: libwebp-0.6.1-1.fc27.x86_64                         68/112
                                Installing       : jbigkit-libs-2.1-8.fc27.x86_64                      69/112
                                Running scriptlet: jbigkit-libs-2.1-8.fc27.x86_64                      69/112
                                Installing       : libtiff-4.0.9-2.fc27.x86_64                         70/112
                                Running scriptlet: libtiff-4.0.9-2.fc27.x86_64                         70/112
                                Installing       : sscg-2.3.3-1.fc27.x86_64                            71/112
                                Running scriptlet: logrotate-3.12.3-4.fc27.x86_64                      72/112
                                Installing       : logrotate-3.12.3-4.fc27.x86_64                      72/112
                                Installing       : zabbix-3.0.14-1.fc27.x86_64                         73/112
                                Installing       : zabbix-dbfiles-mysql-3.0.14-1.fc27.noarch           74/112
                                Installing       : net-snmp-libs-1:5.7.3-26.fc27.x86_64                75/112
                                Running scriptlet: net-snmp-libs-1:5.7.3-26.fc27.x86_64                75/112
                                Installing       : OpenIPMI-libs-2.0.23-6.fc27.x86_64                  76/112
                                Running scriptlet: OpenIPMI-libs-2.0.23-6.fc27.x86_64                  76/112
                                Installing       : libXau-1.0.8-9.fc27.x86_64                          77/112
                                Running scriptlet: libXau-1.0.8-9.fc27.x86_64                          77/112
                                Installing       : libxcb-1.12-5.fc27.x86_64                           78/112
                                Running scriptlet: libxcb-1.12-5.fc27.x86_64                           78/112
                                Installing       : libX11-common-1.6.5-4.fc27.noarch                   79/112
                                Installing       : libX11-1.6.5-4.fc27.x86_64                          80/112
                                Running scriptlet: libX11-1.6.5-4.fc27.x86_64                          80/112
                                Installing       : libXpm-3.5.12-4.fc27.x86_64                         81/112
                                Running scriptlet: libXpm-3.5.12-4.fc27.x86_64                         81/112
                                Installing       : gd-2.2.5-1.fc27.x86_64                              82/112
                                Running scriptlet: gd-2.2.5-1.fc27.x86_64                              82/112
                                Installing       : php-gd-7.1.14-1.fc27.x86_64                         83/112
                                Installing       : libxslt-1.1.29-4.fc27.x86_64                        84/112
                                Running scriptlet: libxslt-1.1.29-4.fc27.x86_64                        84/112
                                Installing       : php-xml-7.1.14-1.fc27.x86_64                        85/112
                                Installing       : compat-openssl10-1:1.0.2m-1.fc27.x86_64             86/112
                                Running scriptlet: compat-openssl10-1:1.0.2m-1.fc27.x86_64             86/112
                                Installing       : iksemel-1.5-0.1.git978b733.fc26.x86_64              87/112
                                Running scriptlet: iksemel-1.5-0.1.git978b733.fc26.x86_64              87/112
                                Installing       : m4-1.4.18-5.fc27.x86_64                             88/112
                                Running scriptlet: m4-1.4.18-5.fc27.x86_64                             88/112
                                Installing       : bison-3.0.4-8.fc27.x86_64                           89/112
                                Running scriptlet: bison-3.0.4-8.fc27.x86_64                           89/112
                                Installing       : psmisc-23.1-2.fc27.x86_64                           90/112
                                Running scriptlet: mariadb-server-3:10.2.12-5.fc27.x86_64              91/112
                                Installing       : mariadb-server-3:10.2.12-5.fc27.x86_64              91/112
                                Running scriptlet: mariadb-server-3:10.2.12-5.fc27.x86_64              91/112
                                Installing       : mailcap-2.1.48-2.fc27.noarch                        92/112
                                Installing       : mod_http2-1.10.13-1.fc27.x86_64                     93/112
                                Installing       : httpd-2.4.29-1.fc27.x86_64                          94/112
                                Running scriptlet: httpd-2.4.29-1.fc27.x86_64                          94/112
                                Installing       : web-assets-httpd-5-6.fc27.noarch                    95/112
                                Running scriptlet: web-assets-httpd-5-6.fc27.noarch                    95/112
                                Installing       : php-7.1.14-1.fc27.x86_64                            96/112
                                Installing       : zabbix-web-mysql-3.0.14-1.fc27.noarch               97/112
                                Installing       : zabbix-web-3.0.14-1.fc27.noarch                     98/112
                                Installing       : traceroute-3:2.1.0-5.fc27.x86_64                    99/112
                                Installing       : fping-4.0-4.fc27.x86_64                            100/112
                                Installing       : unixODBC-2.3.4-7.fc27.x86_64                       101/112
                                Running scriptlet: unixODBC-2.3.4-7.fc27.x86_64                       101/112
                                Running scriptlet: zabbix-server-3.0.14-1.fc27.noarch                 102/112
                                Installing       : zabbix-server-3.0.14-1.fc27.noarch                 102/112
                                Running scriptlet: zabbix-server-3.0.14-1.fc27.noarch                 102/112
                                Installing       : zabbix-server-mysql-3.0.14-1.fc27.x86_64           103/112
                                Running scriptlet: zabbix-server-mysql-3.0.14-1.fc27.x86_64           103/112
                                Installing       : mod_ssl-1:2.4.29-1.fc27.x86_64                     104/112
                                Installing       : mariadb-backup-3:10.2.12-5.fc27.x86_64             105/112
                                Installing       : mariadb-gssapi-server-3:10.2.12-5.fc27.x86_64      106/112
                                Installing       : mariadb-rocksdb-engine-3:10.2.12-5.fc27.x86_64     107/112
                                Installing       : mariadb-server-utils-3:10.2.12-5.fc27.x86_64       108/112
                                Installing       : mariadb-tokudb-engine-3:10.2.12-5.fc27.x86_64      109/112
                                Installing       : php-fpm-7.1.14-1.fc27.x86_64                       110/112
                                Running scriptlet: php-fpm-7.1.14-1.fc27.x86_64                       110/112
                                Installing       : perl-IO-Socket-SSL-2.051-1.fc27.noarch             111/112
                                Installing       : perl-Mozilla-CA-20160104-6.fc27.noarch             112/112
                                Running scriptlet: httpd-2.4.29-1.fc27.x86_64                         112/112
                                Running scriptlet: perl-Mozilla-CA-20160104-6.fc27.noarch             112/112
                              Running as unit: run-r2110bb278e4c432391b296994d059174.service
                                Running scriptlet: fontconfig-2.12.6-4.fc27.x86_64                    112/112
                                Verifying        : zabbix-server-mysql-3.0.14-1.fc27.x86_64             1/112
                                Verifying        : zabbix-3.0.14-1.fc27.x86_64                          2/112
                                Verifying        : zabbix-server-3.0.14-1.fc27.noarch                   3/112
                                Verifying        : iksemel-1.5-0.1.git978b733.fc26.x86_64               4/112
                                Verifying        : unixODBC-2.3.4-7.fc27.x86_64                         5/112
                                Verifying        : fping-4.0-4.fc27.x86_64                              6/112
                                Verifying        : traceroute-3:2.1.0-5.fc27.x86_64                     7/112
                                Verifying        : zabbix-web-mysql-3.0.14-1.fc27.noarch                8/112
                                Verifying        : zabbix-web-3.0.14-1.fc27.noarch                      9/112
                                Verifying        : dejavu-sans-fonts-2.35-5.fc27.noarch                10/112
                                Verifying        : js-jquery1-1.12.4-4.fc27.noarch                     11/112
                                Verifying        : web-assets-httpd-5-6.fc27.noarch                    12/112
                                Verifying        : dejavu-fonts-common-2.35-5.fc27.noarch              13/112
                                Verifying        : web-assets-filesystem-5-6.fc27.noarch               14/112
                                Verifying        : fontpackages-filesystem-1.44-19.fc27.noarch         15/112
                                Verifying        : mod_ssl-1:2.4.29-1.fc27.x86_64                      16/112
                                Verifying        : httpd-2.4.29-1.fc27.x86_64                          17/112
                                Verifying        : httpd-filesystem-2.4.29-1.fc27.noarch               18/112
                                Verifying        : httpd-tools-2.4.29-1.fc27.x86_64                    19/112
                                Verifying        : mailcap-2.1.48-2.fc27.noarch                        20/112
                                Verifying        : mariadb-server-3:10.2.12-5.fc27.x86_64              21/112
                                Verifying        : mariadb-common-3:10.2.12-5.fc27.x86_64              22/112
                                Verifying        : mariadb-errmsg-3:10.2.12-5.fc27.x86_64              23/112
                                Verifying        : bison-3.0.4-8.fc27.x86_64                           24/112
                                Verifying        : psmisc-23.1-2.fc27.x86_64                           25/112
                                Verifying        : m4-1.4.18-5.fc27.x86_64                             26/112
                                Verifying        : compat-openssl10-1:1.0.2m-1.fc27.x86_64             27/112
                                Verifying        : php-mysqlnd-7.1.14-1.fc27.x86_64                    28/112
                                Verifying        : php-pdo-7.1.14-1.fc27.x86_64                        29/112
                                Verifying        : php-common-7.1.14-1.fc27.x86_64                     30/112
                                Verifying        : php-json-7.1.14-1.fc27.x86_64                       31/112
                                Verifying        : php-xml-7.1.14-1.fc27.x86_64                        32/112
                                Verifying        : php-mbstring-7.1.14-1.fc27.x86_64                   33/112
                                Verifying        : php-ldap-7.1.14-1.fc27.x86_64                       34/112
                                Verifying        : php-gd-7.1.14-1.fc27.x86_64                         35/112
                                Verifying        : php-bcmath-7.1.14-1.fc27.x86_64                     36/112
                                Verifying        : php-7.1.14-1.fc27.x86_64                            37/112
                                Verifying        : libxslt-1.1.29-4.fc27.x86_64                        38/112
                                Verifying        : gd-2.2.5-1.fc27.x86_64                              39/112
                                Verifying        : libX11-1.6.5-4.fc27.x86_64                          40/112
                                Verifying        : libXpm-3.5.12-4.fc27.x86_64                         41/112
                                Verifying        : php-cli-7.1.14-1.fc27.x86_64                        42/112
                                Verifying        : libX11-common-1.6.5-4.fc27.noarch                   43/112
                                Verifying        : libxcb-1.12-5.fc27.x86_64                           44/112
                                Verifying        : libXau-1.0.8-9.fc27.x86_64                          45/112
                                Verifying        : OpenIPMI-libs-2.0.23-6.fc27.x86_64                  46/112
                                Verifying        : net-snmp-libs-1:5.7.3-26.fc27.x86_64                47/112
                                Verifying        : zabbix-dbfiles-mysql-3.0.14-1.fc27.noarch           48/112
                                Verifying        : logrotate-3.12.3-4.fc27.x86_64                      49/112
                                Verifying        : libjpeg-turbo-1.5.3-1.fc27.x86_64                   50/112
                                Verifying        : sscg-2.3.3-1.fc27.x86_64                            51/112
                                Verifying        : mariadb-config-3:10.2.12-5.fc27.x86_64              52/112
                                Verifying        : apr-1.6.3-1.fc27.x86_64                             53/112
                                Verifying        : apr-util-1.6.1-2.fc27.x86_64                        54/112
                                Verifying        : mod_http2-1.10.13-1.fc27.x86_64                     55/112
                                Verifying        : fontconfig-2.12.6-4.fc27.x86_64                     56/112
                                Verifying        : libtiff-4.0.9-2.fc27.x86_64                         57/112
                                Verifying        : jbigkit-libs-2.1-8.fc27.x86_64                      58/112
                                Verifying        : libwebp-0.6.1-1.fc27.x86_64                         59/112
                                Verifying        : mariadb-libs-3:10.2.12-5.fc27.x86_64                60/112
                                Verifying        : mariadb-3:10.2.12-5.fc27.x86_64                     61/112
                                Verifying        : perl-Exporter-5.72-395.fc27.noarch                  62/112
                                Verifying        : perl-File-Temp-0.230.400-394.fc27.noarch            63/112
                                Verifying        : perl-Getopt-Long-1:2.50-3.fc27.noarch               64/112
                                Verifying        : perl-Carp-1.42-394.fc27.noarch                      65/112
                                Verifying        : perl-File-Path-2.15-1.fc27.noarch                   66/112
                                Verifying        : perl-PathTools-3.67-395.fc27.x86_64                 67/112
                                Verifying        : perl-Scalar-List-Utils-3:1.48-1.fc27.x86_64         68/112
                                Verifying        : perl-constant-1.33-395.fc27.noarch                  69/112
                                Verifying        : perl-parent-1:0.236-394.fc27.noarch                 70/112
                                Verifying        : perl-Pod-Usage-4:1.69-394.fc27.noarch               71/112
                                Verifying        : perl-Text-ParseWords-3.30-394.fc27.noarch           72/112
                                Verifying        : perl-Pod-Perldoc-3.28-395.fc27.noarch               73/112
                                Verifying        : perl-HTTP-Tiny-0.070-394.fc27.noarch                74/112
                                Verifying        : perl-Pod-Simple-1:3.35-394.fc27.noarch              75/112
                                Verifying        : perl-MIME-Base64-3.15-395.fc27.x86_64               76/112
                                Verifying        : perl-Time-Local-1:1.250-394.fc27.noarch             77/112
                                Verifying        : perl-Pod-Escapes-1:1.07-394.fc27.noarch             78/112
                                Verifying        : perl-Text-Tabs+Wrap-2013.0523-394.fc27.noarch       79/112
                                Verifying        : perl-interpreter-4:5.26.1-402.fc27.x86_64           80/112
                                Verifying        : perl-libs-4:5.26.1-402.fc27.x86_64                  81/112
                                Verifying        : perl-Unicode-Normalize-1.25-395.fc27.x86_64         82/112
                                Verifying        : perl-Errno-1.28-402.fc27.x86_64                     83/112
                                Verifying        : fedora-logos-httpd-28.0.2-1.fc27.noarch             84/112
                                Verifying        : perl-podlators-4.09-395.fc27.noarch                 85/112
                                Verifying        : perl-Term-ANSIColor-4.06-395.fc27.noarch            86/112
                                Verifying        : perl-Term-Cap-1.17-394.fc27.noarch                  87/112
                                Verifying        : perl-Encode-4:2.94-16.fc27.x86_64                   88/112
                                Verifying        : perl-Storable-1:2.62-395.fc27.x86_64                89/112
                                Verifying        : perl-IO-1.38-402.fc27.x86_64                        90/112
                                Verifying        : perl-Socket-4:2.027-1.fc27.x86_64                   91/112
                                Verifying        : perl-macros-4:5.26.1-402.fc27.x86_64                92/112
                                Verifying        : perl-threads-1:2.21-1.fc27.x86_64                   93/112
                                Verifying        : perl-threads-shared-1.58-1.fc27.x86_64              94/112
                                Verifying        : mariadb-backup-3:10.2.12-5.fc27.x86_64              95/112
                                Verifying        : mariadb-gssapi-server-3:10.2.12-5.fc27.x86_64       96/112
                                Verifying        : mariadb-rocksdb-engine-3:10.2.12-5.fc27.x86_64      97/112
                                Verifying        : mariadb-server-utils-3:10.2.12-5.fc27.x86_64        98/112
                                Verifying        : perl-DBI-1.637-1.fc27.x86_64                        99/112
                                Verifying        : perl-Math-BigInt-1:1.9998.11-4.fc27.noarch         100/112
                                Verifying        : mariadb-tokudb-engine-3:10.2.12-5.fc27.x86_64      101/112
                                Verifying        : php-fpm-7.1.14-1.fc27.x86_64                       102/112
                                Verifying        : nginx-filesystem-1:1.12.1-1.fc27.noarch            103/112
                                Verifying        : perl-Mozilla-CA-20160104-6.fc27.noarch             104/112
                                Verifying        : perl-IO-Socket-SSL-2.051-1.fc27.noarch             105/112
                                Verifying        : perl-IO-Socket-IP-0.39-4.fc27.noarch               106/112
                                Verifying        : perl-Net-SSLeay-1.81-4.fc27.x86_64                 107/112
                                Verifying        : perl-URI-1.72-1.fc27.noarch                        108/112
                                Verifying        : perl-Data-Dumper-2.167-398.fc27.x86_64             109/112
                                Verifying        : perl-libnet-3.11-1.fc27.noarch                     110/112
                                Verifying        : perl-Math-Complex-1.59-402.fc27.noarch             111/112
                                Verifying        : perl-DBD-MySQL-4.043-6.fc27.x86_64                 112/112
                              
                              Installed:
                                mariadb-server.x86_64 3:10.2.12-5.fc27
                                mod_ssl.x86_64 1:2.4.29-1.fc27
                                zabbix-server-mysql.x86_64 3.0.14-1.fc27
                                zabbix-web-mysql.noarch 3.0.14-1.fc27
                                mariadb-backup.x86_64 3:10.2.12-5.fc27
                                mariadb-gssapi-server.x86_64 3:10.2.12-5.fc27
                                mariadb-rocksdb-engine.x86_64 3:10.2.12-5.fc27
                                mariadb-server-utils.x86_64 3:10.2.12-5.fc27
                                mariadb-tokudb-engine.x86_64 3:10.2.12-5.fc27
                                perl-IO-Socket-SSL.noarch 2.051-1.fc27
                                perl-Mozilla-CA.noarch 20160104-6.fc27
                                php-fpm.x86_64 7.1.14-1.fc27
                                OpenIPMI-libs.x86_64 2.0.23-6.fc27
                                apr.x86_64 1.6.3-1.fc27
                                apr-util.x86_64 1.6.1-2.fc27
                                bison.x86_64 3.0.4-8.fc27
                                compat-openssl10.x86_64 1:1.0.2m-1.fc27
                                dejavu-fonts-common.noarch 2.35-5.fc27
                                dejavu-sans-fonts.noarch 2.35-5.fc27
                                fedora-logos-httpd.noarch 28.0.2-1.fc27
                                fontconfig.x86_64 2.12.6-4.fc27
                                fontpackages-filesystem.noarch 1.44-19.fc27
                                fping.x86_64 4.0-4.fc27
                                gd.x86_64 2.2.5-1.fc27
                                httpd.x86_64 2.4.29-1.fc27
                                httpd-filesystem.noarch 2.4.29-1.fc27
                                httpd-tools.x86_64 2.4.29-1.fc27
                                iksemel.x86_64 1.5-0.1.git978b733.fc26
                                jbigkit-libs.x86_64 2.1-8.fc27
                                js-jquery1.noarch 1.12.4-4.fc27
                                libX11.x86_64 1.6.5-4.fc27
                                libX11-common.noarch 1.6.5-4.fc27
                                libXau.x86_64 1.0.8-9.fc27
                                libXpm.x86_64 3.5.12-4.fc27
                                libjpeg-turbo.x86_64 1.5.3-1.fc27
                                libtiff.x86_64 4.0.9-2.fc27
                                libwebp.x86_64 0.6.1-1.fc27
                                libxcb.x86_64 1.12-5.fc27
                                libxslt.x86_64 1.1.29-4.fc27
                                logrotate.x86_64 3.12.3-4.fc27
                                m4.x86_64 1.4.18-5.fc27
                                mailcap.noarch 2.1.48-2.fc27
                                mariadb.x86_64 3:10.2.12-5.fc27
                                mariadb-common.x86_64 3:10.2.12-5.fc27
                                mariadb-config.x86_64 3:10.2.12-5.fc27
                                mariadb-errmsg.x86_64 3:10.2.12-5.fc27
                                mariadb-libs.x86_64 3:10.2.12-5.fc27
                                mod_http2.x86_64 1.10.13-1.fc27
                                net-snmp-libs.x86_64 1:5.7.3-26.fc27
                                nginx-filesystem.noarch 1:1.12.1-1.fc27
                                perl-Carp.noarch 1.42-394.fc27
                                perl-DBD-MySQL.x86_64 4.043-6.fc27
                                perl-DBI.x86_64 1.637-1.fc27
                                perl-Data-Dumper.x86_64 2.167-398.fc27
                                perl-Encode.x86_64 4:2.94-16.fc27
                                perl-Errno.x86_64 1.28-402.fc27
                                perl-Exporter.noarch 5.72-395.fc27
                                perl-File-Path.noarch 2.15-1.fc27
                                perl-File-Temp.noarch 0.230.400-394.fc27
                                perl-Getopt-Long.noarch 1:2.50-3.fc27
                                perl-HTTP-Tiny.noarch 0.070-394.fc27
                                perl-IO.x86_64 1.38-402.fc27
                                perl-IO-Socket-IP.noarch 0.39-4.fc27
                                perl-MIME-Base64.x86_64 3.15-395.fc27
                                perl-Math-BigInt.noarch 1:1.9998.11-4.fc27
                                perl-Math-Complex.noarch 1.59-402.fc27
                                perl-Net-SSLeay.x86_64 1.81-4.fc27
                                perl-PathTools.x86_64 3.67-395.fc27
                                perl-Pod-Escapes.noarch 1:1.07-394.fc27
                                perl-Pod-Perldoc.noarch 3.28-395.fc27
                                perl-Pod-Simple.noarch 1:3.35-394.fc27
                                perl-Pod-Usage.noarch 4:1.69-394.fc27
                                perl-Scalar-List-Utils.x86_64 3:1.48-1.fc27
                                perl-Socket.x86_64 4:2.027-1.fc27
                                perl-Storable.x86_64 1:2.62-395.fc27
                                perl-Term-ANSIColor.noarch 4.06-395.fc27
                                perl-Term-Cap.noarch 1.17-394.fc27
                                perl-Text-ParseWords.noarch 3.30-394.fc27
                                perl-Text-Tabs+Wrap.noarch 2013.0523-394.fc27
                                perl-Time-Local.noarch 1:1.250-394.fc27
                                perl-URI.noarch 1.72-1.fc27
                                perl-Unicode-Normalize.x86_64 1.25-395.fc27
                                perl-constant.noarch 1.33-395.fc27
                                perl-interpreter.x86_64 4:5.26.1-402.fc27
                                perl-libnet.noarch 3.11-1.fc27
                                perl-libs.x86_64 4:5.26.1-402.fc27
                                perl-macros.x86_64 4:5.26.1-402.fc27
                                perl-parent.noarch 1:0.236-394.fc27
                                perl-podlators.noarch 4.09-395.fc27
                                perl-threads.x86_64 1:2.21-1.fc27
                                perl-threads-shared.x86_64 1.58-1.fc27
                                php.x86_64 7.1.14-1.fc27
                                php-bcmath.x86_64 7.1.14-1.fc27
                                php-cli.x86_64 7.1.14-1.fc27
                                php-common.x86_64 7.1.14-1.fc27
                                php-gd.x86_64 7.1.14-1.fc27
                                php-json.x86_64 7.1.14-1.fc27
                                php-ldap.x86_64 7.1.14-1.fc27
                                php-mbstring.x86_64 7.1.14-1.fc27
                                php-mysqlnd.x86_64 7.1.14-1.fc27
                                php-pdo.x86_64 7.1.14-1.fc27
                                php-xml.x86_64 7.1.14-1.fc27
                                psmisc.x86_64 23.1-2.fc27
                                sscg.x86_64 2.3.3-1.fc27
                                traceroute.x86_64 3:2.1.0-5.fc27
                                unixODBC.x86_64 2.3.4-7.fc27
                                web-assets-filesystem.noarch 5-6.fc27
                                web-assets-httpd.noarch 5-6.fc27
                                zabbix.x86_64 3.0.14-1.fc27
                                zabbix-dbfiles-mysql.noarch 3.0.14-1.fc27
                                zabbix-server.noarch 3.0.14-1.fc27
                                zabbix-web.noarch 3.0.14-1.fc27
                              
                              Complete!
                              Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mari                         adb.service.
                              Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mar                         iadb.service.
                              Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /u                         sr/lib/systemd/system/mariadb.service.
                              
                              NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
                                    SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
                              
                              In order to log into MariaDB to secure it, we'll need the current
                              password for the root user.  If you've just installed MariaDB, and
                              you haven't set the root password yet, the password will be blank,
                              so you should just press enter here.
                              
                              Enter current password for root (enter for none):
                              OK, successfully used password, moving on...
                              
                              Setting the root password ensures that nobody can log into the MariaDB
                              root user without the proper authorisation.
                              
                              Set root password? [Y/n] y
                              New password:
                              Re-enter new password:
                              Password updated successfully!
                              Reloading privilege tables..
                               ... Success!
                              
                              
                              By default, a MariaDB installation has an anonymous user, allowing anyone
                              to log into MariaDB without having to have a user account created for
                              them.  This is intended only for testing, and to make the installation
                              go a bit smoother.  You should remove them before moving into a
                              production environment.
                              
                              Remove anonymous users? [Y/n] y
                               ... Success!
                              
                              Normally, root should only be allowed to connect from 'localhost'.  This
                              ensures that someone cannot guess at the root password from the network.
                              
                              Disallow root login remotely? [Y/n] y
                               ... Success!
                              
                              By default, MariaDB comes with a database named 'test' that anyone can
                              access.  This is also intended only for testing, and should be removed
                              before moving into a production environment.
                              
                              Remove test database and access to it? [Y/n] y
                               - Dropping test database...
                               ... Success!
                               - Removing privileges on test database...
                               ... Success!
                              
                              Reloading the privilege tables will ensure that all changes made so far
                              will take effect immediately.
                              
                              Reload privilege tables now? [Y/n] y
                               ... Success!
                              
                              Cleaning up...
                              
                              All done!  If you've completed all of the above steps, your MariaDB
                              installation should now be secure.
                              
                              Thanks for using MariaDB!
                              Enter password:
                              <?php
                              // Zabbix GUI configuration file.
                              global $DB;
                              
                              $DB['TYPE']     = 'MYSQL';
                              $DB['SERVER']   = 'localhost';
                              $DB['PORT']     = '0';
                              $DB['DATABASE'] = 'zabbix';
                              $DB['USER']     = 'zabbix';
                              $DB['PASSWORD'] = 'REDACTED';
                              
                              // Schema name. Used for IBM DB2 and PostgreSQL.
                              $DB['SCHEMA'] = '';
                              
                              $ZBX_SERVER      = 'localhost';
                              $ZBX_SERVER_PORT = '10051';
                              $ZBX_SERVER_NAME = '';
                              
                              $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
                              ?>
                              success
                              success
                              success
                              success
                              success
                              ./zabbix_installer.sh: line 80: checkmodule: command not found
                              
                              O 1 Reply Last reply Reply Quote 0
                              • N
                                NashBrydges
                                last edited by

                                When I try to restart the services, looks like something is missing.

                                Redirecting to /bin/systemctl restart zabbix-server.service
                                Redirecting to /bin/systemctl restart zabbix-agent.service
                                Failed to restart zabbix-agent.service: Unit zabbix-agent.service not found.
                                1 Reply Last reply Reply Quote 0
                                • O
                                  Obsolesce @NashBrydges
                                  last edited by Obsolesce

                                  @nashbrydges said in Install Zabbix on Fedora 27:

                                  I've rerun the script on a minimal install with the addition of sudo mysql_secure_installation and it worked all the way to where I got this error...

                                  ./zabbix_installer.sh: line 80: checkmodule: command not found

                                  Here is the output of the installation:

                                  Last metadata expiration check: 0:04:28 ago on Fri 23 Feb 2018 04:18:04 PM EST.
                                  Dependencies resolved.
                                  ================================================================================
                                   Package                   Arch     Version                     Repository
                                                                                                             Size
                                  ================================================================================
                                  Installing:
                                   mariadb-server            x86_64   3:10.2.12-5.fc27            updates    17 M
                                   mod_ssl                   x86_64   1:2.4.29-1.fc27             updates   114 k
                                   zabbix-server-mysql       x86_64   3.0.14-1.fc27               updates   537 k
                                   zabbix-web-mysql          noarch   3.0.14-1.fc27               updates    17 k
                                  Installing dependencies:
                                   OpenIPMI-libs             x86_64   2.0.23-6.fc27               updates   535 k
                                   apr                       x86_64   1.6.3-1.fc27                updates   121 k
                                   apr-util                  x86_64   1.6.1-2.fc27                updates   102 k
                                   bison                     x86_64   3.0.4-8.fc27                fedora    684 k
                                   compat-openssl10          x86_64   1:1.0.2m-1.fc27             updates   1.1 M
                                   dejavu-fonts-common       noarch   2.35-5.fc27                 fedora     72 k
                                   dejavu-sans-fonts         noarch   2.35-5.fc27                 fedora    1.5 M
                                   fedora-logos-httpd        noarch   28.0.2-1.fc27               updates    33 k
                                   fontconfig                x86_64   2.12.6-4.fc27               updates   253 k
                                   fontpackages-filesystem   noarch   1.44-19.fc27                fedora     14 k
                                   fping                     x86_64   4.0-4.fc27                  fedora     40 k
                                   gd                        x86_64   2.2.5-1.fc27                fedora    142 k
                                   httpd                     x86_64   2.4.29-1.fc27               updates   1.3 M
                                   httpd-filesystem          noarch   2.4.29-1.fc27               updates    25 k
                                   httpd-tools               x86_64   2.4.29-1.fc27               updates    89 k
                                   iksemel                   x86_64   1.5-0.1.git978b733.fc26     fedora     54 k
                                   jbigkit-libs              x86_64   2.1-8.fc27                  fedora     52 k
                                   js-jquery1                noarch   1.12.4-4.fc27               fedora    185 k
                                   libX11                    x86_64   1.6.5-4.fc27                fedora    616 k
                                   libX11-common             noarch   1.6.5-4.fc27                fedora    166 k
                                   libXau                    x86_64   1.0.8-9.fc27                fedora     33 k
                                   libXpm                    x86_64   3.5.12-4.fc27               fedora     56 k
                                   libjpeg-turbo             x86_64   1.5.3-1.fc27                updates   153 k
                                   libtiff                   x86_64   4.0.9-2.fc27                updates   184 k
                                   libwebp                   x86_64   0.6.1-1.fc27                updates   265 k
                                   libxcb                    x86_64   1.12-5.fc27                 fedora    224 k
                                   libxslt                   x86_64   1.1.29-4.fc27               fedora    252 k
                                   logrotate                 x86_64   3.12.3-4.fc27               updates    79 k
                                   m4                        x86_64   1.4.18-5.fc27               fedora    219 k
                                   mailcap                   noarch   2.1.48-2.fc27               fedora     37 k
                                   mariadb                   x86_64   3:10.2.12-5.fc27            updates   6.2 M
                                   mariadb-common            x86_64   3:10.2.12-5.fc27            updates    64 k
                                   mariadb-config            x86_64   3:10.2.12-5.fc27            updates    38 k
                                   mariadb-errmsg            x86_64   3:10.2.12-5.fc27            updates   225 k
                                   mariadb-libs              x86_64   3:10.2.12-5.fc27            updates   154 k
                                   mod_http2                 x86_64   1.10.13-1.fc27              updates   151 k
                                   net-snmp-libs             x86_64   1:5.7.3-26.fc27             updates   794 k
                                   nginx-filesystem          noarch   1:1.12.1-1.fc27             fedora     20 k
                                   perl-Carp                 noarch   1.42-394.fc27               fedora     28 k
                                   perl-DBD-MySQL            x86_64   4.043-6.fc27                updates   154 k
                                   perl-DBI                  x86_64   1.637-1.fc27                fedora    734 k
                                   perl-Data-Dumper          x86_64   2.167-398.fc27              updates    56 k
                                   perl-Encode               x86_64   4:2.94-16.fc27              updates   1.5 M
                                   perl-Errno                x86_64   1.28-402.fc27               updates    72 k
                                   perl-Exporter             noarch   5.72-395.fc27               fedora     32 k
                                   perl-File-Path            noarch   2.15-1.fc27                 fedora     37 k
                                   perl-File-Temp            noarch   0.230.400-394.fc27          fedora     61 k
                                   perl-Getopt-Long          noarch   1:2.50-3.fc27               fedora     61 k
                                   perl-HTTP-Tiny            noarch   0.070-394.fc27              fedora     56 k
                                   perl-IO                   x86_64   1.38-402.fc27               updates   137 k
                                   perl-IO-Socket-IP         noarch   0.39-4.fc27                 fedora     45 k
                                   perl-MIME-Base64          x86_64   3.15-395.fc27               fedora     29 k
                                   perl-Math-BigInt          noarch   1:1.9998.11-4.fc27          fedora    194 k
                                   perl-Math-Complex         noarch   1.59-402.fc27               updates   104 k
                                   perl-Net-SSLeay           x86_64   1.81-4.fc27                 fedora    334 k
                                   perl-PathTools            x86_64   3.67-395.fc27               fedora     88 k
                                   perl-Pod-Escapes          noarch   1:1.07-394.fc27             fedora     19 k
                                   perl-Pod-Perldoc          noarch   3.28-395.fc27               fedora     87 k
                                   perl-Pod-Simple           noarch   1:3.35-394.fc27             fedora    211 k
                                   perl-Pod-Usage            noarch   4:1.69-394.fc27             fedora     33 k
                                   perl-Scalar-List-Utils    x86_64   3:1.48-1.fc27               fedora     65 k
                                   perl-Socket               x86_64   4:2.027-1.fc27              updates    57 k
                                   perl-Storable             x86_64   1:2.62-395.fc27             fedora     84 k
                                   perl-Term-ANSIColor       noarch   4.06-395.fc27               fedora     44 k
                                   perl-Term-Cap             noarch   1.17-394.fc27               fedora     21 k
                                   perl-Text-ParseWords      noarch   3.30-394.fc27               fedora     16 k
                                   perl-Text-Tabs+Wrap       noarch   2013.0523-394.fc27          fedora     23 k
                                   perl-Time-Local           noarch   1:1.250-394.fc27            fedora     30 k
                                   perl-URI                  noarch   1.72-1.fc27                 fedora    114 k
                                   perl-Unicode-Normalize    x86_64   1.25-395.fc27               fedora     80 k
                                   perl-constant             noarch   1.33-395.fc27               fedora     24 k
                                   perl-interpreter          x86_64   4:5.26.1-402.fc27           updates   6.2 M
                                   perl-libnet               noarch   3.11-1.fc27                 updates   119 k
                                   perl-libs                 x86_64   4:5.26.1-402.fc27           updates   1.5 M
                                   perl-macros               x86_64   4:5.26.1-402.fc27           updates    68 k
                                   perl-parent               noarch   1:0.236-394.fc27            fedora     18 k
                                   perl-podlators            noarch   4.09-395.fc27               updates   115 k
                                   perl-threads              x86_64   1:2.21-1.fc27               updates    60 k
                                   perl-threads-shared       x86_64   1.58-1.fc27                 updates    46 k
                                   php                       x86_64   7.1.14-1.fc27               updates   2.8 M
                                   php-bcmath                x86_64   7.1.14-1.fc27               updates    81 k
                                   php-cli                   x86_64   7.1.14-1.fc27               updates   4.2 M
                                   php-common                x86_64   7.1.14-1.fc27               updates   1.0 M
                                   php-gd                    x86_64   7.1.14-1.fc27               updates    87 k
                                   php-json                  x86_64   7.1.14-1.fc27               updates    72 k
                                   php-ldap                  x86_64   7.1.14-1.fc27               updates    79 k
                                   php-mbstring              x86_64   7.1.14-1.fc27               updates   594 k
                                   php-mysqlnd               x86_64   7.1.14-1.fc27               updates   243 k
                                   php-pdo                   x86_64   7.1.14-1.fc27               updates   137 k
                                   php-xml                   x86_64   7.1.14-1.fc27               updates   226 k
                                   psmisc                    x86_64   23.1-2.fc27                 fedora    148 k
                                   sscg                      x86_64   2.3.3-1.fc27                updates    38 k
                                   traceroute                x86_64   3:2.1.0-5.fc27              fedora     65 k
                                   unixODBC                  x86_64   2.3.4-7.fc27                fedora    438 k
                                   web-assets-filesystem     noarch   5-6.fc27                    fedora    8.3 k
                                   web-assets-httpd          noarch   5-6.fc27                    fedora    9.5 k
                                   zabbix                    x86_64   3.0.14-1.fc27               updates   290 k
                                   zabbix-dbfiles-mysql      noarch   3.0.14-1.fc27               updates   1.1 M
                                   zabbix-server             noarch   3.0.14-1.fc27               updates    27 k
                                   zabbix-web                noarch   3.0.14-1.fc27               updates   3.4 M
                                  Installing weak dependencies:
                                   mariadb-backup            x86_64   3:10.2.12-5.fc27            updates   5.8 M
                                   mariadb-gssapi-server     x86_64   3:10.2.12-5.fc27            updates    44 k
                                   mariadb-rocksdb-engine    x86_64   3:10.2.12-5.fc27            updates   4.0 M
                                   mariadb-server-utils      x86_64   3:10.2.12-5.fc27            updates   1.6 M
                                   mariadb-tokudb-engine     x86_64   3:10.2.12-5.fc27            updates   831 k
                                   perl-IO-Socket-SSL        noarch   2.051-1.fc27                fedora    271 k
                                   perl-Mozilla-CA           noarch   20160104-6.fc27             fedora     14 k
                                   php-fpm                   x86_64   7.1.14-1.fc27               updates   1.5 M
                                  
                                  Transaction Summary
                                  ================================================================================
                                  Install  112 Packages
                                  
                                  Total download size: 76 M
                                  Installed size: 316 M
                                  Downloading Packages:
                                  (1/112): zabbix-server-3.0.14-1.fc27.noarch.rpm  68 kB/s |  27 kB     00:00
                                  (2/112): iksemel-1.5-0.1.git978b733.fc26.x86_64 310 kB/s |  54 kB     00:00
                                  (3/112): zabbix-3.0.14-1.fc27.x86_64.rpm        418 kB/s | 290 kB     00:00
                                  (4/112): fping-4.0-4.fc27.x86_64.rpm            344 kB/s |  40 kB     00:00
                                  (5/112): unixODBC-2.3.4-7.fc27.x86_64.rpm       1.2 MB/s | 438 kB     00:00
                                  (6/112): zabbix-web-mysql-3.0.14-1.fc27.noarch. 464 kB/s |  17 kB     00:00
                                  (7/112): traceroute-2.1.0-5.fc27.x86_64.rpm     371 kB/s |  65 kB     00:00
                                  (8/112): zabbix-server-mysql-3.0.14-1.fc27.x86_ 518 kB/s | 537 kB     00:01
                                  (9/112): js-jquery1-1.12.4-4.fc27.noarch.rpm    352 kB/s | 185 kB     00:00
                                  (10/112): web-assets-httpd-5-6.fc27.noarch.rpm  132 kB/s | 9.5 kB     00:00
                                  (11/112): dejavu-fonts-common-2.35-5.fc27.noarc 344 kB/s |  72 kB     00:00
                                  (12/112): web-assets-filesystem-5-6.fc27.noarch 216 kB/s | 8.3 kB     00:00
                                  (13/112): fontpackages-filesystem-1.44-19.fc27. 465 kB/s |  14 kB     00:00
                                  (14/112): mod_ssl-2.4.29-1.fc27.x86_64.rpm      466 kB/s | 114 kB     00:00
                                  (15/112): dejavu-sans-fonts-2.35-5.fc27.noarch. 699 kB/s | 1.5 MB     00:02
                                  (16/112): httpd-filesystem-2.4.29-1.fc27.noarch 573 kB/s |  25 kB     00:00
                                  (17/112): httpd-tools-2.4.29-1.fc27.x86_64.rpm  918 kB/s |  89 kB     00:00
                                  (18/112): mailcap-2.1.48-2.fc27.noarch.rpm      362 kB/s |  37 kB     00:00
                                  (19/112): httpd-2.4.29-1.fc27.x86_64.rpm        881 kB/s | 1.3 MB     00:01
                                  (20/112): mariadb-common-10.2.12-5.fc27.x86_64. 686 kB/s |  64 kB     00:00
                                  (21/112): mariadb-errmsg-10.2.12-5.fc27.x86_64. 823 kB/s | 225 kB     00:00
                                  (22/112): zabbix-web-3.0.14-1.fc27.noarch.rpm   930 kB/s | 3.4 MB     00:03
                                  (23/112): bison-3.0.4-8.fc27.x86_64.rpm         887 kB/s | 684 kB     00:00
                                  (24/112): psmisc-23.1-2.fc27.x86_64.rpm         641 kB/s | 148 kB     00:00
                                  (25/112): m4-1.4.18-5.fc27.x86_64.rpm           895 kB/s | 219 kB     00:00
                                  (26/112): php-mysqlnd-7.1.14-1.fc27.x86_64.rpm  573 kB/s | 243 kB     00:00
                                  (27/112): php-pdo-7.1.14-1.fc27.x86_64.rpm      554 kB/s | 137 kB     00:00
                                  (28/112): compat-openssl10-1.0.2m-1.fc27.x86_64 662 kB/s | 1.1 MB     00:01
                                  (29/112): php-json-7.1.14-1.fc27.x86_64.rpm     543 kB/s |  72 kB     00:00
                                  (30/112): php-common-7.1.14-1.fc27.x86_64.rpm   759 kB/s | 1.0 MB     00:01
                                  (31/112): php-xml-7.1.14-1.fc27.x86_64.rpm      603 kB/s | 226 kB     00:00
                                  (32/112): php-ldap-7.1.14-1.fc27.x86_64.rpm     409 kB/s |  79 kB     00:00
                                  (33/112): php-gd-7.1.14-1.fc27.x86_64.rpm       447 kB/s |  87 kB     00:00
                                  (34/112): php-bcmath-7.1.14-1.fc27.x86_64.rpm   432 kB/s |  81 kB     00:00
                                  (35/112): php-mbstring-7.1.14-1.fc27.x86_64.rpm 467 kB/s | 594 kB     00:01
                                  (36/112): libxslt-1.1.29-4.fc27.x86_64.rpm      451 kB/s | 252 kB     00:00
                                  (37/112): gd-2.2.5-1.fc27.x86_64.rpm            453 kB/s | 142 kB     00:00
                                  (38/112): libX11-1.6.5-4.fc27.x86_64.rpm        554 kB/s | 616 kB     00:01
                                  (39/112): libXpm-3.5.12-4.fc27.x86_64.rpm       893 kB/s |  56 kB     00:00
                                  (40/112): php-7.1.14-1.fc27.x86_64.rpm          565 kB/s | 2.8 MB     00:05
                                  (41/112): libX11-common-1.6.5-4.fc27.noarch.rpm 420 kB/s | 166 kB     00:00
                                  (42/112): libxcb-1.12-5.fc27.x86_64.rpm         524 kB/s | 224 kB     00:00
                                  (43/112): libXau-1.0.8-9.fc27.x86_64.rpm        510 kB/s |  33 kB     00:00
                                  (44/112): OpenIPMI-libs-2.0.23-6.fc27.x86_64.rp 620 kB/s | 535 kB     00:00
                                  (45/112): php-cli-7.1.14-1.fc27.x86_64.rpm      860 kB/s | 4.2 MB     00:05
                                  (46/112): net-snmp-libs-5.7.3-26.fc27.x86_64.rp 613 kB/s | 794 kB     00:01
                                  (47/112): logrotate-3.12.3-4.fc27.x86_64.rpm    570 kB/s |  79 kB     00:00
                                  (48/112): libjpeg-turbo-1.5.3-1.fc27.x86_64.rpm 612 kB/s | 153 kB     00:00
                                  (49/112): sscg-2.3.3-1.fc27.x86_64.rpm          542 kB/s |  38 kB     00:00
                                  (50/112): mariadb-config-10.2.12-5.fc27.x86_64. 551 kB/s |  38 kB     00:00
                                  (51/112): apr-1.6.3-1.fc27.x86_64.rpm           622 kB/s | 121 kB     00:00
                                  (52/112): apr-util-1.6.1-2.fc27.x86_64.rpm      523 kB/s | 102 kB     00:00
                                  (53/112): zabbix-dbfiles-mysql-3.0.14-1.fc27.no 785 kB/s | 1.1 MB     00:01
                                  (54/112): mod_http2-1.10.13-1.fc27.x86_64.rpm   434 kB/s | 151 kB     00:00
                                  (55/112): fontconfig-2.12.6-4.fc27.x86_64.rpm   969 kB/s | 253 kB     00:00
                                  (56/112): jbigkit-libs-2.1-8.fc27.x86_64.rpm    724 kB/s |  52 kB     00:00
                                  (57/112): libtiff-4.0.9-2.fc27.x86_64.rpm       400 kB/s | 184 kB     00:00
                                  (58/112): libwebp-0.6.1-1.fc27.x86_64.rpm       938 kB/s | 265 kB     00:00
                                  (59/112): mariadb-libs-10.2.12-5.fc27.x86_64.rp 981 kB/s | 154 kB     00:00
                                  (60/112): perl-Exporter-5.72-395.fc27.noarch.rp 626 kB/s |  32 kB     00:00
                                  (61/112): perl-File-Temp-0.230.400-394.fc27.noa 668 kB/s |  61 kB     00:00
                                  (62/112): perl-Getopt-Long-2.50-3.fc27.noarch.r 644 kB/s |  61 kB     00:00
                                  (63/112): perl-Carp-1.42-394.fc27.noarch.rpm    476 kB/s |  28 kB     00:00
                                  (64/112): perl-File-Path-2.15-1.fc27.noarch.rpm 501 kB/s |  37 kB     00:00
                                  (65/112): perl-PathTools-3.67-395.fc27.x86_64.r 702 kB/s |  88 kB     00:00
                                  (66/112): perl-Scalar-List-Utils-1.48-1.fc27.x8 706 kB/s |  65 kB     00:00
                                  (67/112): perl-constant-1.33-395.fc27.noarch.rp 463 kB/s |  24 kB     00:00
                                  (68/112): perl-parent-0.236-394.fc27.noarch.rpm 584 kB/s |  18 kB     00:00
                                  (69/112): perl-Pod-Usage-1.69-394.fc27.noarch.r 557 kB/s |  33 kB     00:00
                                  (70/112): perl-Text-ParseWords-3.30-394.fc27.no 522 kB/s |  16 kB     00:00
                                  (71/112): perl-Pod-Perldoc-3.28-395.fc27.noarch 945 kB/s |  87 kB     00:00
                                  (72/112): perl-HTTP-Tiny-0.070-394.fc27.noarch. 701 kB/s |  56 kB     00:00
                                  (73/112): perl-Pod-Simple-3.35-394.fc27.noarch. 1.1 MB/s | 211 kB     00:00
                                  (74/112): perl-MIME-Base64-3.15-395.fc27.x86_64 767 kB/s |  29 kB     00:00
                                  (75/112): perl-Time-Local-1.250-394.fc27.noarch 949 kB/s |  30 kB     00:00
                                  (76/112): perl-Pod-Escapes-1.07-394.fc27.noarch 551 kB/s |  19 kB     00:00
                                  (77/112): perl-Text-Tabs+Wrap-2013.0523-394.fc2 651 kB/s |  23 kB     00:00
                                  (78/112): mariadb-10.2.12-5.fc27.x86_64.rpm     707 kB/s | 6.2 MB     00:09
                                  (79/112): perl-interpreter-5.26.1-402.fc27.x86_ 732 kB/s | 6.2 MB     00:08
                                  (80/112): perl-Unicode-Normalize-1.25-395.fc27. 535 kB/s |  80 kB     00:00
                                  (81/112): perl-Errno-1.28-402.fc27.x86_64.rpm   597 kB/s |  72 kB     00:00
                                  (82/112): fedora-logos-httpd-28.0.2-1.fc27.noar 510 kB/s |  33 kB     00:00
                                  (83/112): perl-podlators-4.09-395.fc27.noarch.r 781 kB/s | 115 kB     00:00
                                  (84/112): perl-Term-ANSIColor-4.06-395.fc27.noa 448 kB/s |  44 kB     00:00
                                  (85/112): mariadb-server-10.2.12-5.fc27.x86_64. 715 kB/s |  17 MB     00:24
                                  (86/112): perl-Term-Cap-1.17-394.fc27.noarch.rp 179 kB/s |  21 kB     00:00
                                  (87/112): perl-Storable-2.62-395.fc27.x86_64.rp 558 kB/s |  84 kB     00:00
                                  (88/112): perl-libs-5.26.1-402.fc27.x86_64.rpm  735 kB/s | 1.5 MB     00:02
                                  (89/112): perl-IO-1.38-402.fc27.x86_64.rpm      720 kB/s | 137 kB     00:00
                                  (90/112): perl-Socket-2.027-1.fc27.x86_64.rpm   532 kB/s |  57 kB     00:00
                                  (91/112): perl-macros-5.26.1-402.fc27.x86_64.rp 735 kB/s |  68 kB     00:00
                                  (92/112): perl-threads-shared-1.58-1.fc27.x86_6 655 kB/s |  46 kB     00:00
                                  (93/112): perl-threads-2.21-1.fc27.x86_64.rpm   589 kB/s |  60 kB     00:00
                                  (94/112): mariadb-gssapi-server-10.2.12-5.fc27. 683 kB/s |  44 kB     00:00
                                  (95/112): perl-Encode-2.94-16.fc27.x86_64.rpm   913 kB/s | 1.5 MB     00:01
                                  (96/112): mariadb-server-utils-10.2.12-5.fc27.x 899 kB/s | 1.6 MB     00:01
                                  (97/112): perl-DBI-1.637-1.fc27.x86_64.rpm      651 kB/s | 734 kB     00:01
                                  (98/112): perl-Math-BigInt-1.9998.11-4.fc27.noa 435 kB/s | 194 kB     00:00
                                  (99/112): mariadb-rocksdb-engine-10.2.12-5.fc27 832 kB/s | 4.0 MB     00:04
                                  (100/112): mariadb-tokudb-engine-10.2.12-5.fc27 592 kB/s | 831 kB     00:01
                                  (101/112): nginx-filesystem-1.12.1-1.fc27.noarc 580 kB/s |  20 kB     00:00
                                  (102/112): perl-Mozilla-CA-20160104-6.fc27.noar 353 kB/s |  14 kB     00:00
                                  (103/112): mariadb-backup-10.2.12-5.fc27.x86_64 952 kB/s | 5.8 MB     00:06
                                  (104/112): perl-IO-Socket-SSL-2.051-1.fc27.noar 689 kB/s | 271 kB     00:00
                                  (105/112): perl-IO-Socket-IP-0.39-4.fc27.noarch 281 kB/s |  45 kB     00:00
                                  (106/112): perl-URI-1.72-1.fc27.noarch.rpm      896 kB/s | 114 kB     00:00
                                  (107/112): perl-Data-Dumper-2.167-398.fc27.x86_ 912 kB/s |  56 kB     00:00
                                  (108/112): php-fpm-7.1.14-1.fc27.x86_64.rpm     884 kB/s | 1.5 MB     00:01
                                  (109/112): perl-libnet-3.11-1.fc27.noarch.rpm   942 kB/s | 119 kB     00:00
                                  (110/112): perl-Net-SSLeay-1.81-4.fc27.x86_64.r 868 kB/s | 334 kB     00:00
                                  (111/112): perl-Math-Complex-1.59-402.fc27.noar 507 kB/s | 104 kB     00:00
                                  (112/112): perl-DBD-MySQL-4.043-6.fc27.x86_64.r 990 kB/s | 154 kB     00:00
                                  --------------------------------------------------------------------------------
                                  Total                                           2.1 MB/s |  76 MB     00:36
                                  Running transaction check
                                  Transaction check succeeded.
                                  Running transaction test
                                  Transaction test succeeded.
                                  Running transaction
                                    Preparing        :                                                        1/1
                                    Installing       : perl-Carp-1.42-394.fc27.noarch                       1/112
                                    Installing       : perl-libs-4:5.26.1-402.fc27.x86_64                   2/112
                                    Running scriptlet: perl-libs-4:5.26.1-402.fc27.x86_64                   2/112
                                    Installing       : perl-Exporter-5.72-395.fc27.noarch                   3/112
                                    Installing       : php-json-7.1.14-1.fc27.x86_64                        4/112
                                    Installing       : php-common-7.1.14-1.fc27.x86_64                      5/112
                                    Installing       : perl-Scalar-List-Utils-3:1.48-1.fc27.x86_64          6/112
                                    Running scriptlet: httpd-filesystem-2.4.29-1.fc27.noarch                7/112
                                    Installing       : httpd-filesystem-2.4.29-1.fc27.noarch                7/112
                                    Installing       : apr-1.6.3-1.fc27.x86_64                              8/112
                                    Running scriptlet: apr-1.6.3-1.fc27.x86_64                              8/112
                                    Installing       : libjpeg-turbo-1.5.3-1.fc27.x86_64                    9/112
                                    Running scriptlet: libjpeg-turbo-1.5.3-1.fc27.x86_64                    9/112
                                    Installing       : apr-util-1.6.1-2.fc27.x86_64                        10/112
                                    Running scriptlet: apr-util-1.6.1-2.fc27.x86_64                        10/112
                                    Installing       : perl-Text-ParseWords-3.30-394.fc27.noarch           11/112
                                    Installing       : mariadb-config-3:10.2.12-5.fc27.x86_64              12/112
                                    Installing       : mariadb-common-3:10.2.12-5.fc27.x86_64              13/112
                                    Installing       : mariadb-libs-3:10.2.12-5.fc27.x86_64                14/112
                                    Running scriptlet: mariadb-libs-3:10.2.12-5.fc27.x86_64                14/112
                                    Installing       : fontpackages-filesystem-1.44-19.fc27.noarch         15/112
                                    Installing       : web-assets-filesystem-5-6.fc27.noarch               16/112
                                    Installing       : js-jquery1-1.12.4-4.fc27.noarch                     17/112
                                    Installing       : dejavu-fonts-common-2.35-5.fc27.noarch              18/112
                                    Installing       : dejavu-sans-fonts-2.35-5.fc27.noarch                19/112
                                    Installing       : fontconfig-2.12.6-4.fc27.x86_64                     20/112
                                    Running scriptlet: fontconfig-2.12.6-4.fc27.x86_64                     20/112
                                    Installing       : mariadb-errmsg-3:10.2.12-5.fc27.x86_64              21/112
                                    Installing       : httpd-tools-2.4.29-1.fc27.x86_64                    22/112
                                    Installing       : php-pdo-7.1.14-1.fc27.x86_64                        23/112
                                    Installing       : php-mysqlnd-7.1.14-1.fc27.x86_64                    24/112
                                    Installing       : php-mbstring-7.1.14-1.fc27.x86_64                   25/112
                                    Installing       : php-ldap-7.1.14-1.fc27.x86_64                       26/112
                                    Installing       : php-bcmath-7.1.14-1.fc27.x86_64                     27/112
                                    Installing       : php-cli-7.1.14-1.fc27.x86_64                        28/112
                                    Installing       : perl-Term-ANSIColor-4.06-395.fc27.noarch            29/112
                                    Installing       : perl-macros-4:5.26.1-402.fc27.x86_64                30/112
                                    Installing       : perl-File-Path-2.15-1.fc27.noarch                   31/112
                                    Installing       : perl-PathTools-3.67-395.fc27.x86_64                 32/112
                                    Installing       : perl-constant-1.33-395.fc27.noarch                  33/112
                                    Installing       : perl-parent-1:0.236-394.fc27.noarch                 34/112
                                    Installing       : perl-Text-Tabs+Wrap-2013.0523-394.fc27.noarch       35/112
                                    Installing       : perl-Unicode-Normalize-1.25-395.fc27.x86_64         36/112
                                    Installing       : perl-Errno-1.28-402.fc27.x86_64                     37/112
                                    Installing       : perl-threads-shared-1.58-1.fc27.x86_64              38/112
                                    Installing       : perl-threads-1:2.21-1.fc27.x86_64                   39/112
                                    Installing       : perl-interpreter-4:5.26.1-402.fc27.x86_64           40/112
                                    Installing       : perl-Socket-4:2.027-1.fc27.x86_64                   41/112
                                    Installing       : perl-IO-1.38-402.fc27.x86_64                        42/112
                                    Installing       : perl-MIME-Base64-3.15-395.fc27.x86_64               43/112
                                    Installing       : perl-File-Temp-0.230.400-394.fc27.noarch            44/112
                                    Installing       : perl-Data-Dumper-2.167-398.fc27.x86_64              45/112
                                    Installing       : perl-Storable-1:2.62-395.fc27.x86_64                46/112
                                    Installing       : perl-IO-Socket-IP-0.39-4.fc27.noarch                47/112
                                    Installing       : perl-Time-Local-1:1.250-394.fc27.noarch             48/112
                                    Installing       : perl-HTTP-Tiny-0.070-394.fc27.noarch                49/112
                                    Installing       : perl-libnet-3.11-1.fc27.noarch                      50/112
                                    Installing       : perl-Net-SSLeay-1.81-4.fc27.x86_64                  51/112
                                    Installing       : perl-Pod-Escapes-1:1.07-394.fc27.noarch             52/112
                                    Installing       : perl-Term-Cap-1.17-394.fc27.noarch                  53/112
                                    Installing       : perl-Pod-Simple-1:3.35-394.fc27.noarch              54/112
                                    Installing       : perl-Getopt-Long-1:2.50-3.fc27.noarch               55/112
                                    Installing       : perl-Encode-4:2.94-16.fc27.x86_64                   56/112
                                    Installing       : perl-Pod-Usage-4:1.69-394.fc27.noarch               57/112
                                    Installing       : perl-podlators-4.09-395.fc27.noarch                 58/112
                                    Installing       : perl-Pod-Perldoc-3.28-395.fc27.noarch               59/112
                                    Installing       : perl-URI-1.72-1.fc27.noarch                         60/112
                                    Installing       : mariadb-3:10.2.12-5.fc27.x86_64                     61/112
                                    Installing       : perl-Math-Complex-1.59-402.fc27.noarch              62/112
                                    Installing       : perl-Math-BigInt-1:1.9998.11-4.fc27.noarch          63/112
                                    Installing       : perl-DBI-1.637-1.fc27.x86_64                        64/112
                                    Installing       : perl-DBD-MySQL-4.043-6.fc27.x86_64                  65/112
                                    Running scriptlet: nginx-filesystem-1:1.12.1-1.fc27.noarch             66/112
                                    Installing       : nginx-filesystem-1:1.12.1-1.fc27.noarch             66/112
                                    Installing       : fedora-logos-httpd-28.0.2-1.fc27.noarch             67/112
                                    Installing       : libwebp-0.6.1-1.fc27.x86_64                         68/112
                                    Running scriptlet: libwebp-0.6.1-1.fc27.x86_64                         68/112
                                    Installing       : jbigkit-libs-2.1-8.fc27.x86_64                      69/112
                                    Running scriptlet: jbigkit-libs-2.1-8.fc27.x86_64                      69/112
                                    Installing       : libtiff-4.0.9-2.fc27.x86_64                         70/112
                                    Running scriptlet: libtiff-4.0.9-2.fc27.x86_64                         70/112
                                    Installing       : sscg-2.3.3-1.fc27.x86_64                            71/112
                                    Running scriptlet: logrotate-3.12.3-4.fc27.x86_64                      72/112
                                    Installing       : logrotate-3.12.3-4.fc27.x86_64                      72/112
                                    Installing       : zabbix-3.0.14-1.fc27.x86_64                         73/112
                                    Installing       : zabbix-dbfiles-mysql-3.0.14-1.fc27.noarch           74/112
                                    Installing       : net-snmp-libs-1:5.7.3-26.fc27.x86_64                75/112
                                    Running scriptlet: net-snmp-libs-1:5.7.3-26.fc27.x86_64                75/112
                                    Installing       : OpenIPMI-libs-2.0.23-6.fc27.x86_64                  76/112
                                    Running scriptlet: OpenIPMI-libs-2.0.23-6.fc27.x86_64                  76/112
                                    Installing       : libXau-1.0.8-9.fc27.x86_64                          77/112
                                    Running scriptlet: libXau-1.0.8-9.fc27.x86_64                          77/112
                                    Installing       : libxcb-1.12-5.fc27.x86_64                           78/112
                                    Running scriptlet: libxcb-1.12-5.fc27.x86_64                           78/112
                                    Installing       : libX11-common-1.6.5-4.fc27.noarch                   79/112
                                    Installing       : libX11-1.6.5-4.fc27.x86_64                          80/112
                                    Running scriptlet: libX11-1.6.5-4.fc27.x86_64                          80/112
                                    Installing       : libXpm-3.5.12-4.fc27.x86_64                         81/112
                                    Running scriptlet: libXpm-3.5.12-4.fc27.x86_64                         81/112
                                    Installing       : gd-2.2.5-1.fc27.x86_64                              82/112
                                    Running scriptlet: gd-2.2.5-1.fc27.x86_64                              82/112
                                    Installing       : php-gd-7.1.14-1.fc27.x86_64                         83/112
                                    Installing       : libxslt-1.1.29-4.fc27.x86_64                        84/112
                                    Running scriptlet: libxslt-1.1.29-4.fc27.x86_64                        84/112
                                    Installing       : php-xml-7.1.14-1.fc27.x86_64                        85/112
                                    Installing       : compat-openssl10-1:1.0.2m-1.fc27.x86_64             86/112
                                    Running scriptlet: compat-openssl10-1:1.0.2m-1.fc27.x86_64             86/112
                                    Installing       : iksemel-1.5-0.1.git978b733.fc26.x86_64              87/112
                                    Running scriptlet: iksemel-1.5-0.1.git978b733.fc26.x86_64              87/112
                                    Installing       : m4-1.4.18-5.fc27.x86_64                             88/112
                                    Running scriptlet: m4-1.4.18-5.fc27.x86_64                             88/112
                                    Installing       : bison-3.0.4-8.fc27.x86_64                           89/112
                                    Running scriptlet: bison-3.0.4-8.fc27.x86_64                           89/112
                                    Installing       : psmisc-23.1-2.fc27.x86_64                           90/112
                                    Running scriptlet: mariadb-server-3:10.2.12-5.fc27.x86_64              91/112
                                    Installing       : mariadb-server-3:10.2.12-5.fc27.x86_64              91/112
                                    Running scriptlet: mariadb-server-3:10.2.12-5.fc27.x86_64              91/112
                                    Installing       : mailcap-2.1.48-2.fc27.noarch                        92/112
                                    Installing       : mod_http2-1.10.13-1.fc27.x86_64                     93/112
                                    Installing       : httpd-2.4.29-1.fc27.x86_64                          94/112
                                    Running scriptlet: httpd-2.4.29-1.fc27.x86_64                          94/112
                                    Installing       : web-assets-httpd-5-6.fc27.noarch                    95/112
                                    Running scriptlet: web-assets-httpd-5-6.fc27.noarch                    95/112
                                    Installing       : php-7.1.14-1.fc27.x86_64                            96/112
                                    Installing       : zabbix-web-mysql-3.0.14-1.fc27.noarch               97/112
                                    Installing       : zabbix-web-3.0.14-1.fc27.noarch                     98/112
                                    Installing       : traceroute-3:2.1.0-5.fc27.x86_64                    99/112
                                    Installing       : fping-4.0-4.fc27.x86_64                            100/112
                                    Installing       : unixODBC-2.3.4-7.fc27.x86_64                       101/112
                                    Running scriptlet: unixODBC-2.3.4-7.fc27.x86_64                       101/112
                                    Running scriptlet: zabbix-server-3.0.14-1.fc27.noarch                 102/112
                                    Installing       : zabbix-server-3.0.14-1.fc27.noarch                 102/112
                                    Running scriptlet: zabbix-server-3.0.14-1.fc27.noarch                 102/112
                                    Installing       : zabbix-server-mysql-3.0.14-1.fc27.x86_64           103/112
                                    Running scriptlet: zabbix-server-mysql-3.0.14-1.fc27.x86_64           103/112
                                    Installing       : mod_ssl-1:2.4.29-1.fc27.x86_64                     104/112
                                    Installing       : mariadb-backup-3:10.2.12-5.fc27.x86_64             105/112
                                    Installing       : mariadb-gssapi-server-3:10.2.12-5.fc27.x86_64      106/112
                                    Installing       : mariadb-rocksdb-engine-3:10.2.12-5.fc27.x86_64     107/112
                                    Installing       : mariadb-server-utils-3:10.2.12-5.fc27.x86_64       108/112
                                    Installing       : mariadb-tokudb-engine-3:10.2.12-5.fc27.x86_64      109/112
                                    Installing       : php-fpm-7.1.14-1.fc27.x86_64                       110/112
                                    Running scriptlet: php-fpm-7.1.14-1.fc27.x86_64                       110/112
                                    Installing       : perl-IO-Socket-SSL-2.051-1.fc27.noarch             111/112
                                    Installing       : perl-Mozilla-CA-20160104-6.fc27.noarch             112/112
                                    Running scriptlet: httpd-2.4.29-1.fc27.x86_64                         112/112
                                    Running scriptlet: perl-Mozilla-CA-20160104-6.fc27.noarch             112/112
                                  Running as unit: run-r2110bb278e4c432391b296994d059174.service
                                    Running scriptlet: fontconfig-2.12.6-4.fc27.x86_64                    112/112
                                    Verifying        : zabbix-server-mysql-3.0.14-1.fc27.x86_64             1/112
                                    Verifying        : zabbix-3.0.14-1.fc27.x86_64                          2/112
                                    Verifying        : zabbix-server-3.0.14-1.fc27.noarch                   3/112
                                    Verifying        : iksemel-1.5-0.1.git978b733.fc26.x86_64               4/112
                                    Verifying        : unixODBC-2.3.4-7.fc27.x86_64                         5/112
                                    Verifying        : fping-4.0-4.fc27.x86_64                              6/112
                                    Verifying        : traceroute-3:2.1.0-5.fc27.x86_64                     7/112
                                    Verifying        : zabbix-web-mysql-3.0.14-1.fc27.noarch                8/112
                                    Verifying        : zabbix-web-3.0.14-1.fc27.noarch                      9/112
                                    Verifying        : dejavu-sans-fonts-2.35-5.fc27.noarch                10/112
                                    Verifying        : js-jquery1-1.12.4-4.fc27.noarch                     11/112
                                    Verifying        : web-assets-httpd-5-6.fc27.noarch                    12/112
                                    Verifying        : dejavu-fonts-common-2.35-5.fc27.noarch              13/112
                                    Verifying        : web-assets-filesystem-5-6.fc27.noarch               14/112
                                    Verifying        : fontpackages-filesystem-1.44-19.fc27.noarch         15/112
                                    Verifying        : mod_ssl-1:2.4.29-1.fc27.x86_64                      16/112
                                    Verifying        : httpd-2.4.29-1.fc27.x86_64                          17/112
                                    Verifying        : httpd-filesystem-2.4.29-1.fc27.noarch               18/112
                                    Verifying        : httpd-tools-2.4.29-1.fc27.x86_64                    19/112
                                    Verifying        : mailcap-2.1.48-2.fc27.noarch                        20/112
                                    Verifying        : mariadb-server-3:10.2.12-5.fc27.x86_64              21/112
                                    Verifying        : mariadb-common-3:10.2.12-5.fc27.x86_64              22/112
                                    Verifying        : mariadb-errmsg-3:10.2.12-5.fc27.x86_64              23/112
                                    Verifying        : bison-3.0.4-8.fc27.x86_64                           24/112
                                    Verifying        : psmisc-23.1-2.fc27.x86_64                           25/112
                                    Verifying        : m4-1.4.18-5.fc27.x86_64                             26/112
                                    Verifying        : compat-openssl10-1:1.0.2m-1.fc27.x86_64             27/112
                                    Verifying        : php-mysqlnd-7.1.14-1.fc27.x86_64                    28/112
                                    Verifying        : php-pdo-7.1.14-1.fc27.x86_64                        29/112
                                    Verifying        : php-common-7.1.14-1.fc27.x86_64                     30/112
                                    Verifying        : php-json-7.1.14-1.fc27.x86_64                       31/112
                                    Verifying        : php-xml-7.1.14-1.fc27.x86_64                        32/112
                                    Verifying        : php-mbstring-7.1.14-1.fc27.x86_64                   33/112
                                    Verifying        : php-ldap-7.1.14-1.fc27.x86_64                       34/112
                                    Verifying        : php-gd-7.1.14-1.fc27.x86_64                         35/112
                                    Verifying        : php-bcmath-7.1.14-1.fc27.x86_64                     36/112
                                    Verifying        : php-7.1.14-1.fc27.x86_64                            37/112
                                    Verifying        : libxslt-1.1.29-4.fc27.x86_64                        38/112
                                    Verifying        : gd-2.2.5-1.fc27.x86_64                              39/112
                                    Verifying        : libX11-1.6.5-4.fc27.x86_64                          40/112
                                    Verifying        : libXpm-3.5.12-4.fc27.x86_64                         41/112
                                    Verifying        : php-cli-7.1.14-1.fc27.x86_64                        42/112
                                    Verifying        : libX11-common-1.6.5-4.fc27.noarch                   43/112
                                    Verifying        : libxcb-1.12-5.fc27.x86_64                           44/112
                                    Verifying        : libXau-1.0.8-9.fc27.x86_64                          45/112
                                    Verifying        : OpenIPMI-libs-2.0.23-6.fc27.x86_64                  46/112
                                    Verifying        : net-snmp-libs-1:5.7.3-26.fc27.x86_64                47/112
                                    Verifying        : zabbix-dbfiles-mysql-3.0.14-1.fc27.noarch           48/112
                                    Verifying        : logrotate-3.12.3-4.fc27.x86_64                      49/112
                                    Verifying        : libjpeg-turbo-1.5.3-1.fc27.x86_64                   50/112
                                    Verifying        : sscg-2.3.3-1.fc27.x86_64                            51/112
                                    Verifying        : mariadb-config-3:10.2.12-5.fc27.x86_64              52/112
                                    Verifying        : apr-1.6.3-1.fc27.x86_64                             53/112
                                    Verifying        : apr-util-1.6.1-2.fc27.x86_64                        54/112
                                    Verifying        : mod_http2-1.10.13-1.fc27.x86_64                     55/112
                                    Verifying        : fontconfig-2.12.6-4.fc27.x86_64                     56/112
                                    Verifying        : libtiff-4.0.9-2.fc27.x86_64                         57/112
                                    Verifying        : jbigkit-libs-2.1-8.fc27.x86_64                      58/112
                                    Verifying        : libwebp-0.6.1-1.fc27.x86_64                         59/112
                                    Verifying        : mariadb-libs-3:10.2.12-5.fc27.x86_64                60/112
                                    Verifying        : mariadb-3:10.2.12-5.fc27.x86_64                     61/112
                                    Verifying        : perl-Exporter-5.72-395.fc27.noarch                  62/112
                                    Verifying        : perl-File-Temp-0.230.400-394.fc27.noarch            63/112
                                    Verifying        : perl-Getopt-Long-1:2.50-3.fc27.noarch               64/112
                                    Verifying        : perl-Carp-1.42-394.fc27.noarch                      65/112
                                    Verifying        : perl-File-Path-2.15-1.fc27.noarch                   66/112
                                    Verifying        : perl-PathTools-3.67-395.fc27.x86_64                 67/112
                                    Verifying        : perl-Scalar-List-Utils-3:1.48-1.fc27.x86_64         68/112
                                    Verifying        : perl-constant-1.33-395.fc27.noarch                  69/112
                                    Verifying        : perl-parent-1:0.236-394.fc27.noarch                 70/112
                                    Verifying        : perl-Pod-Usage-4:1.69-394.fc27.noarch               71/112
                                    Verifying        : perl-Text-ParseWords-3.30-394.fc27.noarch           72/112
                                    Verifying        : perl-Pod-Perldoc-3.28-395.fc27.noarch               73/112
                                    Verifying        : perl-HTTP-Tiny-0.070-394.fc27.noarch                74/112
                                    Verifying        : perl-Pod-Simple-1:3.35-394.fc27.noarch              75/112
                                    Verifying        : perl-MIME-Base64-3.15-395.fc27.x86_64               76/112
                                    Verifying        : perl-Time-Local-1:1.250-394.fc27.noarch             77/112
                                    Verifying        : perl-Pod-Escapes-1:1.07-394.fc27.noarch             78/112
                                    Verifying        : perl-Text-Tabs+Wrap-2013.0523-394.fc27.noarch       79/112
                                    Verifying        : perl-interpreter-4:5.26.1-402.fc27.x86_64           80/112
                                    Verifying        : perl-libs-4:5.26.1-402.fc27.x86_64                  81/112
                                    Verifying        : perl-Unicode-Normalize-1.25-395.fc27.x86_64         82/112
                                    Verifying        : perl-Errno-1.28-402.fc27.x86_64                     83/112
                                    Verifying        : fedora-logos-httpd-28.0.2-1.fc27.noarch             84/112
                                    Verifying        : perl-podlators-4.09-395.fc27.noarch                 85/112
                                    Verifying        : perl-Term-ANSIColor-4.06-395.fc27.noarch            86/112
                                    Verifying        : perl-Term-Cap-1.17-394.fc27.noarch                  87/112
                                    Verifying        : perl-Encode-4:2.94-16.fc27.x86_64                   88/112
                                    Verifying        : perl-Storable-1:2.62-395.fc27.x86_64                89/112
                                    Verifying        : perl-IO-1.38-402.fc27.x86_64                        90/112
                                    Verifying        : perl-Socket-4:2.027-1.fc27.x86_64                   91/112
                                    Verifying        : perl-macros-4:5.26.1-402.fc27.x86_64                92/112
                                    Verifying        : perl-threads-1:2.21-1.fc27.x86_64                   93/112
                                    Verifying        : perl-threads-shared-1.58-1.fc27.x86_64              94/112
                                    Verifying        : mariadb-backup-3:10.2.12-5.fc27.x86_64              95/112
                                    Verifying        : mariadb-gssapi-server-3:10.2.12-5.fc27.x86_64       96/112
                                    Verifying        : mariadb-rocksdb-engine-3:10.2.12-5.fc27.x86_64      97/112
                                    Verifying        : mariadb-server-utils-3:10.2.12-5.fc27.x86_64        98/112
                                    Verifying        : perl-DBI-1.637-1.fc27.x86_64                        99/112
                                    Verifying        : perl-Math-BigInt-1:1.9998.11-4.fc27.noarch         100/112
                                    Verifying        : mariadb-tokudb-engine-3:10.2.12-5.fc27.x86_64      101/112
                                    Verifying        : php-fpm-7.1.14-1.fc27.x86_64                       102/112
                                    Verifying        : nginx-filesystem-1:1.12.1-1.fc27.noarch            103/112
                                    Verifying        : perl-Mozilla-CA-20160104-6.fc27.noarch             104/112
                                    Verifying        : perl-IO-Socket-SSL-2.051-1.fc27.noarch             105/112
                                    Verifying        : perl-IO-Socket-IP-0.39-4.fc27.noarch               106/112
                                    Verifying        : perl-Net-SSLeay-1.81-4.fc27.x86_64                 107/112
                                    Verifying        : perl-URI-1.72-1.fc27.noarch                        108/112
                                    Verifying        : perl-Data-Dumper-2.167-398.fc27.x86_64             109/112
                                    Verifying        : perl-libnet-3.11-1.fc27.noarch                     110/112
                                    Verifying        : perl-Math-Complex-1.59-402.fc27.noarch             111/112
                                    Verifying        : perl-DBD-MySQL-4.043-6.fc27.x86_64                 112/112
                                  
                                  Installed:
                                    mariadb-server.x86_64 3:10.2.12-5.fc27
                                    mod_ssl.x86_64 1:2.4.29-1.fc27
                                    zabbix-server-mysql.x86_64 3.0.14-1.fc27
                                    zabbix-web-mysql.noarch 3.0.14-1.fc27
                                    mariadb-backup.x86_64 3:10.2.12-5.fc27
                                    mariadb-gssapi-server.x86_64 3:10.2.12-5.fc27
                                    mariadb-rocksdb-engine.x86_64 3:10.2.12-5.fc27
                                    mariadb-server-utils.x86_64 3:10.2.12-5.fc27
                                    mariadb-tokudb-engine.x86_64 3:10.2.12-5.fc27
                                    perl-IO-Socket-SSL.noarch 2.051-1.fc27
                                    perl-Mozilla-CA.noarch 20160104-6.fc27
                                    php-fpm.x86_64 7.1.14-1.fc27
                                    OpenIPMI-libs.x86_64 2.0.23-6.fc27
                                    apr.x86_64 1.6.3-1.fc27
                                    apr-util.x86_64 1.6.1-2.fc27
                                    bison.x86_64 3.0.4-8.fc27
                                    compat-openssl10.x86_64 1:1.0.2m-1.fc27
                                    dejavu-fonts-common.noarch 2.35-5.fc27
                                    dejavu-sans-fonts.noarch 2.35-5.fc27
                                    fedora-logos-httpd.noarch 28.0.2-1.fc27
                                    fontconfig.x86_64 2.12.6-4.fc27
                                    fontpackages-filesystem.noarch 1.44-19.fc27
                                    fping.x86_64 4.0-4.fc27
                                    gd.x86_64 2.2.5-1.fc27
                                    httpd.x86_64 2.4.29-1.fc27
                                    httpd-filesystem.noarch 2.4.29-1.fc27
                                    httpd-tools.x86_64 2.4.29-1.fc27
                                    iksemel.x86_64 1.5-0.1.git978b733.fc26
                                    jbigkit-libs.x86_64 2.1-8.fc27
                                    js-jquery1.noarch 1.12.4-4.fc27
                                    libX11.x86_64 1.6.5-4.fc27
                                    libX11-common.noarch 1.6.5-4.fc27
                                    libXau.x86_64 1.0.8-9.fc27
                                    libXpm.x86_64 3.5.12-4.fc27
                                    libjpeg-turbo.x86_64 1.5.3-1.fc27
                                    libtiff.x86_64 4.0.9-2.fc27
                                    libwebp.x86_64 0.6.1-1.fc27
                                    libxcb.x86_64 1.12-5.fc27
                                    libxslt.x86_64 1.1.29-4.fc27
                                    logrotate.x86_64 3.12.3-4.fc27
                                    m4.x86_64 1.4.18-5.fc27
                                    mailcap.noarch 2.1.48-2.fc27
                                    mariadb.x86_64 3:10.2.12-5.fc27
                                    mariadb-common.x86_64 3:10.2.12-5.fc27
                                    mariadb-config.x86_64 3:10.2.12-5.fc27
                                    mariadb-errmsg.x86_64 3:10.2.12-5.fc27
                                    mariadb-libs.x86_64 3:10.2.12-5.fc27
                                    mod_http2.x86_64 1.10.13-1.fc27
                                    net-snmp-libs.x86_64 1:5.7.3-26.fc27
                                    nginx-filesystem.noarch 1:1.12.1-1.fc27
                                    perl-Carp.noarch 1.42-394.fc27
                                    perl-DBD-MySQL.x86_64 4.043-6.fc27
                                    perl-DBI.x86_64 1.637-1.fc27
                                    perl-Data-Dumper.x86_64 2.167-398.fc27
                                    perl-Encode.x86_64 4:2.94-16.fc27
                                    perl-Errno.x86_64 1.28-402.fc27
                                    perl-Exporter.noarch 5.72-395.fc27
                                    perl-File-Path.noarch 2.15-1.fc27
                                    perl-File-Temp.noarch 0.230.400-394.fc27
                                    perl-Getopt-Long.noarch 1:2.50-3.fc27
                                    perl-HTTP-Tiny.noarch 0.070-394.fc27
                                    perl-IO.x86_64 1.38-402.fc27
                                    perl-IO-Socket-IP.noarch 0.39-4.fc27
                                    perl-MIME-Base64.x86_64 3.15-395.fc27
                                    perl-Math-BigInt.noarch 1:1.9998.11-4.fc27
                                    perl-Math-Complex.noarch 1.59-402.fc27
                                    perl-Net-SSLeay.x86_64 1.81-4.fc27
                                    perl-PathTools.x86_64 3.67-395.fc27
                                    perl-Pod-Escapes.noarch 1:1.07-394.fc27
                                    perl-Pod-Perldoc.noarch 3.28-395.fc27
                                    perl-Pod-Simple.noarch 1:3.35-394.fc27
                                    perl-Pod-Usage.noarch 4:1.69-394.fc27
                                    perl-Scalar-List-Utils.x86_64 3:1.48-1.fc27
                                    perl-Socket.x86_64 4:2.027-1.fc27
                                    perl-Storable.x86_64 1:2.62-395.fc27
                                    perl-Term-ANSIColor.noarch 4.06-395.fc27
                                    perl-Term-Cap.noarch 1.17-394.fc27
                                    perl-Text-ParseWords.noarch 3.30-394.fc27
                                    perl-Text-Tabs+Wrap.noarch 2013.0523-394.fc27
                                    perl-Time-Local.noarch 1:1.250-394.fc27
                                    perl-URI.noarch 1.72-1.fc27
                                    perl-Unicode-Normalize.x86_64 1.25-395.fc27
                                    perl-constant.noarch 1.33-395.fc27
                                    perl-interpreter.x86_64 4:5.26.1-402.fc27
                                    perl-libnet.noarch 3.11-1.fc27
                                    perl-libs.x86_64 4:5.26.1-402.fc27
                                    perl-macros.x86_64 4:5.26.1-402.fc27
                                    perl-parent.noarch 1:0.236-394.fc27
                                    perl-podlators.noarch 4.09-395.fc27
                                    perl-threads.x86_64 1:2.21-1.fc27
                                    perl-threads-shared.x86_64 1.58-1.fc27
                                    php.x86_64 7.1.14-1.fc27
                                    php-bcmath.x86_64 7.1.14-1.fc27
                                    php-cli.x86_64 7.1.14-1.fc27
                                    php-common.x86_64 7.1.14-1.fc27
                                    php-gd.x86_64 7.1.14-1.fc27
                                    php-json.x86_64 7.1.14-1.fc27
                                    php-ldap.x86_64 7.1.14-1.fc27
                                    php-mbstring.x86_64 7.1.14-1.fc27
                                    php-mysqlnd.x86_64 7.1.14-1.fc27
                                    php-pdo.x86_64 7.1.14-1.fc27
                                    php-xml.x86_64 7.1.14-1.fc27
                                    psmisc.x86_64 23.1-2.fc27
                                    sscg.x86_64 2.3.3-1.fc27
                                    traceroute.x86_64 3:2.1.0-5.fc27
                                    unixODBC.x86_64 2.3.4-7.fc27
                                    web-assets-filesystem.noarch 5-6.fc27
                                    web-assets-httpd.noarch 5-6.fc27
                                    zabbix.x86_64 3.0.14-1.fc27
                                    zabbix-dbfiles-mysql.noarch 3.0.14-1.fc27
                                    zabbix-server.noarch 3.0.14-1.fc27
                                    zabbix-web.noarch 3.0.14-1.fc27
                                  
                                  Complete!
                                  Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mari                         adb.service.
                                  Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mar                         iadb.service.
                                  Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /u                         sr/lib/systemd/system/mariadb.service.
                                  
                                  NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
                                        SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
                                  
                                  In order to log into MariaDB to secure it, we'll need the current
                                  password for the root user.  If you've just installed MariaDB, and
                                  you haven't set the root password yet, the password will be blank,
                                  so you should just press enter here.
                                  
                                  Enter current password for root (enter for none):
                                  OK, successfully used password, moving on...
                                  
                                  Setting the root password ensures that nobody can log into the MariaDB
                                  root user without the proper authorisation.
                                  
                                  Set root password? [Y/n] y
                                  New password:
                                  Re-enter new password:
                                  Password updated successfully!
                                  Reloading privilege tables..
                                   ... Success!
                                  
                                  
                                  By default, a MariaDB installation has an anonymous user, allowing anyone
                                  to log into MariaDB without having to have a user account created for
                                  them.  This is intended only for testing, and to make the installation
                                  go a bit smoother.  You should remove them before moving into a
                                  production environment.
                                  
                                  Remove anonymous users? [Y/n] y
                                   ... Success!
                                  
                                  Normally, root should only be allowed to connect from 'localhost'.  This
                                  ensures that someone cannot guess at the root password from the network.
                                  
                                  Disallow root login remotely? [Y/n] y
                                   ... Success!
                                  
                                  By default, MariaDB comes with a database named 'test' that anyone can
                                  access.  This is also intended only for testing, and should be removed
                                  before moving into a production environment.
                                  
                                  Remove test database and access to it? [Y/n] y
                                   - Dropping test database...
                                   ... Success!
                                   - Removing privileges on test database...
                                   ... Success!
                                  
                                  Reloading the privilege tables will ensure that all changes made so far
                                  will take effect immediately.
                                  
                                  Reload privilege tables now? [Y/n] y
                                   ... Success!
                                  
                                  Cleaning up...
                                  
                                  All done!  If you've completed all of the above steps, your MariaDB
                                  installation should now be secure.
                                  
                                  Thanks for using MariaDB!
                                  Enter password:
                                  <?php
                                  // Zabbix GUI configuration file.
                                  global $DB;
                                  
                                  $DB['TYPE']     = 'MYSQL';
                                  $DB['SERVER']   = 'localhost';
                                  $DB['PORT']     = '0';
                                  $DB['DATABASE'] = 'zabbix';
                                  $DB['USER']     = 'zabbix';
                                  $DB['PASSWORD'] = 'REDACTED';
                                  
                                  // Schema name. Used for IBM DB2 and PostgreSQL.
                                  $DB['SCHEMA'] = '';
                                  
                                  $ZBX_SERVER      = 'localhost';
                                  $ZBX_SERVER_PORT = '10051';
                                  $ZBX_SERVER_NAME = '';
                                  
                                  $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
                                  ?>
                                  success
                                  success
                                  success
                                  success
                                  success
                                  ./zabbix_installer.sh: line 80: checkmodule: command not found
                                  

                                  What happens when you type the command checkmodule or semanage or semodule in cli?

                                  N 1 Reply Last reply Reply Quote 0
                                  • N
                                    NashBrydges @Obsolesce
                                    last edited by

                                    @tim_g said in Install Zabbix on Fedora 27:

                                    What happens when you type the command checkmodule in cli?

                                    -bash: checkmodule: command not found

                                    O 1 Reply Last reply Reply Quote 0
                                    • O
                                      Obsolesce @NashBrydges
                                      last edited by

                                      @nashbrydges said in Install Zabbix on Fedora 27:

                                      @tim_g said in Install Zabbix on Fedora 27:

                                      What happens when you type the command checkmodule in cli?

                                      -bash: checkmodule: command not found

                                      run dnf install policycoreutils-python-utils and try the semodule command by itself.

                                      N 1 Reply Last reply Reply Quote 0
                                      • dbeatoD
                                        dbeato
                                        last edited by

                                        I hate to be a beggar but can you add the Let's Encrypt Steps for this 🙂 , feature request 😉

                                        A 1 Reply Last reply Reply Quote 0
                                        • A
                                          Alex Sage @dbeato
                                          last edited by

                                          @dbeato Reverse proxy it using NGINX.

                                          dbeatoD 1 Reply Last reply Reply Quote 0
                                          • dbeatoD
                                            dbeato @Alex Sage
                                            last edited by

                                            @aaronstuder said in Install Zabbix on Fedora 27:

                                            @dbeato Reverse proxy it using NGINX.

                                            Well duh, I didn’t think that through...

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post