Welcome to Centmin Mod Community
Register Now

Upgrade PHP-FPM Beta Branch Centmin Mod .09 beta branch Testing

Discussion in 'Beta release code' started by eva2000, Aug 12, 2015.

Tags:
  1. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    yup in /root/.bash_profile remove
    Code:
    # WP-CLI completions
    source /root/wpcli/wp-completion.bash
    Code:
    rm -rf /usr/bin/wp
    rm -rf /root/wpcli
    then remove the source line from /root/.bash_profile as above

     
  2. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    9:38 AM
    Mainline
    10.2
  3. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    merged your posts heh
     
  4. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Updated MariaDB 10 my.cnf templates



    Updated 123.09beta01 version with additional MariaDB 10 my.cnf templates and a new routine for assigning the my.cnf template on initial installs based on system total memory installed.

    Commits:

    To update your Centmin Mod builds follow instructions at centminmod.com/upgrade.html and respective version threads below:
     
  5. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Add installer-latest.sh option



    Add installer-latest.sh for 123.09beta01, allows default PHP 5.6.13 + Zend Opcache + enable customcurl RPM install to update from curl/libcurl 7.19/7.29 to 7.44 all out of box defaults for fresh 123.09beta01 and higher installs

    Can be installed via one liner install method
    Code:
    curl -O https://centminmod.com/betainstaller-latest.sh && chmod 0700 betainstaller-latest.sh && bash betainstaller-latest.sh
    
     
  6. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Nginx 1.9.5 and native HTTP/2 support



    According to Nginx roadmap, Nginx 1.9.5 will add official HTTP/2 support Milestone 1.9.5 – nginx

    Prepping 123.09beta01 for Nginx 1.9.5 and native HTTP/2 support prep work for nginx 1.9.5 native HTTP/2 support to 123.09beta01 · centminmod/centminmod@e259367 · GitHub :)

    testing this routine out works okay but if you have existing SSL sites enabled on server with SPDY enabled SSL nginx vhosts, you will run into error at end

    Code:
    Success: Nginx was installed properly
    
    Starting nginx: nginx: [emerg] invalid parameter "spdy": the SPDY module was deprecated, use the HTTP/2 module instead in /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf:15
                                                               [FAILED]
    manual nginx restart gives a more specific clue to the issue as well
    Code:
    ngxrestart
    nginx: [emerg] invalid parameter "spdy": the SPDY module was deprecated, use the HTTP/2 module instead in /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf:15
    nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed
    it's because /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf the listen line at line 15 uses spdy and not http2 directive

    Code:
    grep -n spdy /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf
    4:# read http://centminmod.com/nginx_configure_https_ssl_spdy.html
    15:  listen 443 ssl spdy;
    26:  add_header Alternate-Protocol  443:npn-spdy/3;
    30:  spdy_headers_comp 5;
    line 15 needs changing to
    Code:
    listen 443 ssl http2;
    and line 30 for spdy_headers_comp 5; needs removing for HTTP/2 support

    routine to check all nginx vhost files although this would only apply if listen and spdy_headers_comp lines are in actual nginx vhost files and not embedded in include files elsewhere.
    Code:
    for v in $(ls /usr/local/nginx/conf/conf.d/*.conf); do echo $v; egrep -n 'ssl spdy|spdy_headers_comp' $v; done
    /usr/local/nginx/conf/conf.d/demodomain.com.conf
    /usr/local/nginx/conf/conf.d/newdomain.com.conf
    /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf
    15:  listen 443 ssl spdy;
    30:  spdy_headers_comp 5;
    /usr/local/nginx/conf/conf.d/ssl.conf
    /usr/local/nginx/conf/conf.d/virtual.conf
    routine to auto change those lines

    Code:
    for v in $(ls /usr/local/nginx/conf/conf.d/*.conf); do echo $v; egrep -n 'ssl spdy|spdy_headers_comp' $v; echo "---"; sed -i 's|ssl spdy|ssl http2|g' $v; sed -i 's|spdy_headers_comp|#spdy_headers_comp|g' $v; egrep -n 'ssl http2|spdy_headers_comp' $v;done
    /usr/local/nginx/conf/conf.d/demodomain.com.conf
    ---
    /usr/local/nginx/conf/conf.d/newdomain.com.conf
    ---
    /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf
    15:  listen 443 ssl spdy;
    30:  spdy_headers_comp 5;
    ---
    15:  listen 443 ssl http2;
    30:  #spdy_headers_comp 5;
    /usr/local/nginx/conf/conf.d/ssl.conf
    ---
    /usr/local/nginx/conf/conf.d/virtual.conf
    ---
    commited an update to automatically make these SPDY to HTTP/2 or HTTP/2 back to SPDY adjustments to the listen directive and spdy option for all nginx vhost conf files on the server update inc/nginx_upgrade.inc adjustments for switching to http/2 or b… · centminmod/centminmod@1503c74 · GitHub

    tested to work when i manually set in centmin.sh NGINX_HTTP2=n to switch back to Nginx SPDY SSL end of nginx recompile routine in centmin.sh menu option 4 run

    the listen directive switched back to ssl spdy and uncomment the spdy_headers_comp option again for Nginx SPDY support
    Code:
    Fri Sep 18 05:37:38 UTC 2015
    Success: Nginx was installed properly
    
    /usr/local/nginx/conf/conf.d/demodomain.com.conf
    ---
    /usr/local/nginx/conf/conf.d/newdomain.com.conf
    ---
    /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf
    15:  listen 443 ssl http2;
    30:  #spdy_headers_comp 5;
    30:  #spdy_headers_comp 5;
    ---
    15:  listen 443 ssl spdy;
    30:  spdy_headers_comp 5;
    /usr/local/nginx/conf/conf.d/ssl.conf
    ---
    /usr/local/nginx/conf/conf.d/virtual.conf
    ---
    Starting nginx:                                            [  OK  ]
    *************************************************
    * nginx updated
    *************************************************
    then set in centmin.sh NGINX_HTTP2=y to test the switch from Nginx SPDY to Nginx HTTP/2 again
    Code:
    Fri Sep 18 05:44:38 UTC 2015
    Success: Nginx was installed properly
    
    /usr/local/nginx/conf/conf.d/demodomain.com.conf
    ---
    /usr/local/nginx/conf/conf.d/newdomain.com.conf
    ---
    /usr/local/nginx/conf/conf.d/newdomain.com.ssl.conf
    15:  listen 443 ssl spdy;
    30:  spdy_headers_comp 5;
    ---
    15:  listen 443 ssl http2;
    30:  #spdy_headers_comp 5;
    /usr/local/nginx/conf/conf.d/ssl.conf
    ---
    /usr/local/nginx/conf/conf.d/virtual.conf
    ---
    Starting nginx:                                            [  OK  ]
    *************************************************
    * nginx updated
    *************************************************
    
     
    Last edited: Sep 18, 2015
  7. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Updated Centmin Mod 123.09beta01 build with new centmin.sh options with September 19th, 2015 commits Commits · centminmod/centminmod · GitHub

    PHPGEOIP_ALWAYS=n



    GeoIP php extension is always installed on PHP recompiles/upgrade/downgrades but to disable this and prevent always install for GeoIP php extension, edit centmin.sh and set PHPGEOIP_ALWAYS=n or use persistent configuration file outlined at Upgrade Centmin Mod - create file at /etc/centminmod/custom_config.inc and add to it below variable and then recompile PHP via centmin.sh menu option 5:
    Code:
    PHPGEOIP_ALWAYS=n
    

    POSTGRESQL=n



    When centmin.sh variable is set to POSTGRESQL=y and you run centmin.sh menu option 5 to recompile PHP server, it will install PostgreSQL 9.4 server and devel yum packages from official PostgreSQL YUM repository at http://yum.postgresql.org/ if not already installed and then append to PHP-FPM configuration options the --with-pdo-pgsql=/usr/pgsql-9.4 configure option to enable and install pdo-pgsql PHP driver extension to allow PHP to communicate with PostgreSQL server.

    To allow to persist on centmin mod code updates, create persistent config file at /etc/centminmod/custom_config.inc and add to it the line:
    Code:
    POSTGRESQL=y
    
    This option came from request at PHP-FPM - Add pdo-pgsql PHP extension | Centmin Mod Community

    To update your Centmin Mod builds follow instructions at centminmod.com/upgrade.html and respective version threads below:
     
    Last edited: Sep 19, 2015
  8. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Updated Centmin Mod 123.09beta01 build with new centmin.sh options with September 20th, 2015 commits Add PHPIMAGICK=y option to centmin.sh for 123.09beta01 · centminmod/centminmod@9131d2e · GitHub

    PHPIMAGICK=y



    Imagick php extension is installed by default on PHP recompiles/upgrade/downgrades. You can now disable this through editing centmin.sh and set PHPIMAGICK=n or use persistent configuration file outlined at Upgrade Centmin Mod - create file at /etc/centminmod/custom_config.inc and add to it below variable and then recompile PHP via centmin.sh menu option 5:
    Code:
    PHPIMAGICK=n
    
     
  9. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    9:38 AM
    Mainline
    10.2
    Bug?
     
  10. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  11. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    9:38 AM
    Mainline
    10.2
  12. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    1st is correct :)
     
  13. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    More Nginx Module Variables in centmin.sh



    Update centmin.sh and inc/nginx_configure.inc add additional variables. Added additional variables in centmin.sh to allow finer grain control of which Nginx modules are installed with Nginx. The below centmin.sh variables are all enabled by default. You can disable via editing centmin.sh and setting variable to =n instead of =y. Even better to allow the changes to persist on Centmin Mod updates you can bypass the centmin.sh edit and use a persistent configuration file outlined at centminmod.com/upgrade.html - create file at /etc/centminmod/custom_config.inc and add to it below variable(s) with desired =n or =y defaults and then recompile Nginx via centmin.sh menu option 4
    Code:
    NGINX_STUBSTATUS=y           # http://nginx.org/en/docs/http/ngx_http_stub_status_module.html required for nginx statistics
    NGINX_SUB=y                  # http://nginx.org/en/docs/http/ngx_http_sub_module.html
    NGINX_ADDITION=y             # http://nginx.org/en/docs/http/ngx_http_addition_module.html
    NGINX_IMAGEFILTER=y          # http://nginx.org/en/docs/http/ngx_http_image_filter_module.html
    NGINX_CACHEPURGE=y           # https://github.com/FRiCKLE/ngx_cache_purge/
    NGINX_ACCESSKEY=y            #
    NGINX_HTTPCONCAT=y           # https://github.com/alibaba/nginx-http-concat
    NGINX_THREADS=y              # https://www.nginx.com/blog/thread-pools-boost-performance-9x/
    ORESTY_HEADERSMORE=y         # openresty headers more https://github.com/openresty/headers-more-nginx-module
    
    So if you combine it with finer grain control nginx module variables outlined already at Centmin Mod What's New - CentminMod.com LEMP Nginx web stack for CentOS you will get a list like below where you can turn off additional Nginx modules. Best to set them via a persistent config file at /etc/centminmod/custom_config.inc so they survive Centmin Mod code updates.
    Code:
    NGINX_STREAM=n               # http://nginx.org/en/docs/stream/ngx_stream_core_module.html
    NGINX_RTMP=n                 # Nginx RTMP Module support https://github.com/arut/nginx-rtmp-module
    NGINX_FLV=n                  # http://nginx.org/en/docs/http/ngx_http_flv_module.html
    NGINX_MP4=n                  # Nginx MP4 Module http://nginx.org/en/docs/http/ngx_http_mp4_module.html
    NGINX_AUTHREQ=n              # http://nginx.org/en/docs/http/ngx_http_auth_request_module.html
    NGINX_SECURELINK=n           # http://nginx.org/en/docs/http/ngx_http_secure_link_module.html
    NGINX_FANCYINDEX=n           # http://wiki.nginx.org/NgxFancyIndex
    NGINX_VHOSTSTATS=n           # https://github.com/vozlt/nginx-module-vts
    NGINX_PAGESPEED=n            # Install ngx_pagespeed
    NGINX_PASSENGER='n'          # Install Phusion Passenger requires installing addons/passenger.sh before hand
    NGINX_WEBDAV=n               # Nginx WebDAV and nginx-dav-ext-module
    NGINX_UPSTREAMCHECK='n'      # nginx upstream check https://github.com/yaoweibin/nginx_upstream_check_module
    NGINX_OPENRESTY='n'            # Agentzh's openresty Nginx modules
    LUAJIT_GITINSTALL='n'        # opt to install luajit 2.1 from dev branch http://repo.or.cz/w/luajit-2.0.git/shortlog/refs/heads/v2.1
    ORESTY_LUANGINX='n'             # enable or disable or ORESTY_LUA* nginx modules below
    
    NGINX_STUBSTATUS=n           # http://nginx.org/en/docs/http/ngx_http_stub_status_module.html required for nginx statistics
    NGINX_SUB=n                  # http://nginx.org/en/docs/http/ngx_http_sub_module.html
    NGINX_ADDITION=n             # http://nginx.org/en/docs/http/ngx_http_addition_module.html
    NGINX_IMAGEFILTER=n          # http://nginx.org/en/docs/http/ngx_http_image_filter_module.html
    NGINX_CACHEPURGE=n           # https://github.com/FRiCKLE/ngx_cache_purge/
    NGINX_ACCESSKEY=n            #
    NGINX_HTTPCONCAT=n           # https://github.com/alibaba/nginx-http-concat
    NGINX_THREADS=n              # https://www.nginx.com/blog/thread-pools-boost-performance-9x/
    ORESTY_HEADERSMORE=n         # openresty headers more https://github.com/openresty/headers-more-nginx-module
    
    However, there are some Nginx modules I recommend you keep enabled as you may run across the need to have them with variable web apps or web services and/or they may improve web performance. FYI, ORESTY_HEADERSMORE=y will be required if you want to use Letsencrypt free SSL certificate integration that I am working on ;)
    Code:
    NGINX_STUBSTATUS=y
    NGINX_CACHEPURGE=y
    NGINX_THREADS=y
    ORESTY_HEADERSMORE=y
    
    so a list more likely looking like below
    Code:
    NGINX_STREAM=n               # http://nginx.org/en/docs/stream/ngx_stream_core_module.html
    NGINX_RTMP=n                 # Nginx RTMP Module support https://github.com/arut/nginx-rtmp-module
    NGINX_FLV=n                  # http://nginx.org/en/docs/http/ngx_http_flv_module.html
    NGINX_MP4=n                  # Nginx MP4 Module http://nginx.org/en/docs/http/ngx_http_mp4_module.html
    NGINX_AUTHREQ=n              # http://nginx.org/en/docs/http/ngx_http_auth_request_module.html
    NGINX_SECURELINK=n           # http://nginx.org/en/docs/http/ngx_http_secure_link_module.html
    NGINX_FANCYINDEX=n           # http://wiki.nginx.org/NgxFancyIndex
    NGINX_VHOSTSTATS=n           # https://github.com/vozlt/nginx-module-vts
    NGINX_PAGESPEED=n            # Install ngx_pagespeed
    NGINX_PASSENGER='n'          # Install Phusion Passenger requires installing addons/passenger.sh before hand
    NGINX_WEBDAV=n               # Nginx WebDAV and nginx-dav-ext-module
    NGINX_UPSTREAMCHECK='n'      # nginx upstream check https://github.com/yaoweibin/nginx_upstream_check_module
    NGINX_OPENRESTY='n'            # Agentzh's openresty Nginx modules
    LUAJIT_GITINSTALL='n'        # opt to install luajit 2.1 from dev branch http://repo.or.cz/w/luajit-2.0.git/shortlog/refs/heads/v2.1
    ORESTY_LUANGINX='n'             # enable or disable or ORESTY_LUA* nginx modules below
    
    NGINX_STUBSTATUS=y           # http://nginx.org/en/docs/http/ngx_http_stub_status_module.html required for nginx statistics
    NGINX_SUB=n                  # http://nginx.org/en/docs/http/ngx_http_sub_module.html
    NGINX_ADDITION=n             # http://nginx.org/en/docs/http/ngx_http_addition_module.html
    NGINX_IMAGEFILTER=n          # http://nginx.org/en/docs/http/ngx_http_image_filter_module.html
    NGINX_CACHEPURGE=y           # https://github.com/FRiCKLE/ngx_cache_purge/
    NGINX_ACCESSKEY=n            #
    NGINX_HTTPCONCAT=n           # https://github.com/alibaba/nginx-http-concat
    NGINX_THREADS=y              # https://www.nginx.com/blog/thread-pools-boost-performance-9x/
    ORESTY_HEADERSMORE=y         # openresty headers more https://github.com/openresty/headers-more-nginx-module
    
    Then after recompile Nginx via centmin.sh menu option 4 you end up with Nginx configured with:
    note there is an outstanding bug is with NGINX_VHOSTSTATS=n set on nginx restart or after nginx recompile you get edit: bug fixed in commit at update inc/nginx_upgrade.inc fix NGINX_VHOSTSTATS=n · centminmod/centminmod@3888ebd · GitHub
    Code:
    Starting nginx: nginx: [emerg] unknown directive "vhost_traffic_status" in /usr/local/nginx/conf/vts_mainserver.conf:5
                                                               [FAILED]
    it's due to 3 lines in /usr/local/nginx/conf/vts_mainserver.conf needing to be commented out and disabled with hash in front - don't delete just comment out
    Code:
        #vhost_traffic_status on;
        #vhost_traffic_status_display;
        #vhost_traffic_status_display_format html;
    then restart Nginx server

    This is from @RoldanLT request thread at Can I request turn on/off variables for this? | Centmin Mod Community

    Actual commit at Update centmin.sh and inc/nginx_configure.inc add additional variables · centminmod/centminmod@6048736 · GitHub where you can see how I changed a configure nginx module option in inc/nginx_configure.inc from fixed static option to a variable that is controlled in centmin.sh.

    Added FAQ item 31 note for this too at centminmod.com/faq.html
     
    Last edited: Sep 24, 2015
  14. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Add nginScript Nginx Support



    Nginx officially announced at Nginx.conf conference that they're launching nginScript - there own implementation of Javscripting VM etc to further extend Nginx's capabilities. It seems to be offered as a Nginx module called njs available at hg.nginx.org/njs.

    I've added nginScript support to 123.09beta01 branch via NGINX_NJS=n variable to centmin.sh. Disabled by default. You can enable nginScript support via editing centmin.sh and setting variable to =y instead of =n. Even better to allow the changes to use persist on Centmin Mod updates you can bypass the centmin.sh edit and use a persistent configuration file outlined at Upgrade Centmin Mod - CentminMod.com LEMP Nginx web stack for CentOS - create file at /etc/centminmod/custom_config.inc and add to it below variable with desired =n or =y defaults and then recompile Nginx via centmin.sh menu option 4
    Code:
    NGINX_NJS=y
    
    Check for nginScript support via --add-module=../njs/nginx configure option
    The README file has instructions for example nginx.conf and vhost configuration code for nginScript. I tried the example but get slightly different output

    the last part of output is cut off ript
    Code:
    curl 127.0.0.1
    nginxjavasc
    change js_run example part from works
    Code:
    res.contentLength = 11;
    to
    Code:
    res.contentLength = 15;
    Code:
    curl 127.0.0.1
    nginxjavascript
    this looks fine
    Code:
    curl -H "Foo: 1099" '127.0.0.1/summary?a=1&fooo=bar&zyx=xyz'   
    JS summary
    
    Method: GET
    HTTP version: 1.1
    Host: 127.0.0.1
    Remote Address: 127.0.0.1
    URI: /summary
    Headers:
      header "User-Agent" is "curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.19.1 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2"
      header "Host" is "127.0.0.1"
      header "Accept" is "*/*"
      header "Foo" is "1099"
    Args:
      arg "a" is "1"
      arg "fooo" is "bar"
      arg "zyx" is "xyz"
     
    Last edited: Sep 24, 2015
  15. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    PHP Extension Variable Control for igbinary, memcache(d) and ftp



    Add support for PHP extension variables ftp, igbinary, memcache(d). As requested at community.centminmod.com/posts/18888/, added to 123.09beta01 new centmin.sh variables to optionally disable PHP extensions, ftp, memcache, memcached and igbinary when these variables are set to ='n' in centmin.sh. By default they are enabled and set to ='y'. Even better to allow the changes to use persist on Centmin Mod updates you can bypass the centmin.sh edit and use a persistent configuration file outlined at centminmod.com/upgrade.html - create file at /etc/centminmod/custom_config.inc and add to it below variable(s) with desired ='n' or ='y' defaults and then recompile PHP-FPM via centmin.sh menu option 5 and Memcache via centmin.sh menu option 10
    Code:
    PHP_FTPEXT='n'
    PHP_MEMCACHE='n'
    PHP_MEMCACHED='n'
    IGBINARY_INSTALL='n'
    
    Some folks may want to disable PHP memcache and memcached extension support if they are switching to Redis server and Redis PHP extension as outlined at Redis - How to install Redis server on Centmin Mod LEMP stack. Personally, I leave both memcache/memcached and redis PHP extensions enabled as you never know which web apps support which - Redis or Memcache caching :)

    If you want to see how I added the variables, actual commit at add support for PHP extension variables ftp, igbinary, memcache(d) · centminmod/centminmod@32a26d4 · GitHub
     
    Last edited: Sep 26, 2015
  16. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Update centmin.sh menu option 22 - xmlrpc rate limiting zone separation



    Updated both Centmin Mod 123.08stable and 123.09beta01 builds's centmin.sh menu option 22 Wordpress rate limiting to separate the nginx request rate liming zones for xmlrpc.php from wp-login.php's rate limit zone as some folks actually use wordpress ping backs via xmlrpc.php Wordpress - WordPress ping Optimizer 2.34 With Centmin MOD | Centmin Mod Community

    existing wordpress uses who created and installed wordpress via centmin.sh menu option 22 can add the separate xmlrpc.php rate limit zone via these SSH commands

    Code:
    sed -i 's/http {/http { \nlimit_req_zone $binary_remote_addr zone=xwprpc:10m rate=30r\/s;\n/g' /usr/local/nginx/conf/nginx.conf
    
    then edit wordpress vhost file and change

    from

    Code:
    location ~* /(xmlrpc\.php) {
        limit_req zone=xwplogin burst=2 nodelay;
        #limit_conn xwpconlimit 30;
        include /usr/local/nginx/conf/php-wpsc.conf;
    }
    
    to

    Code:
    location ~* /(xmlrpc\.php) {
        limit_req zone=xwprpc burst=45 nodelay;
        #limit_conn xwpconlimit 30;
        include /usr/local/nginx/conf/php-wpsc.conf;
    }
    
    and restart nginx

    To update your Centmin Mod builds follow instructions at centminmod.com/upgrade.html and respective version threads below:
     
  17. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    ngx_pagespeed 1.9.32.10-beta directory change update



    Updated both Centmin Mod 123.08stable and 123.09beta01 builds. ngx_pagespeed 1.9.32.10-beta changed the directory name within the zip download tarball so Centmin Mod Nginx download, install and upgrade routines need updating to take into account the directory name change Issue with latest stable, nginx install failing. | Centmin Mod Community

    To update your Centmin Mod builds follow instructions at centminmod.com/upgrade.html and respective version threads below:
     
  18. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    ngx_brotli module compression support added



    Add ngx_brotli nginx module support for better compression. Disabled by default, can be enabled by setting a persistent config option outlined at centminmod.com/upgrade.html#persistent by creating file at /etc/centminmod/custom_config.inc and adding to it
    Code:
    NGINX_LIBBROTLI=y
    ngx_brotli module google/ngx_brotli · GitHub implements a better compression method for on the fly and static compressed files than gzip. You can read more info on Brotli at Google Open Source Blog: Introducing Brotli: a new compression algorithm for the internet and Bits Up!: Brotli Content-Encoding for Firefox 44 Brotli content encoding is already supported by Firefox 44 (Nightly) and it's expected to be supported by Chrome soon. ngx_brotli directives are similar to Nginx's gzip directives and are outlined at google/ngx_brotli · GitHub

    examples include

    Code:
    brotli_static on|off|always
    brotli on|off
    brotli_types
    brotli_buffers
    brotli_comp_level
    brotli_min_length
    example for nginx.conf
    Code:
            brotli on;
            brotli_static on;
            brotli_min_length 1400;
            brotli_buffers 32 8k;
            brotli_comp_level 5;
            brotli_types text/plain text/css text/xml application/javascript application/x-javascript application/xml application/xml+rss application/ecmascript application/json image/svg+xml;
    Unfortunately, need to wait for Chrome and Firefox and other web browsers to support Brotli compression too Can I use... Support tables for HTML5, CSS3, etc. Chrome status Issue 452335 - chromium - Support Brotli as a content-encoding method on HTTPS connections - An open-source project to help move the web forward. - Google Project Hosting

    upload_2015-10-14_13-39-55.png

    Also seems Brotli compression might be only supported via https for web browsers Brotli | text/plain

    upload_2015-10-14_14-19-2.png

    Working Centmin Mod 123.09beta01 with ngx_brotli module and Firefox 44 nightly installed over HTTP/2 based https

    Code:
    Accept-Encoding: "gzip, deflate, br"
    • HTTP/1.1 gzip Firefox 44 nightly transferred size = 0.45KB gzip_comp_level = 5
    • HTTP/2 brotli Firefox 44 nightly transferred size = 0.37KB brotli_comp_level = 5 ~ 17.78% smaller compressed page size for default Centmin Mod index place holder index.html file

    ff44_newdomain_test-00.png
     
    Last edited: Oct 14, 2015
  19. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    seems to be some problems compiling ngx_brotli's required libbroti dependencies
    Code:
    *************************************************
    install libbrotli
    Initialized empty Git repository in /svr-setup/libbrotli/.git/
    make: *** No rule to make target `clean'.  Stop.
    No local changes to save
    Already up-to-date.
    Submodule 'brotli' (https://github.com/google/brotli) registered for path 'brotli'
    Initialized empty Git repository in /svr-setup/libbrotli/brotli/.git/
    Submodule path 'brotli': checked out '1886f77ac76685689593c100362594aa648b1c30'
    libtoolize: putting auxiliary files in `.'.
    libtoolize: linking file `./ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
    libtoolize: linking file `m4/libtool.m4'
    libtoolize: linking file `m4/ltoptions.m4'
    libtoolize: linking file `m4/ltsugar.m4'
    libtoolize: linking file `m4/ltversion.m4'
    libtoolize: linking file `m4/lt~obsolete.m4'
    configure.ac:7: installing `./config.guess'
    configure.ac:7: installing `./config.sub'
    configure.ac:8: installing `./install-sh'
    configure.ac:8: installing `./missing'
    Makefile.am: installing `./depcomp'
    
    ----------------------------------------------------------------
    Initialized build system. For a common configuration please run:
    ----------------------------------------------------------------
    
    ./configure
    
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for gcc... ccache /usr/bin/gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether ccache /usr/bin/gcc accepts -g... yes
    checking for ccache /usr/bin/gcc option to accept ISO C89... none needed
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for fgrep... /bin/grep -F
    checking for ld used by ccache /usr/bin/gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1966080
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for ar... ar
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from ccache /usr/bin/gcc object... ok
    checking how to run the C preprocessor... ccache /usr/bin/gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if ccache /usr/bin/gcc supports -fno-rtti -fno-exceptions... no
    checking for ccache /usr/bin/gcc option to produce PIC... -fPIC -DPIC
    checking if ccache /usr/bin/gcc PIC flag -fPIC -DPIC works... yes
    checking if ccache /usr/bin/gcc static flag -static works... no
    checking if ccache /usr/bin/gcc supports -c -o file.o... yes
    checking if ccache /usr/bin/gcc supports -c -o file.o... (cached) yes
    checking whether the ccache /usr/bin/gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for style of include used by make... GNU
    checking dependency style of ccache /usr/bin/gcc... gcc3
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking whether we are using the GNU C++ compiler... yes
    checking whether ccache /usr/bin/g++ accepts -g... yes
    checking whether we are using the GNU C++ compiler... (cached) yes
    checking whether ccache /usr/bin/g++ accepts -g... (cached) yes
    checking dependency style of ccache /usr/bin/g++... gcc3
    checking how to run the C++ preprocessor... ccache /usr/bin/g++ -E
    checking for ld used by ccache /usr/bin/g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the ccache /usr/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for ccache /usr/bin/g++ option to produce PIC... -fPIC -DPIC
    checking if ccache /usr/bin/g++ PIC flag -fPIC -DPIC works... yes
    checking if ccache /usr/bin/g++ static flag -static works... no
    checking if ccache /usr/bin/g++ supports -c -o file.o... yes
    checking if ccache /usr/bin/g++ supports -c -o file.o... (cached) yes
    checking whether the ccache /usr/bin/g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking dependency style of ccache /usr/bin/g++... (cached) gcc3
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating libbrotlienc.pc
    config.status: creating libbrotlidec.pc
    config.status: creating config.h
    config.status: executing libtool commands
    config.status: executing depfiles commands
    make  all-am
    make[1]: Entering directory `/svr-setup/libbrotli'
      CC     brotli/dec/libbrotlidec_la-decode.lo
      CC     brotli/dec/libbrotlidec_la-bit_reader.lo
      CC     brotli/dec/libbrotlidec_la-huffman.lo
      CC     brotli/dec/libbrotlidec_la-state.lo
      CC     brotli/dec/libbrotlidec_la-streams.lo
      CC     brotli/dec/libbrotlidec_la-dictionary.lo
      CXX    brotli/enc/libbrotlienc_la-backward_references.lo
    cc1plus: error: unrecognized command line option "-std=c++11"
      CXX    brotli/enc/libbrotlienc_la-histogram.lo
    make[1]: *** [brotli/enc/libbrotlienc_la-backward_references.lo] Error 1
    make[1]: *** Waiting for unfinished jobs....
    cc1plus: error: unrecognized command line option "-std=c++11"
    make[1]: *** [brotli/enc/libbrotlienc_la-histogram.lo] Error 1
    make[1]: Leaving directory `/svr-setup/libbrotli'
    make: *** [all] Error 2
      CCLD   libbrotlidec.la
      CXX    brotli/enc/libbrotlienc_la-backward_references.lo
    cc1plus: error: unrecognized command line option "-std=c++11"
    make: *** [brotli/enc/libbrotlienc_la-backward_references.lo] Error 1
    
    hmm libbrotli needs GCC 4.7+ cc1plus: error: unrecognized command line option "-std=c++11" · Issue #18 · bagder/libbrotli · GitHub :(

    edit: Looks like I can use SCL devtool set for higher gcc and g++ versions Linux @ CERN: /linux/devtoolset/index.shtml :)

     
    Last edited: Oct 14, 2015
  20. eva2000

    eva2000 Administrator Staff Member

    53,554
    12,135
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,678
    Local Time:
    11:38 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Add addons/devtoolset-3.sh



    New addon added to addons/devtoolset-3.sh for installing the devtoolset-3 from softwarecollections.org. The main purpose is to obtain access to newer versions of gcc and g++ and other compilers that are not available on CentOS 6 or CentOS 7 which only have gcc/g++ versions 4.4.7 and 4.8.3 respectively. The devtoolset-3 repository gives gcc/g++ version 4.9.2 currently. This addon is 64bit OS only and requires additional 1GB disk free space for installation.

    Code:
    /opt/rh/devtoolset-3/root/usr/bin/gcc --version
    
    gcc (GCC) 4.9.2 20150212 (Red Hat 4.9.2-6)
    Copyright (C) 2014 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    
    /opt/rh/devtoolset-3/root/usr/bin/g++ --version
    
    g++ (GCC) 4.9.2 20150212 (Red Hat 4.9.2-6)
    Copyright (C) 2014 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    gcc 4.9.2 binaries from collection
    Code:
    rpm -ql devtoolset-3-gcc | grep bin
    /opt/rh/devtoolset-3/root/usr/bin/cc
    /opt/rh/devtoolset-3/root/usr/bin/cpp
    /opt/rh/devtoolset-3/root/usr/bin/gcc
    /opt/rh/devtoolset-3/root/usr/bin/gcc-ar
    /opt/rh/devtoolset-3/root/usr/bin/gcc-nm
    /opt/rh/devtoolset-3/root/usr/bin/gcc-ranlib
    /opt/rh/devtoolset-3/root/usr/bin/gcov
    /opt/rh/devtoolset-3/root/usr/bin/x86_64-redhat-linux-gcc
    g++ 4.9.2 binaries from collection
    Code:
    rpm -ql devtoolset-3-gcc-c++ | grep bin
    /opt/rh/devtoolset-3/root/usr/bin/c++
    /opt/rh/devtoolset-3/root/usr/bin/g++
    /opt/rh/devtoolset-3/root/usr/bin/x86_64-redhat-linux-c++
    /opt/rh/devtoolset-3/root/usr/bin/x86_64-redhat-linux-g++
    full list of software installed by devtoolset-3 collection
    Code:
    ==========================================================================================================================================================================================================================================================
    Package                                                                 Arch                                 Version                                                              Repository                                                        Size
    ==========================================================================================================================================================================================================================================================
    Installing:
    devtoolset-3                                                            x86_64                               3.1-10.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 5.4 k
    Installing for dependencies:
    GConf2                                                                  x86_64                               3.2.6-8.el7                                                          base                                                             1.0 M
    ant                                                                     noarch                               1.9.2-9.el7                                                          base                                                             1.9 M
    apache-commons-codec                                                    noarch                               1.8-7.el7                                                            base                                                             223 k
    apache-commons-compress                                                 noarch                               1.5-4.el7                                                            base                                                             241 k
    apache-commons-logging                                                  noarch                               1.1.2-7.el7                                                          base                                                              78 k
    at-spi2-atk                                                             x86_64                               2.8.1-4.el7                                                          base                                                              73 k
    at-spi2-core                                                            x86_64                               2.8.0-6.el7                                                          base                                                             151 k
    audit-libs-python                                                       x86_64                               2.4.1-5.el7                                                          base                                                              69 k
    avalon-framework                                                        noarch                               4.3-10.el7                                                           base                                                              88 k
    avalon-logkit                                                           noarch                               2.1-14.el7                                                           base                                                              87 k
    bea-stax-api                                                            noarch                               1.2.0-9.el7                                                          base                                                              31 k
    cairo-gobject                                                           x86_64                               1.12.14-6.el7                                                        base                                                              25 k
    cdparanoia-libs                                                         x86_64                               10.2-17.el7                                                          base                                                              56 k
    cglib                                                                   noarch                               2.2-18.el7                                                           base                                                             255 k
    checkpolicy                                                             x86_64                               2.1.12-6.el7                                                         base                                                             247 k
    colord-libs                                                             x86_64                               1.0.4-3.el7                                                          base                                                             148 k
    desktop-file-utils                                                      x86_64                               0.21-4.el7                                                           base                                                              67 k
    devtoolset-3-apache-commons-el                                          noarch                               1.0-30.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 113 k
    devtoolset-3-args4j                                                     noarch                               2.0.30-3.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  83 k
    devtoolset-3-binutils                                                   x86_64                               2.24-18.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 5.1 M
    devtoolset-3-dwz                                                        x86_64                               0.11-1.1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  98 k
    devtoolset-3-dyninst                                                    x86_64                               8.2.1-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 2.5 M
    devtoolset-3-eclipse-cdt                                                x86_64                               1:8.6.0-1.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  51 M
    devtoolset-3-eclipse-cdt-parsers                                        x86_64                               1:8.6.0-1.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                 2.6 M
    devtoolset-3-eclipse-cdt-sdk                                            x86_64                               1:8.6.0-1.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  16 M
    devtoolset-3-eclipse-changelog                                          noarch                               2:3.2.0-2.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                 907 k
    devtoolset-3-eclipse-ecf-core                                           x86_64                               3.9.1-2.5.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                 335 k
    devtoolset-3-eclipse-egit                                               noarch                               3.6.1-3.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 7.6 M
    devtoolset-3-eclipse-emf-core                                           x86_64                               1:2.10.2-2.el7.centos                                                rhscl-devtoolset-3-epel-7-x86_64                                 1.6 M
    devtoolset-3-eclipse-emf-examples                                       noarch                               2.10.2-2.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 845 k
    devtoolset-3-eclipse-emf-runtime                                        noarch                               2.10.2-2.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 2.9 M
    devtoolset-3-eclipse-emf-sdk                                            noarch                               2.10.2-2.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 1.8 M
    devtoolset-3-eclipse-equinox-osgi                                       x86_64                               1:4.4.2-4.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                 1.4 M
    devtoolset-3-eclipse-filesystem                                         x86_64                               1.0-3.3.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 5.0 k
    devtoolset-3-eclipse-gcov                                               noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 484 k
    devtoolset-3-eclipse-gef                                                noarch                               3.9.101-2.2.el7.centos                                               rhscl-devtoolset-3-epel-7-x86_64                                 1.4 M
    devtoolset-3-eclipse-gef-examples                                       noarch                               3.9.101-2.2.el7.centos                                               rhscl-devtoolset-3-epel-7-x86_64                                 747 k
    devtoolset-3-eclipse-gef-sdk                                            noarch                               3.9.101-2.2.el7.centos                                               rhscl-devtoolset-3-epel-7-x86_64                                 4.6 M
    devtoolset-3-eclipse-gprof                                              noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 578 k
    devtoolset-3-eclipse-jdt                                                x86_64                               1:4.4.2-4.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  25 M
    devtoolset-3-eclipse-jgit                                               noarch                               3.6.1-3.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                  28 k
    devtoolset-3-eclipse-linuxtools                                         noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 989 k
    devtoolset-3-eclipse-manpage                                            noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                  49 k
    devtoolset-3-eclipse-mylyn                                              noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 4.6 M
    devtoolset-3-eclipse-mylyn-builds                                       noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 427 k
    devtoolset-3-eclipse-mylyn-builds-hudson                                noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 107 k
    devtoolset-3-eclipse-mylyn-context-cdt                                  noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  75 k
    devtoolset-3-eclipse-mylyn-context-java                                 noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 216 k
    devtoolset-3-eclipse-mylyn-context-pde                                  noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  68 k
    devtoolset-3-eclipse-mylyn-context-team                                 noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 115 k
    devtoolset-3-eclipse-mylyn-docs-epub                                    noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 701 k
    devtoolset-3-eclipse-mylyn-docs-htmltext                                noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 750 k
    devtoolset-3-eclipse-mylyn-docs-wikitext                                noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 2.3 M
    devtoolset-3-eclipse-mylyn-ide                                          noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  60 k
    devtoolset-3-eclipse-mylyn-sdk                                          noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 3.5 M
    devtoolset-3-eclipse-mylyn-tasks-bugzilla                               noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 472 k
    devtoolset-3-eclipse-mylyn-tasks-trac                                   noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 262 k
    devtoolset-3-eclipse-mylyn-tasks-web                                    noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  83 k
    devtoolset-3-eclipse-mylyn-versions                                     noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  43 k
    devtoolset-3-eclipse-mylyn-versions-cvs                                 noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  22 k
    devtoolset-3-eclipse-mylyn-versions-git                                 noarch                               3.14.2-1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  44 k
    devtoolset-3-eclipse-oprofile                                           noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 1.4 M
    devtoolset-3-eclipse-pde                                                x86_64                               1:4.4.2-4.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  83 M
    devtoolset-3-eclipse-perf                                               noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 1.0 M
    devtoolset-3-eclipse-platform                                           x86_64                               1:4.4.2-4.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  37 M
    devtoolset-3-eclipse-remote                                             noarch                               1.1.1-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 312 k
    devtoolset-3-eclipse-rpm-editor                                         noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 2.6 M
    devtoolset-3-eclipse-rse                                                noarch                               3.6.0-8.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 5.5 M
    devtoolset-3-eclipse-rse-server                                         noarch                               3.6.0-8.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 475 k
    devtoolset-3-eclipse-swt                                                x86_64                               1:4.4.2-4.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                 5.0 M
    devtoolset-3-eclipse-systemtap                                          noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 4.5 M
    devtoolset-3-eclipse-valgrind                                           noarch                               3.2.0-2.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 1.6 M
    devtoolset-3-elfutils                                                   x86_64                               0.161-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 365 k
    devtoolset-3-elfutils-libelf                                            x86_64                               0.161-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 189 k
    devtoolset-3-elfutils-libs                                              x86_64                               0.161-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 258 k
    devtoolset-3-felix-gogo-command                                         noarch                               0.12.0-12.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  58 k
    devtoolset-3-felix-gogo-runtime                                         noarch                               0.10.0-13.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                  70 k
    devtoolset-3-felix-gogo-shell                                           noarch                               0.10.0-8.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  56 k
    devtoolset-3-gcc                                                        x86_64                               4.9.2-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                  23 M
    devtoolset-3-gcc-c++                                                    x86_64                               4.9.2-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 8.5 M
    devtoolset-3-gcc-gfortran                                               x86_64                               4.9.2-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 8.3 M
    devtoolset-3-gdb                                                        x86_64                               7.8.2-38.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 2.7 M
    devtoolset-3-glassfish-el                                               noarch                               3.0.0-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 205 k
    devtoolset-3-glassfish-servlet-api                                      noarch                               3.1.0-5.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                  82 k
    devtoolset-3-guava                                                      noarch                               15.0-1.3.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 1.8 M
    devtoolset-3-hamcrest                                                   noarch                               1.3-6.6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 125 k
    devtoolset-3-icu4j                                                      noarch                               1:54.1.1-4.4.el7.centos                                              rhscl-devtoolset-3-epel-7-x86_64                                 9.8 M
    devtoolset-3-ide                                                        x86_64                               3.1-10.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 7.0 k
    devtoolset-3-javaewah                                                   noarch                               0.8.4-4.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 128 k
    devtoolset-3-jdom                                                       noarch                               1.1.3-7.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 174 k
    devtoolset-3-jgit                                                       noarch                               3.6.1-3.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 2.0 M
    devtoolset-3-jsoup                                                      noarch                               1.7.2-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 274 k
    devtoolset-3-junit                                                      noarch                               4.11-8.7.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 261 k
    devtoolset-3-libquadmath-devel                                          x86_64                               4.9.2-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 149 k
    devtoolset-3-libstdc++-devel                                            x86_64                               4.9.2-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 1.9 M
    devtoolset-3-lpg-java-compat                                            noarch                               1.1.0-6.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                  57 k
    devtoolset-3-ltrace                                                     x86_64                               0.7.91-9.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 147 k
    devtoolset-3-memstomp                                                   x86_64                               0.1.5-3.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 397 k
    devtoolset-3-mockito                                                    noarch                               1.9.0-15.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 247 k
    devtoolset-3-nekohtml                                                   noarch                               1.9.21-6.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                 155 k
    devtoolset-3-objenesis                                                  noarch                               1.2-16.1.el7.centos                                                  rhscl-devtoolset-3-epel-7-x86_64                                  64 k
    devtoolset-3-oprofile                                                   x86_64                               0.9.9-7.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 2.0 M
    devtoolset-3-perftools                                                  x86_64                               3.1-10.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 5.4 k
    devtoolset-3-perl-Authen-PAM                                            x86_64                               0.16-5.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                  32 k
    devtoolset-3-rome                                                       noarch                               0.9-18.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 191 k
    devtoolset-3-runtime                                                    x86_64                               3.1-10.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                  23 k
    devtoolset-3-sat4j                                                      noarch                               2.3.5-1.el7.centos                                                   rhscl-devtoolset-3-epel-7-x86_64                                 510 k
    devtoolset-3-strace                                                     x86_64                               4.8-8.el7.centos                                                     rhscl-devtoolset-3-epel-7-x86_64                                 250 k
    devtoolset-3-swt-chart                                                  noarch                               0.9.0-4.1.el7.centos                                                 rhscl-devtoolset-3-epel-7-x86_64                                 106 k
    devtoolset-3-systemtap                                                  x86_64                               2.6-11.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                  25 k
    devtoolset-3-systemtap-client                                           x86_64                               2.6-11.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 2.6 M
    devtoolset-3-systemtap-devel                                            x86_64                               2.6-11.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 1.7 M
    devtoolset-3-systemtap-runtime                                          x86_64                               2.6-11.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 278 k
    devtoolset-3-tika                                                       noarch                               1.4-5.el7.centos                                                     rhscl-devtoolset-3-epel-7-x86_64                                 488 k
    devtoolset-3-tika-parsers-epub                                          noarch                               1.4-5.el7.centos                                                     rhscl-devtoolset-3-epel-7-x86_64                                  47 k
    devtoolset-3-toolchain                                                  x86_64                               3.1-10.el7.centos                                                    rhscl-devtoolset-3-epel-7-x86_64                                 5.6 k
    devtoolset-3-valgrind                                                   x86_64                               1:3.10.1-1.el7.centos                                                rhscl-devtoolset-3-epel-7-x86_64                                  16 M
    devtoolset-3-ws-commons-util                                            noarch                               1.0.1-29.3.el7.centos                                                rhscl-devtoolset-3-epel-7-x86_64                                  44 k
    devtoolset-3-xmlrpc-client                                              noarch                               1:3.1.3-8.3.el7.centos                                               rhscl-devtoolset-3-epel-7-x86_64                                  56 k
    devtoolset-3-xmlrpc-common                                              noarch                               1:3.1.3-8.3.el7.centos                                               rhscl-devtoolset-3-epel-7-x86_64                                 104 k
    devtoolset-3-xmlrpc-server                                              noarch                               1:3.1.3-8.3.el7.centos                                               rhscl-devtoolset-3-epel-7-x86_64                                  77 k
    easymock2                                                               noarch                               2.5.2-12.el7                                                         base                                                              92 k
    flac-libs                                                               x86_64                               1.3.0-5.el7_1                                                        updates                                                          169 k
    geoclue                                                                 x86_64                               0.12.99-7.el7                                                        base                                                             100 k
    geronimo-jms                                                            noarch                               1.1.1-19.el7                                                         base                                                              31 k
    giflib                                                                  x86_64                               4.1.6-9.el7                                                          base                                                              40 k
    gsm                                                                     x86_64                               1.0.13-11.el7                                                        base                                                              30 k
    gstreamer1                                                              x86_64                               1.0.7-4.el7                                                          base                                                             909 k
    gstreamer1-plugins-base                                                 x86_64                               1.0.7-5.el7                                                          base                                                             1.1 M
    gtk3                                                                    x86_64                               3.8.8-10.el7                                                         base                                                             3.2 M
    hamcrest                                                                noarch                               1.3-6.el7                                                            base                                                             124 k
    harfbuzz-icu                                                            x86_64                               0.9.20-4.el7                                                         base                                                              11 k
    hsqldb                                                                  noarch                               1:1.8.1.3-13.el7                                                     base                                                             950 k
    iso-codes                                                               noarch                               3.46-2.el7                                                           base                                                             2.7 M
    java-1.7.0-openjdk                                                      x86_64                               1:1.7.0.85-2.6.1.2.el7_1                                             updates                                                          204 k
    java-1.7.0-openjdk-devel                                                x86_64                               1:1.7.0.85-2.6.1.2.el7_1                                             updates                                                          9.2 M
    java-1.7.0-openjdk-headless                                             x86_64                               1:1.7.0.85-2.6.1.2.el7_1                                             updates                                                           25 M
    java-1.8.0-openjdk                                                      x86_64                               1:1.8.0.60-2.b27.el7_1                                               updates                                                          213 k
    java-1.8.0-openjdk-headless                                             x86_64                               1:1.8.0.60-2.b27.el7_1                                               updates                                                           31 M
    javamail                                                                noarch                               1.4.6-8.el7                                                          base                                                             758 k
    javapackages-tools                                                      noarch                               3.4.1-6.el7_0                                                        base                                                              72 k
    jline                                                                   noarch                               1.0-8.el7                                                            base                                                              69 k
    junit                                                                   noarch                               4.11-8.el7                                                           base                                                             261 k
    libXevie                                                                x86_64                               1.0.3-7.1.el7                                                        base                                                              18 k
    libXtst                                                                 x86_64                               1.2.2-2.1.el7                                                        base                                                              20 k
    libXv                                                                   x86_64                               1.0.9-2.1.el7                                                        base                                                              18 k
    libasyncns                                                              x86_64                               0.8-7.el7                                                            base                                                              26 k
    libcgroup                                                               x86_64                               0.41-8.el7                                                           base                                                              64 k
    libgusb                                                                 x86_64                               0.1.6-3.el7                                                          base                                                              33 k
    libmng                                                                  x86_64                               1.0.10-14.el7                                                        base                                                             171 k
    libogg                                                                  x86_64                               2:1.3.0-7.el7                                                        base                                                              24 k
    libsecret                                                               x86_64                               0.15-3.el7                                                           base                                                             133 k
    libsemanage-python                                                      x86_64                               2.1.10-16.el7                                                        base                                                              94 k
    libsndfile                                                              x86_64                               1.0.25-9.el7                                                         base                                                             149 k
    libtheora                                                               x86_64                               1:1.1.1-8.el7                                                        base                                                             136 k
    libusbx                                                                 x86_64                               1.0.15-4.el7                                                         base                                                              50 k
    libvisual                                                               x86_64                               0.4.0-16.el7                                                         base                                                             138 k
    libvorbis                                                               x86_64                               1:1.3.3-8.el7                                                        base                                                             204 k
    libxslt                                                                 x86_64                               1.1.28-5.el7                                                         base                                                             242 k
    lksctp-tools                                                            x86_64                               1.0.13-3.el7                                                         base                                                              87 k
    log4j                                                                   noarch                               1.2.17-15.el7                                                        base                                                             443 k
    objectweb-asm                                                           noarch                               3.3.1-9.el7                                                          base                                                             197 k
    orc                                                                     x86_64                               0.4.17-5.el7                                                         base                                                             164 k
    pciutils                                                                x86_64                               3.2.1-4.el7                                                          base                                                              90 k
    pcsc-lite-libs                                                          x86_64                               1.8.8-5.el7                                                          base                                                              34 k
    perf                                                                    x86_64                               3.10.0-229.14.1.el7                                                  updates                                                          2.4 M
    policycoreutils-python                                                  x86_64                               2.2.5-15.el7                                                         base                                                             434 k
    psmisc                                                                  x86_64                               22.20-8.el7                                                          base                                                             140 k
    pulseaudio-libs                                                         x86_64                               3.0-30.el7                                                           base                                                             556 k
    python-IPy                                                              noarch                               0.75-6.el7                                                           base                                                              32 k
    python-javapackages                                                     noarch                               3.4.1-6.el7_0                                                        base                                                              31 k
    python-lxml                                                             x86_64                               3.2.1-4.el7                                                          base                                                             758 k
    qdox                                                                    noarch                               1.12.1-9.el7                                                         base                                                             170 k
    qt                                                                      x86_64                               1:4.8.5-8.el7                                                        base                                                             4.5 M
    qt-settings                                                             noarch                               19-23.5.el7.centos                                                   updates                                                           17 k
    qt-x11                                                                  x86_64                               1:4.8.5-8.el7                                                        base                                                              13 M
    rh-java-common-PyXB                                                     noarch                               1.2.4-1.4.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               505 k
    rh-java-common-ant                                                      noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               1.9 M
    rh-java-common-ant-antlr                                                noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                38 k
    rh-java-common-ant-apache-bcel                                          noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                40 k
    rh-java-common-ant-apache-bsf                                           noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                36 k
    rh-java-common-ant-apache-log4j                                         noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                35 k
    rh-java-common-ant-apache-oro                                           noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                40 k
    rh-java-common-ant-apache-regexp                                        noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                36 k
    rh-java-common-ant-apache-resolver                                      noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                36 k
    rh-java-common-ant-apache-xalan2                                        noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                34 k
    rh-java-common-ant-commons-logging                                      noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                36 k
    rh-java-common-ant-commons-net                                          noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               109 k
    rh-java-common-ant-javamail                                             noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                40 k
    rh-java-common-ant-jdepend                                              noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                44 k
    rh-java-common-ant-jmf                                                  noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                38 k
    rh-java-common-ant-jsch                                                 noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                69 k
    rh-java-common-ant-junit                                                noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               143 k
    rh-java-common-ant-swing                                                noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                39 k
    rh-java-common-ant-testutil                                             noarch                               1.9.2-9.24.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                46 k
    rh-java-common-antlr-tool                                               noarch                               2.7.7-29.17.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               358 k
    rh-java-common-apache-commons-codec                                     noarch                               1.8-7.12.el7.centos                                                  rhscl-rh-java-common-epel-7-x86_64                               223 k
    rh-java-common-apache-commons-compress                                  noarch                               1.5-4.12.el7.centos                                                  rhscl-rh-java-common-epel-7-x86_64                               241 k
    rh-java-common-apache-commons-io                                        noarch                               1:2.4-12.11.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               189 k
    rh-java-common-apache-commons-lang                                      noarch                               2.6-15.11.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               276 k
    rh-java-common-apache-commons-logging                                   noarch                               1.1.2-7.15.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                77 k
    rh-java-common-apache-commons-net                                       noarch                               3.2-8.11.el7.centos                                                  rhscl-rh-java-common-epel-7-x86_64                               261 k
    rh-java-common-atinject                                                 noarch                               1-13.20100611svn86.9.el7.centos                                      rhscl-rh-java-common-epel-7-x86_64                                14 k
    rh-java-common-batik                                                    noarch                               1.8-0.12.svn1230816.13.el7.centos                                    rhscl-rh-java-common-epel-7-x86_64                               6.3 M
    rh-java-common-bcel                                                     noarch                               5.2-18.12.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               470 k
    rh-java-common-bea-stax                                                 noarch                               1.2.0-9.13.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               177 k
    rh-java-common-bea-stax-api                                             noarch                               1.2.0-9.13.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                32 k
    rh-java-common-bsf                                                      noarch                               2.4.0-19.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               106 k
    rh-java-common-dom4j                                                    noarch                               1.6.1-20.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               278 k
    rh-java-common-easymock2                                                noarch                               2.5.2-12.15.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                                93 k
    rh-java-common-felix-framework                                          noarch                               4.2.1-5.12.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               482 k
    rh-java-common-geronimo-annotation                                      noarch                               1.0-15.12.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                                23 k
    rh-java-common-glassfish-el-api                                         noarch                               2.2.4-5.11.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                46 k
    rh-java-common-glassfish-jsp                                            noarch                               2.2.6-11.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               538 k
    rh-java-common-glassfish-jsp-api                                        noarch                               2.2.1-9.12.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                61 k
    rh-java-common-google-gson                                              noarch                               2.2.2-8.3.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               176 k
    rh-java-common-hamcrest                                                 noarch                               1.3-6.13.el7.centos                                                  rhscl-rh-java-common-epel-7-x86_64                               125 k
    rh-java-common-httpcomponents-client                                    noarch                               4.3.6-1.2.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               575 k
    rh-java-common-httpcomponents-core                                      noarch                               4.3.3-1.3.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               541 k
    rh-java-common-isorelax                                                 noarch                               1:0-0.15.release20050331.12.el7.centos                               rhscl-rh-java-common-epel-7-x86_64                                76 k
    rh-java-common-jai-imageio-core                                         noarch                               1.2-0.14.20100217cvs.14.el7.centos                                   rhscl-rh-java-common-epel-7-x86_64                               331 k
    rh-java-common-jakarta-commons-httpclient                               noarch                               1:3.1-15.14.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               241 k
    rh-java-common-jakarta-oro                                              noarch                               2.0.8-16.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                                78 k
    rh-java-common-javamail                                                 noarch                               1.4.6-8.13.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               756 k
    rh-java-common-javapackages-tools                                       noarch                               4.3.2-1.9.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                                94 k
    rh-java-common-jaxen                                                    noarch                               1.1.3-11.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               204 k
    rh-java-common-jdepend                                                  noarch                               2.9.1-10.14.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               177 k
    rh-java-common-jdom                                                     noarch                               1.1.3-6.13.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               175 k
    rh-java-common-jetty-continuation                                       noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                36 k
    rh-java-common-jetty-http                                               noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               115 k
    rh-java-common-jetty-io                                                 noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                96 k
    rh-java-common-jetty-jmx                                                noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                41 k
    rh-java-common-jetty-security                                           noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               102 k
    rh-java-common-jetty-server                                             noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               333 k
    rh-java-common-jetty-servlet                                            noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               117 k
    rh-java-common-jetty-util                                               noarch                               9.0.3-8.19.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               818 k
    rh-java-common-jsch                                                     noarch                               0.1.50-5.14.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               240 k
    rh-java-common-junit                                                    noarch                               4.11-8.14.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               262 k
    rh-java-common-jzlib                                                    noarch                               1.1.1-6.10.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                                72 k
    rh-java-common-log4j                                                    noarch                               1.2.17-15.14.el7.centos                                              rhscl-rh-java-common-epel-7-x86_64                               439 k
    rh-java-common-lucene                                                   noarch                               4.8.0-6.7.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               2.2 M
    rh-java-common-lucene-analysis                                          noarch                               4.8.0-6.7.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               1.4 M
    rh-java-common-lucene-queries                                           noarch                               4.8.0-6.7.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               187 k
    rh-java-common-lucene-queryparser                                       noarch                               4.8.0-6.7.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               343 k
    rh-java-common-lucene-sandbox                                           noarch                               4.8.0-6.7.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                                57 k
    rh-java-common-msv-msv                                                  noarch                               1:2013.5.1-6.16.el7.centos                                           rhscl-rh-java-common-epel-7-x86_64                               3.7 M
    rh-java-common-msv-xsdlib                                               noarch                               1:2013.5.1-6.16.el7.centos                                           rhscl-rh-java-common-epel-7-x86_64                               1.1 M
    rh-java-common-objectweb-asm5                                           noarch                               5.0.3-1.4.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               574 k
    rh-java-common-objenesis                                                noarch                               1.2-16.5.el7.centos                                                  rhscl-rh-java-common-epel-7-x86_64                                64 k
    rh-java-common-python-javapackages                                      noarch                               4.3.2-1.9.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                                85 k
    rh-java-common-qdox                                                     noarch                               1.12.1-9.13.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               170 k
    rh-java-common-regexp                                                   noarch                               1.5-13.14.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                                48 k
    rh-java-common-relaxngDatatype                                          noarch                               1.0-11.11.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                                16 k
    rh-java-common-runtime                                                  x86_64                               1.1-39.el7.centos                                                    rhscl-rh-java-common-epel-7-x86_64                                30 k
    rh-java-common-tomcat-servlet-3.0-api                                   noarch                               7.0.42-1.20.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               188 k
    rh-java-common-ws-commons-util                                          noarch                               1.0.1-29.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                                44 k
    rh-java-common-ws-jaxme                                                 noarch                               0.5.2-10.12.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               1.1 M
    rh-java-common-xalan-j2                                                 noarch                               2.7.1-23.8.el7.centos                                                rhscl-rh-java-common-epel-7-x86_64                               1.9 M
    rh-java-common-xerces-j2                                                noarch                               2.11.0-17.7.el7.centos                                               rhscl-rh-java-common-epel-7-x86_64                               1.1 M
    rh-java-common-xml-commons-apis                                         noarch                               1.4.01-16.14.el7.centos                                              rhscl-rh-java-common-epel-7-x86_64                               228 k
    rh-java-common-xml-commons-resolver                                     noarch                               1.2-15.13.el7.centos                                                 rhscl-rh-java-common-epel-7-x86_64                               109 k
    rh-java-common-xpp3                                                     noarch                               1.1.3.8-11.12.el7.centos                                             rhscl-rh-java-common-epel-7-x86_64                               336 k
    rh-java-common-xz-java                                                  noarch                               1.3-3.12.el7.centos                                                  rhscl-rh-java-common-epel-7-x86_64                                90 k
    rhino                                                                   noarch                               1.7R4-5.el7                                                          base                                                             1.0 M
    rpmdevtools                                                             noarch                               8.3-5.el7                                                            base                                                              97 k
    rpmlint                                                                 noarch                               1.5-4.el7                                                            base                                                             229 k
    sac                                                                     noarch                               1.3-17.el7                                                           base                                                              17 k
    scl-utils                                                               x86_64                               20130529-17.el7_1                                                    updates                                                           24 k
    setools-libs                                                            x86_64                               3.3.7-46.el7                                                         base                                                             485 k
    tomcat-servlet-3.0-api                                                  noarch                               7.0.54-2.el7_1                                                       updates                                                          207 k
    ttmkfdir                                                                x86_64                               3.0.9-41.el7                                                         base                                                              47 k
    tzdata-java                                                             noarch                               2015g-1.el7                                                          updates                                                          176 k
    valgrind                                                                x86_64                               1:3.10.0-7.el7                                                       base                                                              15 M
    webkitgtk3                                                              x86_64                               2.0.4-6.el7_0.1                                                      base                                                              10 M
    xalan-j2                                                                noarch                               2.7.1-23.el7                                                         base                                                             1.9 M
    xerces-j2                                                               noarch                               2.11.0-17.el7_0                                                      base                                                             1.1 M
    xml-common                                                              noarch                               0.6.3-39.el7                                                         base                                                              26 k
    xml-commons-apis                                                        noarch                               1.4.01-16.el7                                                        base                                                             227 k
    xml-commons-resolver                                                    noarch                               1.2-15.el7                                                           base                                                             108 k
    xorg-x11-fonts-Type1                                                    noarch                               7.5-9.el7                                                            base                                                             521 k
    xz-java                                                                 noarch                               1.3-3.el7                                                            base                                                              89 k
    
    Transaction Summary
    ==========================================================================================================================================================================================================================================================
    Install  1 Package (+281 Dependent packages)
    
    Total download size: 541 M
    Installed size: 1.0 G
     
    Last edited: Oct 15, 2015