Join the community today
Become a Member

Sysadmin Broken IPv6 Yum updates, PHP, Nginx recompile issues.

Discussion in 'System Administration' started by Gavin, Jun 29, 2017.

  1. Gavin

    Gavin New Member

    12
    5
    3
    Mar 18, 2017
    Ratings:
    +7
    Local Time:
    2:22 AM
    1.13.x
    10.1.x
    Please fill in any relevant information that applies to you:
    • CentOS Version: CentOS 7 64bit ?
    • Centmin Mod Version Installed: 123.09beta01 (latest)
    • Nginx Version Installed: 1.13.1
    • PHP Version Installed: 7.1.6
    • MariaDB MySQL Version Installed: 10.1.24
    • When was last time updated Centmin Mod code base ? : yesterday
    • Persistent Config: Do you have any persistent config file options set in /etc/centminmod/custom_config.inc ? You can check via this command:

      cat /etc/centminmod/custom_config.inc


      Post output in CODE tags
    • Code:
      NGINX_PAGESPEED=y
      NGINX_ZLIBCUSTOM='y'
      ORESTY_LUANGINX=n
      NGINX_XSLT='n'
      NGINX_LIBBROTLI='y'
      NGXDYNAMIC_XSLT='n'
      NGXDYNAMIC_IMAGEFILTER='y'
      NGXDYNAMIC_GEOIP='y'
      NGXDYNAMIC_STREAM='y'
      NGXDYNAMIC_HEADERSMORE='y'
      NGXDYNAMIC_SETMISC='y'
      NGXDYNAMIC_ECHO='y'
      NGXDYNAMIC_SRCCACHE='y'
      NGXDYNAMIC_MEMC='y'
      NGXDYNAMIC_REDISTWO='y'
      NGXDYNAMIC_NGXPAGESPEED='y'
      NGXDYNAMIC_BROTLI='y'
      PHPMSSQL='y'
      PHP_PGO='y'
      PHP_PGO_CENTOSSIX='y'
      NGINX_DEVTOOLSETGCC='y'
      GENERAL_DEVTOOLSETGCC='y'
      CLANG='n'
      OPENSSL_VERSION='1.1.0f'
      LIBRESSL_SWITCH='n'
      NGINX_HPACK='y'
      NGX_GSPLITDWARF='y'
      PHP_GSPLITDWARF='y'
      NGX_LDGOLD='y'
      
    For the past few days when ever I log into my server the initial load screen took forever to load. After realizing that it was related to the yum update checks or when I tried to update/recompile Nginx or PHP and testing another server on another host that has an identical setup but no issues I contacted my hosting support.

    They told me to

    Did this and nothing seemed to change. Yum check-update and
    yum update --disableplugin=priorities --enablerepo=remi both hang up (they will complete after like 3 or 4 minutes.

    The Nginx and PHP recompiles don't even after waiting about 1.5 hours for each. I told them nothing changed and

    They then told me:


    Just wanted to see if anyone had thoughts or suggestions on what exactly I should do or ask my support?
     
  2. eva2000

    eva2000 Administrator Staff Member

    54,946
    12,240
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,812
    Local Time:
    5:22 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    who's the web host ? which plan ? location of VPS ?

    was it fast when you did initial install or was it always slow ?

    what is output for these commands
    Code (Text):
    yum clean all
    time yum repolist all
    

    Code (Text):
    time yum -v -d 9 list updates
    

    Code (Text):
    time yum -v -d 9 list updates --disableplugin=fastestmirror
    

    Code (Text):
    cat /root/centminlogs/yum-timedhosts.txt
    

    Code (Text):
    sort -k2 /var/cache/yum/x86_64/7/timedhosts.txt
    

    Code (Text):
    cat /etc/resolv.conf
    

    Code (Text):
    tail -1 $(ls -rt /root/centminlogs/cmm-login-git-checks* | tail -1)
    

    Code (Text):
    curl -Iv https://nginx.org/en/download.html
    

    For posting code you might want to use CODE tags for code How to use forum BBCODE code tags :)

    Centmin Mod on initial login has a few checks it does
    • yum update checks
    • nginx version checks
    on a few of my slower login servers with 123.09beta01, I am seeing it hang around nginx version check

    process listing output command
    Code (Text):
    ps aufxw
    

    shows at hang time
    Code (Text):
    root     22322  0.0  0.0   9516  1728 pts/1    S+   17:07   0:00              |   \_ /bin/bash /usr/local/bin/dmotd
    root     22323  0.0  0.1 152536  4504 pts/1    S+   17:07   0:00              |       \_ curl -sL https://nginx.org/en/download.html
    root     22324  0.0  0.0   9096   892 pts/1    S+   17:07   0:00              |       \_ grep -E -o nginx\-[0-9.]+\.tar[.a-z]*
    root     22325  0.0  0.0   9876   964 pts/1    S+   17:07   0:00              |       \_ awk -F nginx- /.tar.gz$/ {print $2}
    root     22326  0.0  0.0  13324  1592 pts/1    S+   17:07   0:00              |       \_ sed -e s|.tar.gz||g
    root     22327  0.0  0.0   4324   644 pts/1    S+   17:07   0:00              |       \_ head -n 1
    root     22319  0.0  0.0   4316   704 pts/1    S+   17:07   0:00              \_ tee /root/centminlogs/cmm-login-git-checks_280617-170709.log
    

    so will check that too for me it was IPv6 networking related which I should of disabled but it was enabled
    Code (Text):
    curl -Iv https://nginx.org/en/download.html
    * About to connect() to nginx.org port 443 (#0)
    *   Trying 2606:7100:1:69::3f...
    * Connection timed out
    *   Trying 2001:1af8:4060:a004:21::e3...
    * Connection timed out
    *   Trying 206.251.255.63...
    * Connected to nginx.org (206.251.255.63) port 443 (#0)
    

    to disable IPv6 add to the bottom of /etc/sysctl.conf these 2 lines
    Code (Text):
    net.ipv6.conf.all.disable_ipv6 = 1
    net.ipv6.conf.default.disable_ipv6 = 1
    

    then update via
    Code (Text):
    sysctl -p
    

    recheck and fast now connecting via IPv4 ip for nginx.org
    Code (Text):
     curl -Iv https://nginx.org/en/download.html
    * About to connect() to nginx.org port 443 (#0)
    *   Trying 95.211.80.227...
    * Connected to nginx.org (95.211.80.227) port 443 (#0)
    

    I tried re-enabling IPv6 removing the 2 added /etc/sysctl.conf and rebooted my server to see if it was network related and that fixed it for IPv6 connection to nginx.org and allowed fast ssh login to Centmin Mod 123.09beta01 based server as for me it was related to IPv6 issues
    Code (Text):
    curl -Iv https://nginx.org/en/download.html 
    * About to connect() to nginx.org port 443 (#0)
    *   Trying 2606:7100:1:69::3f...
    * Connected to nginx.org (2606:7100:1:69::3f) port 443 (#0)
    
     
    Last edited: Jun 29, 2017
  3. Gavin

    Gavin New Member

    12
    5
    3
    Mar 18, 2017
    Ratings:
    +7
    Local Time:
    2:22 AM
    1.13.x
    10.1.x
    SSD Nodes, 8 GB 4 CPU plan, NYC

    It was fast, this issue only popped up in the last few days. Initally I didn't think much of it and just figured the yum update check was slow. It wasnt until I tried to update/recompile Nginx and that I had no problem updating Nginx on a 1 GB DO droplet that I realized there was a bigger issue.

    Output for commands:

    Code (Text):
    yum clean all
    Loaded plugins: fastestmirror, priorities
    Cleaning repos: base centos-sclo-rh centos-sclo-sclo epel extras mariadb rpmforge updates varnish-4.1
    Cleaning up everything
    Cleaning up list of fastest mirrors
    


    Code (Text):
    time yum repolist all
    Loaded plugins: fastestmirror, priorities
    base                                                                                                                | 3.6 kB  00:00:00
    centos-sclo-rh                                                                                                      | 2.9 kB  00:00:00
    centos-sclo-sclo                                                                                                    | 2.9 kB  00:00:00
    epel/x86_64/metalink                                                                                                |  14 kB  00:00:00
    epel                                                                                                                | 4.3 kB  00:00:00
    extras                                                                                                              | 3.4 kB  00:00:00
    mariadb                                                                                                             | 2.9 kB  00:00:00
    rpmforge                                                                                                            | 1.9 kB  00:00:00
    updates                                                                                                             | 3.4 kB  00:00:00
    varnish-4.1                                                                                                         |  951 B  00:00:00
    (1/10): base/7/x86_64/group_gz                                                                                      | 155 kB  00:00:15
    (2/10): epel/x86_64/group_gz                                                                                        | 170 kB  00:00:15
    (3/10): epel/x86_64/updateinfo                                                                                      | 787 kB  00:00:00
    (4/10): base/7/x86_64/primary_db                                                                                    | 5.6 MB  00:00:15
    (5/10): epel/x86_64/primary_db                                                                                      | 4.8 MB  00:00:00
    (6/10): mariadb/primary_db                                                                                          |  19 kB  00:00:00
    (7/10): centos-sclo-sclo/x86_64/primary_db                                                                          | 154 kB  00:00:15
    (8/10): centos-sclo-rh/x86_64/primary_db                                                                            | 2.5 MB  00:00:15
    (9/10): updates/7/x86_64/primary_db                                                                                 | 6.4 MB  00:00:15
    (10/10): extras/7/x86_64/primary_db                                                                                 | 168 kB  00:00:15
    (1/2): varnish-4.1/x86_64/primary                                                                                   |  11 kB  00:00:00
    (2/2): rpmforge/primary_db                                                                                          | 125 kB  00:00:15
    Determining fastest mirrors
     * base: mirror.trouble-free.net
     * epel: mirrors.mit.edu
     * extras: linux.cc.lehigh.edu
     * rpmforge: mirror.us.leaseweb.net
     * updates: mirror.solarvps.com
    varnish-4.1                                                                                                                          37/37
    371 packages excluded due to repository priority protections
    repo id                                repo name                                                                        status
    C7.0.1406-base/x86_64                  CentOS-7.0.1406 - Base                                                           disabled
    C7.0.1406-centosplus/x86_64            CentOS-7.0.1406 - CentOSPlus                                                     disabled
    C7.0.1406-extras/x86_64                CentOS-7.0.1406 - Extras                                                         disabled
    C7.0.1406-fasttrack/x86_64             CentOS-7.0.1406 - CentOSPlus                                                     disabled
    C7.0.1406-updates/x86_64               CentOS-7.0.1406 - Updates                                                        disabled
    C7.1.1503-base/x86_64                  CentOS-7.1.1503 - Base                                                           disabled
    C7.1.1503-centosplus/x86_64            CentOS-7.1.1503 - CentOSPlus                                                     disabled
    C7.1.1503-extras/x86_64                CentOS-7.1.1503 - Extras                                                         disabled
    C7.1.1503-fasttrack/x86_64             CentOS-7.1.1503 - CentOSPlus                                                     disabled
    C7.1.1503-updates/x86_64               CentOS-7.1.1503 - Updates                                                        disabled
    C7.2.1511-base/x86_64                  CentOS-7.2.1511 - Base                                                           disabled
    C7.2.1511-centosplus/x86_64            CentOS-7.2.1511 - CentOSPlus                                                     disabled
    C7.2.1511-extras/x86_64                CentOS-7.2.1511 - Extras                                                         disabled
    C7.2.1511-fasttrack/x86_64             CentOS-7.2.1511 - CentOSPlus                                                     disabled
    C7.2.1511-updates/x86_64               CentOS-7.2.1511 - Updates                                                        disabled
    base/7/x86_64                          CentOS-7 - Base                                                                  enabled:  7261+2102
    base-debuginfo/x86_64                  CentOS-7 - Debuginfo                                                             disabled
    base-source/7                          CentOS-7 - Base Sources                                                          disabled
    c7-media                               CentOS-7 - Media                                                                 disabled
    centos-sclo-rh/x86_64                  CentOS-7 - SCLo rh                                                               enabled:   5394+151
    centos-sclo-rh-debuginfo/x86_64        CentOS-7 - SCLo rh Debuginfo                                                     disabled
    centos-sclo-rh-source                  CentOS-7 - SCLo rh Sources                                                       disabled
    centos-sclo-rh-testing/x86_64          CentOS-7 - SCLo rh Testing                                                       disabled
    centos-sclo-sclo/x86_64                CentOS-7 - SCLo sclo                                                             enabled:        403
    centos-sclo-sclo-debuginfo/x86_64      CentOS-7 - SCLo sclo Debuginfo                                                   disabled
    centos-sclo-sclo-source                CentOS-7 - SCLo sclo Sources                                                     disabled
    centos-sclo-sclo-testing/x86_64        CentOS-7 - SCLo sclo Testing                                                     disabled
    centosplus/7/x86_64                    CentOS-7 - Plus                                                                  disabled
    centosplus-source/7                    CentOS-7 - Plus Sources                                                          disabled
    cr/7/x86_64                            CentOS-7 - cr                                                                    disabled
    epel/x86_64                            Extra Packages for Enterprise Linux 7 - x86_64                                   enabled: 10809+1046
    epel-debuginfo/x86_64                  Extra Packages for Enterprise Linux 7 - x86_64 - Debug                           disabled
    epel-source/x86_64                     Extra Packages for Enterprise Linux 7 - x86_64 - Source                          disabled
    epel-testing/x86_64                    Extra Packages for Enterprise Linux 7 - Testing - x86_64                         disabled
    epel-testing-debuginfo/x86_64          Extra Packages for Enterprise Linux 7 - Testing - x86_64 - Debug                 disabled
    epel-testing-source/x86_64             Extra Packages for Enterprise Linux 7 - Testing - x86_64 - Source                disabled
    extras/7/x86_64                        CentOS-7 - Extras                                                                enabled:      381+2
    extras-source/7                        CentOS-7 - Extras Sources                                                        disabled
    fasttrack/7/x86_64                     CentOS-7 - fasttrack                                                             disabled
    mariadb                                MariaDB                                                                          enabled:       14+2
    percona-experimental-noarch/7          Percona-Experimental YUM repository - noarch                                     disabled
    percona-experimental-source/7          Percona-Experimental YUM repository - Source packages                            disabled
    percona-experimental-x86_64/7/x86_64   Percona-Experimental YUM repository - x86_64                                     disabled
    percona-release-noarch/7               Percona-Release YUM repository - noarch                                          disabled
    percona-release-source/7               Percona-Release YUM repository - Source packages                                 disabled
    percona-release-x86_64/7/x86_64        Percona-Release YUM repository - x86_64                                          disabled
    percona-testing-noarch/7               Percona-Testing YUM repository - noarch                                          disabled
    percona-testing-source/7               Percona-Testing YUM repository - Source packages                                 disabled
    percona-testing-x86_64/7/x86_64        Percona-Testing YUM repository - x86_64                                          disabled
    !remi                                  Remi's RPM repository for Enterprise Linux 7 - x86_64                            disabled
    remi-debuginfo/x86_64                  Remi's RPM repository for Enterprise Linux 7 - x86_64 - debuginfo                disabled
    remi-php54                             Remi's PHP 5.4 RPM repository for Enterprise Linux 7 - x86_64                    disabled
    remi-php55                             Remi's PHP 5.5 RPM repository for Enterprise Linux 7 - x86_64                    disabled
    remi-php55-debuginfo/x86_64            Remi's PHP 5.5 RPM repository for Enterprise Linux 7 - x86_64 - debuginfo        disabled
    remi-php56                             Remi's PHP 5.6 RPM repository for Enterprise Linux 7 - x86_64                    disabled
    remi-php56-debuginfo/x86_64            Remi's PHP 5.6 RPM repository for Enterprise Linux 7 - x86_64 - debuginfo        disabled
    remi-php70                             Remi's PHP 7.0 RPM repository for Enterprise Linux 7 - x86_64                    disabled
    remi-php70-debuginfo/x86_64            Remi's PHP 7.0 RPM repository for Enterprise Linux 7 - x86_64 - debuginfo        disabled
    remi-php70-test                        Remi's PHP 7.0 test RPM repository for Enterprise Linux 7 - x86_64               disabled
    remi-php70-test-debuginfo/x86_64       Remi's PHP 7.0 test RPM repository for Enterprise Linux 7 - x86_64 - debuginfo   disabled
    remi-php71                             Remi's PHP 7.1 RPM repository for Enterprise Linux 7 - x86_64                    disabled
    remi-php71-debuginfo/x86_64            Remi's PHP 7.1 RPM repository for Enterprise Linux 7 - x86_64 - debuginfo        disabled
    remi-php71-test                        Remi's PHP 7.1 test RPM repository for Enterprise Linux 7 - x86_64               disabled
    remi-php71-test-debuginfo/x86_64       Remi's PHP 7.1 test RPM repository for Enterprise Linux 7 - x86_64 - debuginfo   disabled
    remi-safe                              Safe Remi's RPM repository for Enterprise Linux 7 - x86_64                       disabled
    remi-test                              Remi's test RPM repository for Enterprise Linux 7 - x86_64                       disabled
    remi-test-debuginfo/x86_64             Remi's test RPM repository for Enterprise Linux 7 - x86_64 - debuginfo           disabled
    rpmforge                               RHEL 7 - RPMforge.net - dag                                                      enabled:     151+94
    rpmforge-extras                        RHEL 7 - RPMforge.net - extras                                                   disabled
    rpmforge-testing                       RHEL 7 - RPMforge.net - testing                                                  disabled
    updates/7/x86_64                       CentOS-7 - Updates                                                               enabled:   1552+333
    updates-source/7                       CentOS-7 - Updates Sources                                                       disabled
    varnish-4.1/x86_64                     Varnish Cache 4.1 for Enterprise Linux                                           enabled:         37
    repolist: 26002
    
    real    4m26.008s
    user    0m5.806s
    sys    0m0.667s
    


    Code (Text):
    time yum -v -d 9 list updates
    Loading "fastestmirror" plugin
    Loading "priorities" plugin
    Config time: 0.007
    Yum version: 3.4.3
    rpmdb time: 0.000
    Building updates object
    Setting up Package Sacks
    Loading mirror speeds from cached hostfile
     * base: mirror.trouble-free.net
     * epel: mirrors.mit.edu
     * extras: linux.cc.lehigh.edu
     * rpmforge: mirror.us.leaseweb.net
     * updates: mirror.solarvps.com
     --> CUnit-devel-2.1.3-13.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> CUnit-2.1.3-13.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-6.2.1-3.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-6.2.1-3.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libmpx-6.2.1-3.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-5.3.1-6.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-5.2.1-2.2.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-5.2.1-2.2.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libmpx-5.3.1-6.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libmpx-5.2.1-2.2.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-5.3.1-6.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-4.9.2-6.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-4.9.2-6.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libasan-4.9.2-6.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> nss_wrapper-1.0.3-1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> advancecomp-1.19-1.el7.x86_64 from epel excluded (priority)
     --> 1:ceph-common-0.80.7-0.8.el7.x86_64 from epel excluded (priority)
     --> clang-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> clang-analyzer-3.4.2-8.el7.noarch from epel excluded (priority)
     --> clang-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> cloud-init-0.7.5-6.el7.x86_64 from epel excluded (priority)
     --> cloud-utils-0.27-10.el7.x86_64 from epel excluded (priority)
     --> cloud-utils-growpart-0.27-10.el7.x86_64 from epel excluded (priority)
     --> conntrack-tools-1.4.2-3.el7.x86_64 from epel excluded (priority)
     --> createrepo_c-0.10.0-6.el7.x86_64 from epel excluded (priority)
     --> createrepo_c-devel-0.10.0-6.el7.x86_64 from epel excluded (priority)
     --> createrepo_c-libs-0.10.0-6.el7.x86_64 from epel excluded (priority)
     --> epel-release-7-9.noarch from epel excluded (priority)
     --> euca2ools-3.4.1-1.el7.noarch from epel excluded (priority)
     --> finch-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> finch-devel-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> golang-github-coreos-go-systemd-devel-2-1.el7.noarch from epel excluded (priority)
     --> golang-github-godbus-dbus-devel-0-0.1.gitcb98efb.el7.noarch from epel excluded (priority)
     --> golang-github-syndtr-gocapability-devel-0-0.5.git3454319.el7.x86_64 from epel excluded (priority)
     --> gperftools-2.4-5.el7.x86_64 from epel excluded (priority)
     --> gperftools-devel-2.4-5.el7.x86_64 from epel excluded (priority)
     --> gperftools-libs-2.4-5.el7.x86_64 from epel excluded (priority)
     --> hsakmt-1.0.0-6.el7.x86_64 from epel excluded (priority)
     --> hsakmt-devel-1.0.0-6.el7.x86_64 from epel excluded (priority)
     --> koji-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-builder-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-hub-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-hub-plugins-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-utils-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-vm-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-web-1.11.0-1.el7.noarch from epel excluded (priority)
     --> libcomps-0.1.6-13.el7.x86_64 from epel excluded (priority)
     --> libcomps-devel-0.1.6-13.el7.x86_64 from epel excluded (priority)
     --> libcomps-doc-0.1.6-13.el7.noarch from epel excluded (priority)
     --> libev-4.15-3.el7.x86_64 from epel excluded (priority)
     --> libev-devel-4.15-3.el7.x86_64 from epel excluded (priority)
     --> libev-libevent-devel-4.15-3.el7.x86_64 from epel excluded (priority)
     --> libev-source-4.15-3.el7.noarch from epel excluded (priority)
     --> libgpod-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> libgpod-devel-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> libgpod-doc-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> libmspack-0.5-0.1.alpha.el7.x86_64 from epel excluded (priority)
     --> libmspack-devel-0.5-0.1.alpha.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cthelper-1.0.0-4.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cthelper-devel-1.0.0-4.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cttimeout-1.0.0-2.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cttimeout-devel-1.0.0-2.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_queue-1.0.2-2.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_queue-devel-1.0.2-2.el7.x86_64 from epel excluded (priority)
     --> libnftnl-1.0.6-1.el7.x86_64 from epel excluded (priority)
     --> libnftnl-devel-1.0.6-1.el7.x86_64 from epel excluded (priority)
     --> libntlm-1.3-0.6.el7.x86_64 from epel excluded (priority)
     --> libntlm-devel-1.3-0.6.el7.x86_64 from epel excluded (priority)
     --> libpmem-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmem-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemblk-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemblk-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemlog-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemlog-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemobj-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemobj-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmempool-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmempool-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> 1:librados2-0.80.7-0.8.el7.x86_64 from epel excluded (priority)
     --> 1:librbd1-0.80.7-0.8.el7.x86_64 from epel excluded (priority)
     --> librepo-1.7.16-1.el7.x86_64 from epel excluded (priority)
     --> librepo-devel-1.7.16-1.el7.x86_64 from epel excluded (priority)
     --> libssh-0.6.5-2.el7.x86_64 from epel excluded (priority)
     --> libssh-devel-0.6.5-2.el7.x86_64 from epel excluded (priority)
     --> libvdpau-0.9-1.el7.x86_64 from epel excluded (priority)
     --> libvdpau-devel-0.9-1.el7.x86_64 from epel excluded (priority)
     --> libvdpau-docs-0.9-1.el7.noarch from epel excluded (priority)
     --> libvmem-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvmem-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvmmalloc-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvmmalloc-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvncserver-0.9.9-0.9.el7.1.x86_64 from epel excluded (priority)
     --> libvncserver-devel-0.9.9-0.9.el7.1.x86_64 from epel excluded (priority)
     --> lldb-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> lldb-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-doc-3.4.2-8.el7.noarch from epel excluded (priority)
     --> llvm-libs-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-ocaml-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-ocaml-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-ocaml-doc-3.4.2-8.el7.noarch from epel excluded (priority)
     --> llvm-static-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> memkind-1.4.0-1.el7.x86_64 from epel excluded (priority)
     --> memkind-devel-1.4.0-1.el7.x86_64 from epel excluded (priority)
     --> mock-1.3.4-1.el7.noarch from epel excluded (priority)
     --> mock-lvm-1.3.4-1.el7.noarch from epel excluded (priority)
     --> mock-scm-1.3.4-1.el7.noarch from epel excluded (priority)
     --> 1:nftables-0.6-1.el7.x86_64 from epel excluded (priority)
     --> nvml-tools-1.1-1.el7.x86_64 from epel excluded (priority)
     --> perl-Crypt-PasswdMD5-1.3-0.16.el7.noarch from epel excluded (priority)
     --> perl-LWP-Protocol-https-6.04-3.el7.noarch from epel excluded (priority)
     --> perl-Mozilla-CA-20130114-4.el7.noarch from epel excluded (priority)
     --> pidgin-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> pidgin-devel-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> pidgin-perl-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> pigz-2.3.4-1.el7.x86_64 from epel excluded (priority)
     --> po4a-0.45-4.el7.noarch from epel excluded (priority)
     --> pprof-2.4-5.el7.noarch from epel excluded (priority)
     --> protobuf-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-compiler-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-devel-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-emacs-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-emacs-el-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-java-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-javadoc-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-lite-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-lite-devel-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-lite-static-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-python-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-static-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-vim-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> python-cheetah-2.4.4-4.el7.x86_64 from epel excluded (priority)
     --> python-enum34-1.0-4.el7.noarch from epel excluded (priority)
     --> 1:python-flask-0.10.1-3.el7.noarch from epel excluded (priority)
     --> 1:python-flask-doc-0.10.1-3.el7.noarch from epel excluded (priority)
     --> python-gpod-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> python-jsonpatch-1.2-2.el7.noarch from epel excluded (priority)
     --> python-kdcproxy-0.2.1-1.el7.noarch from epel excluded (priority)
     --> python-libcomps-0.1.6-13.el7.x86_64 from epel excluded (priority)
     --> python-libcomps-doc-0.1.6-13.el7.noarch from epel excluded (priority)
     --> python-librepo-1.7.16-1.el7.x86_64 from epel excluded (priority)
     --> 1:python-lockfile-0.9.1-4.el7.noarch from epel excluded (priority)
     --> python-markdown-2.4.1-1.el7.noarch from epel excluded (priority)
     --> python-munch-2.0.2-2.el7.noarch from epel excluded (priority)
     --> python-netifaces-0.5-4.el7.x86_64 from epel excluded (priority)
     --> python-ply-3.4-4.el7.noarch from epel excluded (priority)
     --> python-prettytable-0.7.2-1.el7.noarch from epel excluded (priority)
     --> python-pycparser-2.10-1.el7.noarch from epel excluded (priority)
     --> python-qpid-1.36.0-1.el7.noarch from epel excluded (priority)
     --> python-qpid-proton-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> python-qpid-proton-docs-0.17.0-2.el7.noarch from epel excluded (priority)
     --> python-requests-kerberos-0.7.0-2.el7.noarch from epel excluded (priority)
     --> python-saslwrapper-0.16-5.el7.x86_64 from epel excluded (priority)
     --> python-werkzeug-0.9.1-1.el7.noarch from epel excluded (priority)
     --> python-werkzeug-doc-0.9.1-1.el7.noarch from epel excluded (priority)
     --> qpid-proton-c-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-c-devel-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-c-docs-0.17.0-2.el7.noarch from epel excluded (priority)
     --> qpid-proton-cpp-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-cpp-devel-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-cpp-docs-0.17.0-2.el7.noarch from epel excluded (priority)
     --> qt5-assistant-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-designer-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-linguist-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qdbusviewer-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qdoc-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qhelpgenerator-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qt3d-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qt3d-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qt3d-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qt3d-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-common-5.6.1-3.el7.noarch from epel excluded (priority)
     --> qt5-qtbase-devel-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-doc-5.6.1-3.el7.noarch from epel excluded (priority)
     --> qt5-qtbase-examples-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-gui-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-mysql-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-odbc-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-postgresql-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-static-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtcanvas3d-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtcanvas3d-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtcanvas3d-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtconnectivity-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtconnectivity-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtconnectivity-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtconnectivity-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-devel-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-doc-5.6.1-5.el7.noarch from epel excluded (priority)
     --> qt5-qtdeclarative-examples-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-static-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdoc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> 1:qt5-qtenginio-1.6.1-2.el7.x86_64 from epel excluded (priority)
     --> 1:qt5-qtenginio-devel-1.6.1-2.el7.x86_64 from epel excluded (priority)
     --> 1:qt5-qtenginio-doc-1.6.1-2.el7.noarch from epel excluded (priority)
     --> 1:qt5-qtenginio-examples-1.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtgraphicaleffects-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtgraphicaleffects-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtimageformats-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtimageformats-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtlocation-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtlocation-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtlocation-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtlocation-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtmultimedia-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtmultimedia-devel-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtmultimedia-doc-5.6.1-3.el7.noarch from epel excluded (priority)
     --> qt5-qtmultimedia-examples-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtquickcontrols-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtquickcontrols-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtquickcontrols-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtscript-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtscript-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtscript-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtscript-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsensors-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsensors-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsensors-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtsensors-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtserialport-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtserialport-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtserialport-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtserialport-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsvg-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsvg-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsvg-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtsvg-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-common-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qttools-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qttools-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-clucene-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-designer-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-designercomponents-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-help-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-static-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttranslations-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtwebchannel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebchannel-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebchannel-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtwebchannel-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebsockets-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebsockets-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebsockets-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtwebsockets-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtx11extras-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtx11extras-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtx11extras-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtxmlpatterns-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtxmlpatterns-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtxmlpatterns-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtxmlpatterns-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-rpm-macros-5.6.1-3.el7.noarch from epel excluded (priority)
     --> ruby-saslwrapper-0.16-5.el7.x86_64 from epel excluded (priority)
     --> saslwrapper-0.16-5.el7.x86_64 from epel excluded (priority)
     --> saslwrapper-devel-0.16-5.el7.x86_64 from epel excluded (priority)
     --> scap-security-guide-0.1.5-4.el7.noarch from epel excluded (priority)
     --> t1utils-1.37-7.el7.x86_64 from epel excluded (priority)
     --> varnish-docs-4.0.4-3.el7.x86_64 from epel excluded (priority)
     --> varnish-libs-devel-4.0.4-3.el7.x86_64 from epel excluded (priority)
     --> WALinuxAgent-2.0.18-1.el7.noarch from epel excluded (priority)
     --> xmlsec1-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gcrypt-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gcrypt-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gnutls-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gnutls-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-nss-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-nss-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-openssl-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-openssl-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> jemalloc-3.6.0-1.el7.x86_64 from mariadb excluded (priority)
     --> jemalloc-devel-3.6.0-1.el7.x86_64 from mariadb excluded (priority)
     --> perl-ExtUtils-Depends-0.302-1.el7.rf.noarch from rpmforge excluded (priority)
     --> collectl-3.6.0-1.el7.rf.noarch from rpmforge excluded (priority)
     --> stress-1.0.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> pam_ssh-1.91-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> pamtester-0.1.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> python-crypto-2.6.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcpick-0.2.1-1.2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> SDL_gfx-2.0.24-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-sshfs-2.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> nomarch-1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> md5deep-3.7-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> multitail-6.2.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> jhead-2.8-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> socat-1.7.2.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> dd_rescue-1.45-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> netcdf-4.1.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> netcdf-devel-4.1.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> hwloc-1.4.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> cabextract-1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fail2ban-0.8.7.1-1.el7.rf.noarch from rpmforge excluded (priority)
     --> denyhosts-2.6-5.el7.rf.noarch from rpmforge excluded (priority)
     --> tinc-1.0.23-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> bcrypt-1.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> iftop-1.0-0.pre3.el7.rf.x86_64 from rpmforge excluded (priority)
     --> miniupnpc-devel-1.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> cpuid-0.0-20140123.1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcping-1.3.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ssdeep-2.9-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> clamav-milter-0.98.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> 1:ddrescue-1.18.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-dislocker-0.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> libewf-20100226-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> vnstat-1.11-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> conky-1.6.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> smem-1.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcpflow-0.21-1.2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ndoutils-1.4-0.beta8.1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> iperf-2.0.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> scapy-2.0.0.10-1.el7.rf.noarch from rpmforge excluded (priority)
     --> sdparm-1.08-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> nettle-devel-2.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> htop-1.0.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> miniupnpc-1.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> p7zip-plugins-9.20.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> utf8proc-1.1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> agrep-2.04-1.2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fping-3.10-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> pbzip2-1.0.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fio-2.1.10-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> convmv-1.15-1.el7.rf.noarch from rpmforge excluded (priority)
     --> colordiff-1.0.9-1.el7.rf.noarch from rpmforge excluded (priority)
     --> ntfsprogs-2013.1.13-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> python-crypto-2.0.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> lzip-1.15-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> clamav-milter-0.98.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ddclient-3.7.3-2.el7.rf.noarch from rpmforge excluded (priority)
     --> sshpass-1.05-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> perl-ExtUtils-PkgConfig-1.12-1.el7.rf.noarch from rpmforge excluded (priority)
     --> hwloc-devel-1.4.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-sshfs-2.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> latencytop-0.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> librsync-devel-0.9.7-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> x11vnc-0.9.13-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> nload-0.7.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> mirmon-2.8-1.el7.rf.noarch from rpmforge excluded (priority)
     --> nettle-2.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> syslinux-3.86-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcpreen-1.4.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-python-0.2.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ewftools-20100226-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> goocanvas-devel-0.15-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> unpaper-0.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> utf8proc-devel-1.1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> libewf-devel-20100226-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> bonnie++-1.96-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> source-highlight-3.1.6-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> rdiff-backup-1.2.8-4.el7.rf.x86_64 from rpmforge excluded (priority)
     --> arj-3.10.22-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> wdiff-0.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> source-highlight-devel-3.1.6-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> p7zip-9.20.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> lshw-gui-2.17-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> testdisk-6.14-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> httping-2.3.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> mytop-1.4-2.el7.rf.noarch from rpmforge excluded (priority)
     --> 1:ddrescue-1.17-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fio-2.1.7-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> librsync-0.9.7-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> conspy-1.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> goocanvas-0.15-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> SDL_gfx-devel-2.0.24-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> iodine-0.5.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> hexedit-1.2.10-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> lshw-2.17-1.el7.rf.x86_64 from rpmforge excluded (priority)
    371 packages excluded due to repository priority protections
    pkgsack time: 1.730
    up:Obs Init time: 0.124
    up:simple updates time: 0.004
    up:obs time: 0.003
    up:condense time: 0.000
    updates time: 1.957
    
    real    0m2.214s
    user    0m2.103s
    sys    0m0.104s
    


    Code (Text):
    time yum -v -d 9 list updates --disableplugin=fastestmirror
    Loading "priorities" plugin
    Config time: 0.006
    Yum version: 3.4.3
    rpmdb time: 0.000
    Building updates object
    Setting up Package Sacks
     --> CUnit-devel-2.1.3-13.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> CUnit-2.1.3-13.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-6.2.1-3.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-6.2.1-3.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libmpx-6.2.1-3.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-5.3.1-6.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-5.2.1-2.2.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-5.2.1-2.2.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libmpx-5.3.1-6.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libmpx-5.2.1-2.2.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-5.3.1-6.1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libtsan-4.9.2-6.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libcilkrts-4.9.2-6.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> libasan-4.9.2-6.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> nss_wrapper-1.0.3-1.el7.x86_64 from centos-sclo-rh excluded (priority)
     --> advancecomp-1.19-1.el7.x86_64 from epel excluded (priority)
     --> 1:ceph-common-0.80.7-0.8.el7.x86_64 from epel excluded (priority)
     --> clang-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> clang-analyzer-3.4.2-8.el7.noarch from epel excluded (priority)
     --> clang-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> cloud-init-0.7.5-6.el7.x86_64 from epel excluded (priority)
     --> cloud-utils-0.27-10.el7.x86_64 from epel excluded (priority)
     --> cloud-utils-growpart-0.27-10.el7.x86_64 from epel excluded (priority)
     --> conntrack-tools-1.4.2-3.el7.x86_64 from epel excluded (priority)
     --> createrepo_c-0.10.0-6.el7.x86_64 from epel excluded (priority)
     --> createrepo_c-devel-0.10.0-6.el7.x86_64 from epel excluded (priority)
     --> createrepo_c-libs-0.10.0-6.el7.x86_64 from epel excluded (priority)
     --> epel-release-7-9.noarch from epel excluded (priority)
     --> euca2ools-3.4.1-1.el7.noarch from epel excluded (priority)
     --> finch-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> finch-devel-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> golang-github-coreos-go-systemd-devel-2-1.el7.noarch from epel excluded (priority)
     --> golang-github-godbus-dbus-devel-0-0.1.gitcb98efb.el7.noarch from epel excluded (priority)
     --> golang-github-syndtr-gocapability-devel-0-0.5.git3454319.el7.x86_64 from epel excluded (priority)
     --> gperftools-2.4-5.el7.x86_64 from epel excluded (priority)
     --> gperftools-devel-2.4-5.el7.x86_64 from epel excluded (priority)
     --> gperftools-libs-2.4-5.el7.x86_64 from epel excluded (priority)
     --> hsakmt-1.0.0-6.el7.x86_64 from epel excluded (priority)
     --> hsakmt-devel-1.0.0-6.el7.x86_64 from epel excluded (priority)
     --> koji-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-builder-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-hub-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-hub-plugins-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-utils-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-vm-1.11.0-1.el7.noarch from epel excluded (priority)
     --> koji-web-1.11.0-1.el7.noarch from epel excluded (priority)
     --> libcomps-0.1.6-13.el7.x86_64 from epel excluded (priority)
     --> libcomps-devel-0.1.6-13.el7.x86_64 from epel excluded (priority)
     --> libcomps-doc-0.1.6-13.el7.noarch from epel excluded (priority)
     --> libev-4.15-3.el7.x86_64 from epel excluded (priority)
     --> libev-devel-4.15-3.el7.x86_64 from epel excluded (priority)
     --> libev-libevent-devel-4.15-3.el7.x86_64 from epel excluded (priority)
     --> libev-source-4.15-3.el7.noarch from epel excluded (priority)
     --> libgpod-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> libgpod-devel-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> libgpod-doc-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> libmspack-0.5-0.1.alpha.el7.x86_64 from epel excluded (priority)
     --> libmspack-devel-0.5-0.1.alpha.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cthelper-1.0.0-4.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cthelper-devel-1.0.0-4.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cttimeout-1.0.0-2.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_cttimeout-devel-1.0.0-2.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_queue-1.0.2-2.el7.x86_64 from epel excluded (priority)
     --> libnetfilter_queue-devel-1.0.2-2.el7.x86_64 from epel excluded (priority)
     --> libnftnl-1.0.6-1.el7.x86_64 from epel excluded (priority)
     --> libnftnl-devel-1.0.6-1.el7.x86_64 from epel excluded (priority)
     --> libntlm-1.3-0.6.el7.x86_64 from epel excluded (priority)
     --> libntlm-devel-1.3-0.6.el7.x86_64 from epel excluded (priority)
     --> libpmem-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmem-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemblk-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemblk-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemlog-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemlog-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemobj-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmemobj-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmempool-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libpmempool-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> 1:librados2-0.80.7-0.8.el7.x86_64 from epel excluded (priority)
     --> 1:librbd1-0.80.7-0.8.el7.x86_64 from epel excluded (priority)
     --> librepo-1.7.16-1.el7.x86_64 from epel excluded (priority)
     --> librepo-devel-1.7.16-1.el7.x86_64 from epel excluded (priority)
     --> libssh-0.6.5-2.el7.x86_64 from epel excluded (priority)
     --> libssh-devel-0.6.5-2.el7.x86_64 from epel excluded (priority)
     --> libvdpau-0.9-1.el7.x86_64 from epel excluded (priority)
     --> libvdpau-devel-0.9-1.el7.x86_64 from epel excluded (priority)
     --> libvdpau-docs-0.9-1.el7.noarch from epel excluded (priority)
     --> libvmem-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvmem-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvmmalloc-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvmmalloc-devel-1.1-1.el7.x86_64 from epel excluded (priority)
     --> libvncserver-0.9.9-0.9.el7.1.x86_64 from epel excluded (priority)
     --> libvncserver-devel-0.9.9-0.9.el7.1.x86_64 from epel excluded (priority)
     --> lldb-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> lldb-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-doc-3.4.2-8.el7.noarch from epel excluded (priority)
     --> llvm-libs-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-ocaml-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-ocaml-devel-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> llvm-ocaml-doc-3.4.2-8.el7.noarch from epel excluded (priority)
     --> llvm-static-3.4.2-8.el7.x86_64 from epel excluded (priority)
     --> memkind-1.4.0-1.el7.x86_64 from epel excluded (priority)
     --> memkind-devel-1.4.0-1.el7.x86_64 from epel excluded (priority)
     --> mock-1.3.4-1.el7.noarch from epel excluded (priority)
     --> mock-lvm-1.3.4-1.el7.noarch from epel excluded (priority)
     --> mock-scm-1.3.4-1.el7.noarch from epel excluded (priority)
     --> 1:nftables-0.6-1.el7.x86_64 from epel excluded (priority)
     --> nvml-tools-1.1-1.el7.x86_64 from epel excluded (priority)
     --> perl-Crypt-PasswdMD5-1.3-0.16.el7.noarch from epel excluded (priority)
     --> perl-LWP-Protocol-https-6.04-3.el7.noarch from epel excluded (priority)
     --> perl-Mozilla-CA-20130114-4.el7.noarch from epel excluded (priority)
     --> pidgin-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> pidgin-devel-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> pidgin-perl-2.10.7-25.el7.x86_64 from epel excluded (priority)
     --> pigz-2.3.4-1.el7.x86_64 from epel excluded (priority)
     --> po4a-0.45-4.el7.noarch from epel excluded (priority)
     --> pprof-2.4-5.el7.noarch from epel excluded (priority)
     --> protobuf-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-compiler-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-devel-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-emacs-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-emacs-el-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-java-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-javadoc-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-lite-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-lite-devel-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-lite-static-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-python-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-static-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> protobuf-vim-2.5.0-7.el7.x86_64 from epel excluded (priority)
     --> python-cheetah-2.4.4-4.el7.x86_64 from epel excluded (priority)
     --> python-enum34-1.0-4.el7.noarch from epel excluded (priority)
     --> 1:python-flask-0.10.1-3.el7.noarch from epel excluded (priority)
     --> 1:python-flask-doc-0.10.1-3.el7.noarch from epel excluded (priority)
     --> python-gpod-0.8.3-14.el7.x86_64 from epel excluded (priority)
     --> python-jsonpatch-1.2-2.el7.noarch from epel excluded (priority)
     --> python-kdcproxy-0.2.1-1.el7.noarch from epel excluded (priority)
     --> python-libcomps-0.1.6-13.el7.x86_64 from epel excluded (priority)
     --> python-libcomps-doc-0.1.6-13.el7.noarch from epel excluded (priority)
     --> python-librepo-1.7.16-1.el7.x86_64 from epel excluded (priority)
     --> 1:python-lockfile-0.9.1-4.el7.noarch from epel excluded (priority)
     --> python-markdown-2.4.1-1.el7.noarch from epel excluded (priority)
     --> python-munch-2.0.2-2.el7.noarch from epel excluded (priority)
     --> python-netifaces-0.5-4.el7.x86_64 from epel excluded (priority)
     --> python-ply-3.4-4.el7.noarch from epel excluded (priority)
     --> python-prettytable-0.7.2-1.el7.noarch from epel excluded (priority)
     --> python-pycparser-2.10-1.el7.noarch from epel excluded (priority)
     --> python-qpid-1.36.0-1.el7.noarch from epel excluded (priority)
     --> python-qpid-proton-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> python-qpid-proton-docs-0.17.0-2.el7.noarch from epel excluded (priority)
     --> python-requests-kerberos-0.7.0-2.el7.noarch from epel excluded (priority)
     --> python-saslwrapper-0.16-5.el7.x86_64 from epel excluded (priority)
     --> python-werkzeug-0.9.1-1.el7.noarch from epel excluded (priority)
     --> python-werkzeug-doc-0.9.1-1.el7.noarch from epel excluded (priority)
     --> qpid-proton-c-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-c-devel-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-c-docs-0.17.0-2.el7.noarch from epel excluded (priority)
     --> qpid-proton-cpp-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-cpp-devel-0.17.0-2.el7.x86_64 from epel excluded (priority)
     --> qpid-proton-cpp-docs-0.17.0-2.el7.noarch from epel excluded (priority)
     --> qt5-assistant-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-designer-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-linguist-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qdbusviewer-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qdoc-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qhelpgenerator-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qt3d-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qt3d-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qt3d-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qt3d-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-common-5.6.1-3.el7.noarch from epel excluded (priority)
     --> qt5-qtbase-devel-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-doc-5.6.1-3.el7.noarch from epel excluded (priority)
     --> qt5-qtbase-examples-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-gui-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-mysql-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-odbc-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-postgresql-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtbase-static-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtcanvas3d-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtcanvas3d-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtcanvas3d-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtconnectivity-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtconnectivity-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtconnectivity-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtconnectivity-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-devel-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-doc-5.6.1-5.el7.noarch from epel excluded (priority)
     --> qt5-qtdeclarative-examples-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdeclarative-static-5.6.1-5.el7.x86_64 from epel excluded (priority)
     --> qt5-qtdoc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> 1:qt5-qtenginio-1.6.1-2.el7.x86_64 from epel excluded (priority)
     --> 1:qt5-qtenginio-devel-1.6.1-2.el7.x86_64 from epel excluded (priority)
     --> 1:qt5-qtenginio-doc-1.6.1-2.el7.noarch from epel excluded (priority)
     --> 1:qt5-qtenginio-examples-1.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtgraphicaleffects-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtgraphicaleffects-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtimageformats-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtimageformats-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtlocation-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtlocation-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtlocation-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtlocation-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtmultimedia-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtmultimedia-devel-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtmultimedia-doc-5.6.1-3.el7.noarch from epel excluded (priority)
     --> qt5-qtmultimedia-examples-5.6.1-3.el7.x86_64 from epel excluded (priority)
     --> qt5-qtquickcontrols-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtquickcontrols-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtquickcontrols-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtscript-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtscript-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtscript-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtscript-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsensors-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsensors-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsensors-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtsensors-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtserialport-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtserialport-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtserialport-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtserialport-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsvg-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsvg-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtsvg-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtsvg-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-common-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qttools-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qttools-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-clucene-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-designer-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-designercomponents-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-libs-help-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttools-static-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qttranslations-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtwebchannel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebchannel-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebchannel-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtwebchannel-examples-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebsockets-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebsockets-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtwebsockets-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtwebsockets-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtx11extras-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtx11extras-devel-5.6.1-2.el7.x86_64 from epel excluded (priority)
     --> qt5-qtx11extras-doc-5.6.1-2.el7.noarch from epel excluded (priority)
     --> qt5-qtxmlpatterns-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtxmlpatterns-devel-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-qtxmlpatterns-doc-5.6.1-1.el7.noarch from epel excluded (priority)
     --> qt5-qtxmlpatterns-examples-5.6.1-1.el7.x86_64 from epel excluded (priority)
     --> qt5-rpm-macros-5.6.1-3.el7.noarch from epel excluded (priority)
     --> ruby-saslwrapper-0.16-5.el7.x86_64 from epel excluded (priority)
     --> saslwrapper-0.16-5.el7.x86_64 from epel excluded (priority)
     --> saslwrapper-devel-0.16-5.el7.x86_64 from epel excluded (priority)
     --> scap-security-guide-0.1.5-4.el7.noarch from epel excluded (priority)
     --> t1utils-1.37-7.el7.x86_64 from epel excluded (priority)
     --> varnish-docs-4.0.4-3.el7.x86_64 from epel excluded (priority)
     --> varnish-libs-devel-4.0.4-3.el7.x86_64 from epel excluded (priority)
     --> WALinuxAgent-2.0.18-1.el7.noarch from epel excluded (priority)
     --> xmlsec1-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gcrypt-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gcrypt-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gnutls-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-gnutls-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-nss-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-nss-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-openssl-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> xmlsec1-openssl-devel-1.2.18-4.el7.x86_64 from epel excluded (priority)
     --> jemalloc-3.6.0-1.el7.x86_64 from mariadb excluded (priority)
     --> jemalloc-devel-3.6.0-1.el7.x86_64 from mariadb excluded (priority)
     --> perl-ExtUtils-Depends-0.302-1.el7.rf.noarch from rpmforge excluded (priority)
     --> collectl-3.6.0-1.el7.rf.noarch from rpmforge excluded (priority)
     --> stress-1.0.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> pam_ssh-1.91-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> pamtester-0.1.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> python-crypto-2.6.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcpick-0.2.1-1.2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> SDL_gfx-2.0.24-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-sshfs-2.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> nomarch-1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> md5deep-3.7-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> multitail-6.2.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> jhead-2.8-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> socat-1.7.2.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> dd_rescue-1.45-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> netcdf-4.1.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> netcdf-devel-4.1.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> hwloc-1.4.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> cabextract-1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fail2ban-0.8.7.1-1.el7.rf.noarch from rpmforge excluded (priority)
     --> denyhosts-2.6-5.el7.rf.noarch from rpmforge excluded (priority)
     --> tinc-1.0.23-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> bcrypt-1.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> iftop-1.0-0.pre3.el7.rf.x86_64 from rpmforge excluded (priority)
     --> miniupnpc-devel-1.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> cpuid-0.0-20140123.1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcping-1.3.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ssdeep-2.9-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> clamav-milter-0.98.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> 1:ddrescue-1.18.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-dislocker-0.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> libewf-20100226-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> vnstat-1.11-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> conky-1.6.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> smem-1.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcpflow-0.21-1.2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ndoutils-1.4-0.beta8.1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> iperf-2.0.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> scapy-2.0.0.10-1.el7.rf.noarch from rpmforge excluded (priority)
     --> sdparm-1.08-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> nettle-devel-2.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> htop-1.0.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> miniupnpc-1.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> p7zip-plugins-9.20.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> utf8proc-1.1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> agrep-2.04-1.2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fping-3.10-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> pbzip2-1.0.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fio-2.1.10-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> convmv-1.15-1.el7.rf.noarch from rpmforge excluded (priority)
     --> colordiff-1.0.9-1.el7.rf.noarch from rpmforge excluded (priority)
     --> ntfsprogs-2013.1.13-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> python-crypto-2.0.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> lzip-1.15-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> clamav-milter-0.98.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ddclient-3.7.3-2.el7.rf.noarch from rpmforge excluded (priority)
     --> sshpass-1.05-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> perl-ExtUtils-PkgConfig-1.12-1.el7.rf.noarch from rpmforge excluded (priority)
     --> hwloc-devel-1.4.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-sshfs-2.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> latencytop-0.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> librsync-devel-0.9.7-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> x11vnc-0.9.13-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> nload-0.7.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> mirmon-2.8-1.el7.rf.noarch from rpmforge excluded (priority)
     --> nettle-2.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> syslinux-3.86-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> tcpreen-1.4.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fuse-python-0.2.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> ewftools-20100226-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> goocanvas-devel-0.15-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> unpaper-0.3-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> utf8proc-devel-1.1.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> libewf-devel-20100226-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> bonnie++-1.96-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> source-highlight-3.1.6-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> rdiff-backup-1.2.8-4.el7.rf.x86_64 from rpmforge excluded (priority)
     --> arj-3.10.22-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> wdiff-0.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> source-highlight-devel-3.1.6-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> p7zip-9.20.1-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> lshw-gui-2.17-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> testdisk-6.14-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> httping-2.3.4-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> mytop-1.4-2.el7.rf.noarch from rpmforge excluded (priority)
     --> 1:ddrescue-1.17-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> fio-2.1.7-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> librsync-0.9.7-2.el7.rf.x86_64 from rpmforge excluded (priority)
     --> conspy-1.5-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> goocanvas-0.15-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> SDL_gfx-devel-2.0.24-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> iodine-0.5.2-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> hexedit-1.2.10-1.el7.rf.x86_64 from rpmforge excluded (priority)
     --> lshw-2.17-1.el7.rf.x86_64 from rpmforge excluded (priority)
    371 packages excluded due to repository priority protections
    pkgsack time: 1.682
    up:Obs Init time: 0.128
    up:simple updates time: 0.004
    up:obs time: 0.003
    up:condense time: 0.000
    updates time: 1.917
    
    real    0m2.183s
    user    0m2.073s
    sys    0m0.108s
    


    Code (Text):
    cat /root/centminlogs/yum-timedhosts.txt
    centos.mirror.constant.com 0.00274181365967
    epel.mirror.constant.com 0.00294208526611
    mirror.math.princeton.edu 0.00651884078979
    mirror.us.leaseweb.net 0.00807404518127
    mirror.cogentco.com 0.00810694694519
    mirror.umd.edu 0.00937604904175
    ca.mirror.babylon.network 0.0110328197479
    ftp.cse.buffalo.edu 0.0124759674072
    mirror.cs.pitt.edu 0.0146231651306
    mirror.cs.princeton.edu 0.0205678939819
    mirror.csclub.uwaterloo.ca 0.0219130516052
    mirror.steadfast.net 0.0220429897308
    mirror.metrocast.net 0.0234060287476
    archive.linux.duke.edu 0.0241141319275
    mirrors.rit.edu 0.0265111923218
    mirror.nexcess.net 0.0277259349823
    reflector.westga.edu 0.0279099941254
    download-ib01.fedoraproject.org 0.0307168960571
    www.gtlib.gatech.edu 0.031149148941
    fedora-epel.mirrors.tds.net 0.0325241088867
    mirrors.lug.mtu.edu 0.0339670181274
    mirror.cloud-bricks.net 0.0353789329529
    mirrors.maine.edu 0.0354380607605
    repos.dfw.quadranet.com 0.0388431549072
    fedora-epel.mirror.lstn.net 0.042407989502
    pubmirror2.math.uh.edu 0.0431361198425
    mirror.nodesdirect.com 0.0467629432678
    mirror.oss.ou.edu 0.0487999916077
    fedora.westmancom.com 0.050448179245
    mirror.compevo.com 0.0530951023102
    mirrors.mit.edu 0.0533380508423
    pubmirror1.math.uh.edu 0.0551190376282
    mirrors.xmission.com 0.0568511486053
    kdeforge2.unl.edu 0.0594348907471
    mirror.unl.edu 0.0618419647217
    muug.ca 0.0638959407806
    mirror.chpc.utah.edu 0.0643470287323
    linux.mirrors.es.net 0.0715689659119
    ftp.osuosl.org 0.0748090744019
    mirror.sfo12.us.leaseweb.net 0.0762898921967
    mirror.sjc02.svwh.net 0.0777769088745
    mirror.hmc.edu 0.0788440704346
    mirrors.syringanetworks.net 0.0815880298615
    repos.lax.quadranet.com 0.0832619667053
    dl.fedoraproject.org 0.0832970142365
    mirrors.kernel.org 0.118410110474
    mirrors.cat.pdx.edu 1.07252597809
    


    Code (Text):
    sort -k2 /var/cache/yum/x86_64/7/timedhosts.txt
    mirror.trouble-free.net 0.00246000289917
    mirror.solarvps.com 0.00418496131897
    linux.cc.lehigh.edu 0.00618195533752
    mirrors.mit.edu 0.00726509094238
    mirror.us.leaseweb.net 0.00774192810059
    mirror.cogentco.com 0.00784611701965
    mirrors.lga7.us.voxel.net 0.00850296020508
    mirrors.rit.edu 0.0121920108795
    mirror.cs.pitt.edu 0.0144000053406
    distro.ibiblio.org 0.0162100791931
    epel.mirror.constant.com 0.0163311958313
    centos.mirror.constant.com 0.0164971351624
    repoforge.mirror.constant.com 0.0165510177612
    mirror.cs.princeton.edu 0.0204808712006
    fedora-epel.mirrors.tds.net 0.0215749740601
    mirror.nexcess.net 0.021595954895
    mirror.csclub.uwaterloo.ca 0.0219700336456
    ftp.osuosl.org 0.0226981639862
    mirror.umd.edu 0.0227081775665
    mirror.steadfast.net 0.0243189334869
    ca.mirror.babylon.network 0.0251681804657
    mirror.metrocast.net 0.0274298191071
    repoforge.spinellicreations.com 0.0295310020447
    download-ib01.fedoraproject.org 0.0301029682159
    mirror.us-midwest-1.nexcess.net 0.0347599983215
    mirror.rnet.missouri.edu 0.036082983017
    reflector.westga.edu 0.0382590293884
    mirror.team-cymru.org 0.0383169651031
    centos.mbni.med.umich.edu 0.0401020050049
    pubmirror2.math.uh.edu 0.0427138805389
    mirror.teklinks.com 0.0442190170288
    repos.mia.quadranet.com 0.0459489822388
    centos.chi.host-engine.com 0.0470621585846
    mirror.mojohost.com 0.0472099781036
    mirrors.lug.mtu.edu 0.0480139255524
    kdeforge2.unl.edu 0.0499088764191
    mirror.nodesdirect.com 0.0503280162811
    archive.linux.duke.edu 0.050852060318
    mirror.mrjester.net 0.0517110824585
    fedora.westmancom.com 0.0537021160126
    mirror.raystedman.net 0.0545630455017
    pubmirror1.math.uh.edu 0.0552809238434
    mirror.lstn.net 0.0553860664368
    mirror.oss.ou.edu 0.0572550296783
    mirrors.xmission.com 0.0586249828339
    mirror.chpc.utah.edu 0.0657849311829
    repos-lax.psychz.net 0.0661680698395
    mirror.hmc.edu 0.0727841854095
    mirror.sfo12.us.leaseweb.net 0.0795948505402
    mirror.keystealth.org 0.0821049213409
    mirror.scalabledns.com 0.0825581550598
    dl.fedoraproject.org 0.0831189155579
    linux.mirrors.es.net 0.0832600593567
    centos.eecs.wsu.edu 0.0839450359344
    mirror.cpsc.ucalgary.ca 0.0841178894043
    mirrors.syringanetworks.net 0.0842700004578
    mirror.tocici.com 0.0879619121552
    repoforge.mirror.wearetriple.com 0.0881831645966
    miroir.univ-paris13.fr 0.0896899700165
    ftp.nluug.nl 0.0906128883362
    ftp.surfsara.nl 0.0911231040955
    mirror.nl.leaseweb.net 0.0911400318146
    mirrors.ircam.fr 0.0914068222046
    mirror.de.leaseweb.net 0.0955629348755
    repoforge.cu.be 0.0980429649353
    repoforge.eecs.wsu.edu 0.0980930328369
    mirrors.sonic.net 0.100078105927
    mirrors.kernel.org 0.101787090302
    mirror1.hs-esslingen.de 0.103109121323
    mirror.vutbr.cz 0.103281974792
    merlin.fit.vutbr.cz 0.103611946106
    ftp.fi.muni.cz 0.104899168015
    mir01.syntis.net 0.110705852509
    mirror.zetup.net 0.115675926208
    mirror.crazynetwork.it 0.119888782501
    mirrors.netix.net 0.122714042664
    mirrors.m247.ro 0.130743026733
    mirror.veriteknik.net.tr 0.141324043274
    mirror.bacloud.com 0.148931980133
    ftp.cc.uoc.gr 0.151103019714
    repoforge.xpg.com.br 0.153975009918
    ftp.kddilabs.jp 0.187867879868
    ftp.riken.jp 0.195327043533
    ftp.wa.co.za 0.222226142883
    mirrors.tummy.com 0.224910020828
    mirrors.tuna.tsinghua.edu.cn 0.240988016129
    mirror.ventraip.net.au 0.242040157318
    ftp.is.co.za 0.253194093704
    mirror.as24220.net 0.255391120911
    mirror.smartmedia.net.id 0.263324975967
    repoforge.gtdinternet.com 0.264924049377
    mirrors.neusoft.edu.cn 0.268703222275
    repoforge.ip-connect.vn.ua 0.272320985794
    kartolo.sby.datautama.net.id 0.280874013901
    mirrors.digipower.vn 0.281522035599
    mirror.awanti.com 0.325540065765
    mirror.fairway.ne.jp 0.357326030731
    mirror.poliwangi.ac.id 0.368680000305
    repoforge.mirror.digitalpacific.com.au 0.439826965332
    apt.sw.be 99999999999
    mirror.math.princeton.edu 99999999999
    mirror.sjc02.svwh.net 99999999999
    mirrors.arsc.edu 99999999999
    


    Code (Text):
    cat /etc/resolv.conf
    nameserver 8.8.8.8
    nameserver 8.8.4.4
    


    Code (Text):
    tail -1 $(ls -rt /root/centminlogs/cmm-login-git-checks* | tail -1)
    Total Git & Nginx Check Time: 126.776500821 seconds
    


    Code (Text):
    curl -Iv https://nginx.org/en/download.html
    * About to connect() to nginx.org port 443 (#0)
    *   Trying 2606:7100:1:69::3f...
    * Connection timed out
    *   Trying 2001:1af8:4060:a004:21::e3...
    * Connection timed out
    *   Trying 206.251.255.63...
    * Connected to nginx.org (206.251.255.63) port 443 (#0)
    * Initializing NSS with certpath: sql:/etc/pki/nssdb
    *   CAfile: /etc/pki/tls/certs/ca-bundle.crt
      CApath: none
    * SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
    * Server certificate:
    *     subject: CN=nginx.org
    *     start date: Apr 14 12:11:00 2017 GMT
    *     expire date: Jul 13 12:11:00 2017 GMT
    *     common name: nginx.org
    *     issuer: CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US
    > HEAD /en/download.html HTTP/1.1
    > User-Agent: curl/7.29.0
    > Host: nginx.org
    > Accept: */*
    >
    < HTTP/1.1 200 OK
    HTTP/1.1 200 OK
    < Server: nginx/1.11.7
    Server: nginx/1.11.7
    < Date: Wed, 28 Jun 2017 17:42:30 GMT
    Date: Wed, 28 Jun 2017 17:42:30 GMT
    < Content-Type: text/html; charset=utf-8
    Content-Type: text/html; charset=utf-8
    < Content-Length: 8497
    Content-Length: 8497
    < Last-Modified: Tue, 27 Jun 2017 15:03:05 GMT
    Last-Modified: Tue, 27 Jun 2017 15:03:05 GMT
    < Connection: keep-alive
    Connection: keep-alive
    < Keep-Alive: timeout=15
    Keep-Alive: timeout=15
    < ETag: "595273a9-2131"
    ETag: "595273a9-2131"
    < Accept-Ranges: bytes
    Accept-Ranges: bytes
    
    <
    * Connection #0 to host nginx.org left intact
    



    process listing output command
    Code (Text):
    ps aufxw
    USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
    root         1  0.0  0.0  43056  3408 ?        Ss   Jun27   0:01 init -z
    root         2  0.0  0.0      0     0 ?        S    Jun27   0:00 [kthreadd/4244]
    root         3  0.0  0.0      0     0 ?        S    Jun27   0:00  \_ [khelper/4244]
    root        70  0.0  0.3 147748 31748 ?        Ss   Jun27   0:03 /usr/lib/systemd/systemd-journald
    root        78  0.0  0.0  42040  1708 ?        Ss   Jun27   0:00 /usr/lib/systemd/systemd-udevd
    root       114  0.0  0.0  24196  1640 ?        Ss   Jun27   0:00 /usr/lib/systemd/systemd-logind
    redis      118  0.0  0.1  53592  9172 ?        Ssl  Jun27   0:37 /usr/bin/redis-server 127.0.0.1:6379
    root       119  0.0  0.1 700536 14420 ?        Ssl  Jun27   0:01 /usr/sbin/rsyslogd -n
    root       128  0.0  0.0 105484  3992 ?        Ss   Jun27   0:00 /usr/sbin/sshd -D
    root     16184  0.0  0.0 139016  5124 ?        Ss   12:25   0:00  \_ sshd: root@pts/0
    root     16192  0.0  0.0  14688  2964 pts/0    Ss   12:25   0:00      \_ -bash
    root     16610  0.0  0.0  47572  1724 pts/0    R+   12:43   0:00          \_ ps aufxw
    dbus       132  0.0  0.0  24408  1736 ?        Ss   Jun27   0:00 /bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --system
    root       169  0.0  0.0   8444   812 tty1     Ss+  Jun27   0:00 /sbin/agetty --noclear --keep-baud console 115200 38400 9600 vt220
    root       170  0.0  0.0   8444   808 tty2     Ss+  Jun27   0:00 /sbin/agetty --noclear tty2 linux
    root       171  0.0  0.0  22248  1576 ?        Ss   Jun27   0:00 /usr/sbin/crond -n
    root     16592  0.0  0.0  70000  2444 ?        S    12:40   0:00  \_ /usr/sbin/CROND -n
    root     16593  0.0  0.0  11500  1268 ?        Ss   12:40   0:00      \_ /bin/sh -c sleep 128s ; wget -O - -q -t 1 https://www.domain
    root     16609  0.0  0.0  47912  4240 ?        S    12:43   0:00          \_ wget -O - -q -t 1 https://www.domain.com/wp-cron.php?do
    mysql      521  0.0  2.6 2150416 225936 ?      Ssl  Jun27   0:20 /usr/sbin/mysqld
    root       647  0.0  0.0  89696  2264 ?        Ss   Jun27   0:00 /usr/libexec/postfix/master -w
    postfix    669  0.0  0.0  90080  4488 ?        S    Jun27   0:00  \_ qmgr -l -t unix -u
    postfix    977  0.0  0.0  89932  4844 ?        S    Jun27   0:00  \_ tlsmgr -l -t unix -u
    postfix  14484  0.0  0.0  89800  4116 ?        S    11:18   0:00  \_ pickup -l -t unix -u
    memcach+   782  0.0  0.0 354268  1392 ?        Ssl  Jun27   0:09 /usr/local/bin/memcached -d -m 8 -l 127.0.0.1 -p 11211 -c 2048 -b 2048 -R
    root      3826  0.0  0.2  70584 24280 ?        Ss   00:00   0:02 lfd - sleeping
    root     13222  0.0  0.4 237392 36660 ?        Ss   09:00   0:00 nginx: master process /usr/local/sbin/nginx -c /usr/local/nginx/conf/nginx
    nginx    13223  0.0  0.8 296300 69352 ?        S<l  09:00   0:03  \_ nginx: worker process
    nginx    13224  0.0  0.8 300524 71200 ?        S<l  09:00   0:03  \_ nginx: worker process
    root     13236  0.0  0.0 1084248 7672 ?        Ss   09:00   0:00 php-fpm: master process (/usr/local/etc/php-fpm.conf)
    root     15061  0.0  0.0 202196  2732 ?        Ss   11:31   0:00 pure-ftpd (SERVER)
    
     
    Last edited: Jun 29, 2017
  4. eva2000

    eva2000 Administrator Staff Member

    54,946
    12,240
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,812
    Local Time:
    5:22 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    same problem as me, IPv6 networking playing up on your server
    Code (Text):
    curl -Iv https://nginx.org/en/download.html
    * About to connect() to nginx.org port 443 (#0)
    *   Trying 2606:7100:1:69::3f...
    * Connection timed out
    *   Trying 2001:1af8:4060:a004:21::e3...
    * Connection timed out
    *   Trying 206.251.255.63...
    * Connected to nginx.org (206.251.255.63) port 443 (#0)
    

    timed out for IPv6 look up on nginx.org domain

    so either contact web host to see if there's any IPv6 network issues they are having or disable IPv6 as per above outlined method via /etc/sysctl.conf

    Posted a copy of troubleshooting in Centmin Mod Insights forum Troubleshoot Slow SSH Logins
     
    Last edited: Jun 29, 2017
  5. Gavin

    Gavin New Member

    12
    5
    3
    Mar 18, 2017
    Ratings:
    +7
    Local Time:
    2:22 AM
    1.13.x
    10.1.x
    Thanks for the help! I've sent a message to my support with a link to this thread will update if they add anything.
     
  6. Gavin

    Gavin New Member

    12
    5
    3
    Mar 18, 2017
    Ratings:
    +7
    Local Time:
    2:22 AM
    1.13.x
    10.1.x
    well I still haven't gotten any real response from SSD Nodes other than:

    and

    So I went ahead and followed your instructions to add the 2 lines to /etc/sysctl.conf

    Code (Text):
    net.ipv6.conf.all.disable_ipv6 = 1
    net.ipv6.conf.default.disable_ipv6 = 1


    I update via

    Code (Text):
    sysctl -p


    and reboot to verify that SSH login is loading quickly again and it is...

    However, as soon as go into the Centmin menu it seems to overwrite /etc/sysctl.conf back to

    Code (Text):
    net.ipv6.conf.all.disable_ipv6 = 0
    net.ipv6.conf.default.disable_ipv6 = 0


    and the problem comes back.
     
  7. eva2000

    eva2000 Administrator Staff Member

    54,946
    12,240
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,812
    Local Time:
    5:22 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    ah it's because centmin mod detects if IPv6 is enabled/supporte and auto does that - might need to revise the detection

    in persistent config file you have or create at /etc/centminmod/custom_config.inc add this variable to disable IPv6 system wide
    Code (Text):
    DISABLE_IPVSIX='y'
    

    then run centmin.sh menu once and exit.
     
  8. Gavin

    Gavin New Member

    12
    5
    3
    Mar 18, 2017
    Ratings:
    +7
    Local Time:
    2:22 AM
    1.13.x
    10.1.x
    That did the trick. Thanks!!!