Want more timely Centmin Mod News Updates?
Become a Member

Featured CentOS 7.x How to help test .08 CentOS 7 Betas with Github code ?

Discussion in 'Beta release code' started by eva2000, Jul 11, 2014.

  1. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    it updates cminfo script CentOS 7.x - How to help test .08 CentOS 7 Betas with Github code ? | Page 15 | Centmin Mod Community

    if you type cminfo on your server in SSH Window, you can a full overview summary of your server environment created by Centmin Mod LEMP stack. The cminfo script is still evolving, may had more features so cron updater ensures I can update that code automatically without user intervention while in beta. Once .08 goes stable the updater probably happen every 2 weeks or 1 month etc

     
  2. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Thinking of adding optional support for Openresty's Nginx Lua and LuaJIT modules - HttpLuaModule - Nginx Community See example at Pushing Nginx to its limit with Lua However, I am not familiar with Lua and usage cases aren't as detailed online. So any user here actually uses Lua/LuaJIT with Nginx on other platforms ? If so any simple usage example cases I can look at that you use as well so I can confirm what I install for Centmin Mod Nginx works as intended ?

    I've setup a private Git branch for Centmin Mod to test a .08 beta based Lua/LuaJIT supported branch for my own testing for now so it isn't available publicly yet :)

    It's optional so you can disable it via ORESTY_LUANGINX='n' in centmin.sh if you have no use for it

    Code:
    ORESTY_LUANGINX='y'          # enable or disable or ORESTY_LUA* nginx modules below
    ORESTY_LUANGINXVER='0.9.16rc1'  # openresty lua-nginx-module https://github.com/openresty/lua-nginx-module
    ORESTY_LUAGITVER='2.0.4'        # luagit http://luajit.org/
    ORESTY_LUAMEMCACHEDVER='0.13'   # openresty https://github.com/openresty/lua-resty-memcached
    ORESTY_LUAMYSQLVER='0.15'       # openresty https://github.com/openresty/lua-resty-mysql
    ORESTY_LUAREDISVER='0.20'       # openresty https://github.com/openresty/lua-resty-redis
    ORESTY_LUADNSVER='0.14'         # openresty https://github.com/openresty/lua-resty-dns
    ORESTY_LUAUPLOADVER='0.09'      # openresty https://github.com/openresty/lua-resty-upload
    ORESTY_LUAWEBSOCKETVER='0.05'   # openresty https://github.com/openresty/lua-resty-websocket
    ORESTY_LUALOCKVER='0.04'        # openresty https://github.com/openresty/lua-resty-lock
    ORESTY_LUASTRINGVER='0.09'      # openresty https://github.com/openresty/lua-resty-string
    ORESTY_LUAREDISPARSERVER='0.10'    # openresty https://github.com/openresty/lua-redis-parser
    ORESTY_LUAUPSTREAMCHECKVER='0.03'  # openresty https://github.com/openresty/lua-resty-upstream-healthcheck
    ORESTY_LUALRUCACHEVER='0.04'       # openresty https://github.com/openresty/lua-resty-lrucache
    ORESTY_LUARESTYCOREVER='0.1.0'     # openresty https://github.com/openresty/lua-resty-core
    ORESTY_LUAUPSTREAMVER='0.02'       # openresty https://github.com/openresty/lua-upstream-nginx-module
    ORESTY_LUALOGGERSOCKETVER='0.1'    # cloudflare openresty https://github.com/cloudflare/lua-resty-logger-socket
    ORESTY_LUACOOKIEVER='master'       # cloudflare openresty https://github.com/cloudflare/lua-resty-cookie
    ORESTY_LUAUPSTREAMCACHEVER='0.1.1' # cloudflare openresty https://github.com/cloudflare/lua-upstream-cache-nginx-module
    
    checking if luaJIT installed in vhost.conf add to server{} context
    Code:
    location = /lua {
        default_type text/plain;
        content_by_lua '
            if jit then
                ngx.say(jit.version)
            else
                ngx.say("Not LuaJIT!")
            end
        ';
    }
    save vhost.conf and restart nginx server and access hostname/lua will give
    Code:
    LuaJIT 2.0.4
    and the lua external libs
    Code:
    ls -lah /usr/local/lib/lua/resty/
    total 328K
    drwxr-xr-x 2 root root 4.0K May 25 02:34 .
    drwxr-xr-x 4 root root   28 May 25 00:12 ..
    -rwxr-xr-x 1 root root 6.2K May 25 02:34 aes.lua
    -rwxr-xr-x 1 root root 1.9K May 25 02:34 base64.lua
    -rwxr-xr-x 1 root root 3.5K May 25 02:34 base.lua
    -rwxr-xr-x 1 root root 7.8K May 25 02:34 client.lua
    -rwxrwxr-x 1 root root 5.2K Jan  8 16:50 cookie.lua
    -rwxr-xr-x 1 root root  472 May 25 02:34 core.lua
    -rwxr-xr-x 1 root root 1.9K May 25 02:34 ctx.lua
    -rwxr-xr-x 1 root root 1.1K May 25 02:34 exit.lua
    -rwxr-xr-x 1 root root 1.9K May 25 02:34 hash.lua
    -rwxr-xr-x 1 root root  18K May 25 02:34 healthcheck.lua
    -rwxr-xr-x 1 root root 4.4K May 25 02:34 lock.lua
    -rwxr-xr-x 1 root root 4.6K May 25 02:34 lrucache.lua
    -rwxr-xr-x 1 root root 1.2K May 25 02:34 md5.lua
    -rwxr-xr-x 1 root root  15K May 25 02:34 memcached.lua
    -rwxr-xr-x 1 root root 3.1K May 25 02:34 misc.lua
    -rwxr-xr-x 1 root root  20K May 25 02:34 mysql.lua
    -rwxr-xr-x 1 root root 8.5K May 25 02:34 protocol.lua
    -rwxr-xr-x 1 root root  17K May 25 02:34 pureffi.lua
    -rwxr-xr-x 1 root root  612 May 25 02:34 random.lua
    -rwxr-xr-x 1 root root  11K May 25 02:34 redis.lua
    -rwxr-xr-x 1 root root  23K May 25 02:34 regex.lua
    -rwxr-xr-x 1 root root 8.5K May 25 02:34 request.lua
    -rwxr-xr-x 1 root root  19K May 25 02:34 resolver.lua
    -rwxr-xr-x 1 root root 4.1K May 25 02:34 response.lua
    -rwxr-xr-x 1 root root 4.8K May 25 02:34 server.lua
    -rwxr-xr-x 1 root root 1.2K May 25 02:34 sha1.lua
    -rwxr-xr-x 1 root root 1.1K May 25 02:34 sha224.lua
    -rwxr-xr-x 1 root root 1.3K May 25 02:34 sha256.lua
    -rwxr-xr-x 1 root root 1.1K May 25 02:34 sha384.lua
    -rwxr-xr-x 1 root root 1.4K May 25 02:34 sha512.lua
    -rwxr-xr-x 1 root root  236 May 25 02:34 sha.lua
    -rwxr-xr-x 1 root root 9.1K May 25 02:34 shdict.lua
    -rwxrwxr-x 1 root root  12K Feb  9 22:52 socket.lua
    -rwxr-xr-x 1 root root  694 May 25 02:34 string.lua
    -rwxr-xr-x 1 root root  436 May 25 02:34 time.lua
    -rwxr-xr-x 1 root root 5.1K May 25 02:34 upload.lua
    -rwxr-xr-x 1 root root 1.7K May 25 02:34 uri.lua
    -rwxr-xr-x 1 root root 3.0K May 25 02:34 var.lua
    -rwxr-xr-x 1 root root  445 May 25 02:34 worker.lua
    
     
    Last edited: May 25, 2015
  3. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Okay for beta testers, anyone can share their feedback and test the centmin.sh menu 2 option for .08 beta 02 for creating new nginx vhosts on both CentOS 6.6 and 7.x to see if the virtual FTP PureFTPD user login and support is working. Looking to maybe have .08 beta 02 go stable by mid or end of June 2015 as it seems .07 stable's nginx version is getting further and further away from .08 beta's nginx feature set :)

    Nginx Lua Youtube video by Yichun Zhang at Nginx.conf 2014

    Introduction · openresty/lua-nginx-module Wiki · GitHub
    Also posted standalone Centmin Mod .08 beta 02 + lua support branch at centminmod/centminmod at 123.08lua · GitHub if anyone wants to try it out. Commit history for 123.08lua branch Commits · centminmod/centminmod · GitHub (basically all of May 25th commits)

    Centmin Mod installed for 123.08lua branch via Github

    Step 1.

    Select the branch you want to install from list at Branches · centminmod/centminmod · GitHub and define it in the variable named branchname typed on SSH command line as follows.
    Code:
    branchname=123.08lua
    
    Step 2.

    Actual install
    Code:
    yum -y install wget nano bc unzip
    branchname=123.08lua
    wget -O /usr/local/src/${branchname}.zip https://github.com/centminmod/centminmod/archive/${branchname}.zip
    cd /usr/local/src
    unzip ${branchname}.zip
    cd centminmod-${branchname}
    chmod +x centmin.sh
    
    Then to install either type

    for menu mode
    Code:
    ./centmin.sh
    
    or for CLI install mode
    Code:
    ./centmin.sh install
    
    update: Easy to try a new branch via git see Upgrade - Working with git command line for updating Centmin Mod local copies | Centmin Mod Community
     
    Last edited: May 28, 2015
  4. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  5. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Just updated 123.08lua branch with luajit git repository dev branch support as 2.1.0* branch has better performance than 2.0.4 stable. Also moved luajit install to dedicated inc/luajit.inc include file too.

    Commit at Add support for luajit GIT dev branch installation · centminmod/centminmod@93b45a2 · GitHub

    vhost.conf
    Code:
    location = /lua {
        default_type text/plain;
        content_by_lua '
            if jit then
                ngx.say(jit.version)
            else
                ngx.say("Not LuaJIT!")
            end
        ';
    }
    check luajit version
    Code:
    curl localhost/lua  
    LuaJIT 2.1.0-alpha
    external lua libs
    Code:
    ls -lah /usr/local/lib/lua/resty/
    total 328K
    drwxr-xr-x 2 root root 4.0K May 28 03:08 .
    drwxr-xr-x 4 root root   28 May 25 00:12 ..
    -rwxr-xr-x 1 root root 6.2K May 28 03:08 aes.lua
    -rwxr-xr-x 1 root root 1.9K May 28 03:08 base64.lua
    -rwxr-xr-x 1 root root 3.5K May 28 03:08 base.lua
    -rwxr-xr-x 1 root root 7.8K May 28 03:08 client.lua
    -rwxrwxr-x 1 root root 5.2K Jan  8 16:50 cookie.lua
    -rwxr-xr-x 1 root root  472 May 28 03:08 core.lua
    -rwxr-xr-x 1 root root 1.9K May 28 03:08 ctx.lua
    -rwxr-xr-x 1 root root 1.1K May 28 03:08 exit.lua
    -rwxr-xr-x 1 root root 1.9K May 28 03:08 hash.lua
    -rwxr-xr-x 1 root root  18K May 28 03:08 healthcheck.lua
    -rwxr-xr-x 1 root root 4.4K May 28 03:08 lock.lua
    -rwxr-xr-x 1 root root 4.6K May 28 03:08 lrucache.lua
    -rwxr-xr-x 1 root root 1.2K May 28 03:08 md5.lua
    -rwxr-xr-x 1 root root  15K May 28 03:08 memcached.lua
    -rwxr-xr-x 1 root root 3.1K May 28 03:08 misc.lua
    -rwxr-xr-x 1 root root  20K May 28 03:08 mysql.lua
    -rwxr-xr-x 1 root root 8.5K May 28 03:08 protocol.lua
    -rwxr-xr-x 1 root root  17K May 28 03:08 pureffi.lua
    -rwxr-xr-x 1 root root  612 May 28 03:08 random.lua
    -rwxr-xr-x 1 root root  11K May 28 03:08 redis.lua
    -rwxr-xr-x 1 root root  23K May 28 03:08 regex.lua
    -rwxr-xr-x 1 root root 8.5K May 28 03:08 request.lua
    -rwxr-xr-x 1 root root  19K May 28 03:08 resolver.lua
    -rwxr-xr-x 1 root root 4.1K May 28 03:08 response.lua
    -rwxr-xr-x 1 root root 4.8K May 28 03:08 server.lua
    -rwxr-xr-x 1 root root 1.2K May 28 03:08 sha1.lua
    -rwxr-xr-x 1 root root 1.1K May 28 03:08 sha224.lua
    -rwxr-xr-x 1 root root 1.3K May 28 03:08 sha256.lua
    -rwxr-xr-x 1 root root 1.1K May 28 03:08 sha384.lua
    -rwxr-xr-x 1 root root 1.4K May 28 03:08 sha512.lua
    -rwxr-xr-x 1 root root  236 May 28 03:08 sha.lua
    -rwxr-xr-x 1 root root 9.1K May 28 03:08 shdict.lua
    -rwxrwxr-x 1 root root  12K Feb  9 22:52 socket.lua
    -rwxr-xr-x 1 root root  694 May 28 03:08 string.lua
    -rwxr-xr-x 1 root root  436 May 28 03:08 time.lua
    -rwxr-xr-x 1 root root 5.1K May 28 03:08 upload.lua
    -rwxr-xr-x 1 root root 1.7K May 28 03:08 uri.lua
    -rwxr-xr-x 1 root root 3.0K May 28 03:08 var.lua
    -rwxr-xr-x 1 root root  445 May 28 03:08 worker.lua
     
  6. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  7. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Anyone want realtime Nginx vhost statistics with their fries ? :D

    vhost_status_00.png
     
  8. rdan

    rdan Well-Known Member

    5,446
    1,408
    113
    May 25, 2014
    Ratings:
    +2,201
    Local Time:
    2:19 PM
    Mainline
    10.2
    That's great and nice to have :)
     
  9. rdan

    rdan Well-Known Member

    5,446
    1,408
    113
    May 25, 2014
    Ratings:
    +2,201
    Local Time:
    2:19 PM
    Mainline
    10.2
  10. pamamolf

    pamamolf Premium Member Premium Member

    4,084
    428
    83
    May 31, 2014
    Ratings:
    +834
    Local Time:
    8:19 AM
    Nginx-1.25.x
    MariaDB 10.3.x
    That's great how we can get them? :)
     
  11. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    worth watching.. Nginx + Lua + LuaJIT is powerful - all I need to do is learn to use and program in Lua :LOL:
    privately testing for now :)

    sourcetree_vts_screen00.png

    on nginx upgrades within .08 beta which has nginx vhost traffic stats module added, you will get 3 new include files for nginx.conf, vhost.conf and your individual nginx vhost domain.com.conf files. On upgrades only nginx.conf and vhost.conf get the new include files automatically populated for existing files. The 3rd include file for nginx vhost domain.com.conf will need manually adding for existing installs (for new fresh installs, they are added automatically during centmin.sh menu option 2 add vhost stage).

    in nginx.conf
    Code:
    http {
    include /usr/local/nginx/conf/vts_http.conf;
    contents = Sets parameters for a shared memory zone that will keep states for various keys. The cache is shared between all worker processes
    Code:
    vhost_traffic_status_zone;
    in vhost.conf
    Code:
    include /usr/local/nginx/conf/vts_mainserver.conf;
    contents = ip restricted by default enables vhost_traffic_status = on or off for each individual nginx vhost and display in html format (other option is in json format) to be displayed at yourmainhostname/vhost_status
    Code:
            location /vhost_status {
                allow 127.0.0.1;
                #allow YOURIPADDRESS;
                deny all;
                vhost_traffic_status on;
                vhost_traffic_status_display;
                vhost_traffic_status_display_format html;
            }
    for individual nginx domain.com.conf vhosts will need to add this manually for existing servers that upgrade (for new fresh installs, already added)
    Code:
    include /usr/local/nginx/conf/vts_server.conf;
    contents = enables vhost_traffic_status = on or off for each individual nginx vhost to be displayed at yourmainhostname/vhost_status
    Code:
                vhost_traffic_status on;
    local virtualbox testing with bit of siege benchmarking :D

    vhost_status_02.png

    dedicated discussion thread at Beta Branch - Centmin Mod Nginx live vhost traffic statistics preview & discussion | Centmin Mod Community for more detailed look :)
     
    Last edited: May 28, 2015
  12. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  13. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    It's here - Centmin Mod 123.08beta03 branch. Probably the last branch before .08 beta03 goes to stable release - if all goes well probably end of June, 2015 next month. I removed the centos7 from naming so as to not confuse folks as 123.08beta03 works for CentOS 6 and 7.

    .08 beta 03 is a merging of the 3 branches - .08 beta 02 + 123.08lua + 123.08livestats so the new beta has both Nginx Lua + LuaJIT support + new Nginx vhost traffic statistics support :)

    Commits
    All installation methods and upgrade methods outlined in first post here should still apply and work. Git command line method has also been updated at Upgrade - Working with git command line for updating Centmin Mod local copies | Centmin Mod Community

    Traditional fresh install or upgrade method with an added step for sed replacement so you'll have a new install directory base at /usr/local/src/123.08beta03 once below steps are completed

    fresh install
    Code:
    branchname=123.08beta03
    wget -O /usr/local/src/${branchname}.zip https://github.com/centminmod/centminmod/archive/${branchname}.zip
    cd /usr/local/src
    unzip ${branchname}.zip
    cd centminmod-${branchname}
    chmod +x centmin.sh
    ./centmin.sh
    
    upgrade
    Code:
    branchname=123.08beta03
    rm -rf /usr/local/src/${branchname}.zip
    rm -rf /usr/local/src/centminmod-${branchname}
    mv centminmod-123.08centos7beta01/ centminmod-123.08centos7beta01-orig
    mv centminmod-123.08centos7beta02/ centminmod-123.08centos7beta02-orig
    wget -O /usr/local/src/${branchname}.zip https://github.com/centminmod/centminmod/archive/${branchname}.zip
    cd /usr/local/src
    unzip ${branchname}.zip
    cd centminmod-${branchname}
    chmod +x centmin.sh
    ./centmin.sh
    sed -i 's|centminmod-123.08centos7beta01|centminmod-123.08beta03|g' /root/.bashrc
    sed -i 's|centminmod-123.08centos7beta02|centminmod-123.08beta03|g' /root/.bashrc
    
     
    Last edited: May 29, 2015
  14. Mak Adang

    Mak Adang Member

    62
    20
    8
    Jan 4, 2015
    Ratings:
    +23
    Local Time:
    1:19 PM
    1.9.0
    10.0.18-MariaDB
    Hi @eva2000 will upgrade soon, for sure please advise on upgrade procedure what number should be use after run for ./centmin.sh >>> 1). Centmin Install 4). Nginx Upgrade / Downgrade or 21). Update - Nginx + PHP-FPM + Siege

    Thank you.
     
  15. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    after upgrading the Centmin Mod as outlined above, actual upgrade is same as Upgrade - How to upgrade Centmin Mod | Centmin Mod Community just Nginx and PHP-FPM need updating via centmin.sh menu options 4 and 5. However, menu option 21 does Nginx + PHP-FPM + Siege all at same time if you want to :)
     
  16. Mak Adang

    Mak Adang Member

    62
    20
    8
    Jan 4, 2015
    Ratings:
    +23
    Local Time:
    1:19 PM
    1.9.0
    10.0.18-MariaDB
  17. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    test server testing is recommended first :D
     
  18. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Did a fresh install on 1GB OpenVZ based CentOS 7.1 with 123.08beta03

    Code:
    Total YUM Time: 323.198668815 seconds
    Total Centmin Mod Install Time: 994.929661376 seconds
    
    Created command shortcuts:
    * type cmdir to change to Centmin Mod install directory
      at /usr/local/src/centminmod-123.08beta03
    * type centmin call and run centmin.sh
      at /usr/local/src/centminmod-123.08beta03/centmin.sh
    Code:
    *************************************************
    * Post-Install Check List....
    *************************************************
    
    --------------------------------------------------------
    Check ccache Version:
    --------------------------------------------------------
    ccache version 3.1.9
    
    Copyright (C) 2002-2007 Andrew Tridgell
    Copyright (C) 2009-2011 Joel Rosdahl
    
    This program is free software; you can redistribute it and/or modify it under
    the terms of the GNU General Public License as published by the Free Software
    Foundation; either version 3 of the License, or (at your option) any later
    version.
    
    --------------------------------------------------------
    Check Nginx Version:
    --------------------------------------------------------
    nginx version: nginx/1.9.1
    built by gcc 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC)
    built with OpenSSL 1.0.2a 19 Mar 2015
    TLS SNI support enabled
    configure arguments: --with-ld-opt=-Wl,-rpath,/usr/local/lib --sbin-path=/usr/local/sbin/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --with-http_ssl_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_sub_module --with-http_addition_module --with-http_image_filter_module --with-http_secure_link_module --with-http_flv_module --with-http_realip_module --with-http_geoip_module --with-openssl-opt=enable-tlsext --add-module=../ngx-fancyindex-ngx-fancyindex --add-module=../ngx_cache_purge-2.3 --add-module=../headers-more-nginx-module-0.25 --add-module=../nginx-accesskey-2.0.3 --add-module=../nginx-http-concat-master --with-http_dav_module --add-module=../nginx-dav-ext-module-0.0.3 --add-module=../openresty-memc-nginx-module-1518da4 --add-module=../openresty-srcache-nginx-module-ffa9ab7 --add-module=../ngx_devel_kit-0.2.19 --add-module=../set-misc-nginx-module-0.28 --add-module=../echo-nginx-module-0.57 --add-module=../lua-nginx-module-0.9.16rc1 --add-module=../lua-upstream-nginx-module-0.02 --add-module=../lua-upstream-cache-nginx-module-0.1.1 --add-module=../nginx_upstream_check_module-0.3.0 --add-module=../nginx-module-vts --with-openssl=../openssl-1.0.2a --with-libatomic --with-threads --with-stream --with-stream_ssl_module --with-pcre=../pcre-8.37 --with-pcre-jit --with-http_spdy_module --add-module=../ngx_pagespeed-release-1.9.32.3-beta
    
    --------------------------------------------------------
    Check PHP-FPM Version:
    --------------------------------------------------------
    PHP 5.4.41 (cli) (built: May 29 2015 08:10:31)
    Copyright (c) 1997-2014 The PHP Group
    Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies
    
    --------------------------------------------------------
    Check MariaDB installed RPM Versions:
    --------------------------------------------------------
    MariaDB-common-10.0.19-1.el7.centos.x86_64
    MariaDB-compat-10.0.19-1.el7.centos.x86_64
    MariaDB-shared-10.0.19-1.el7.centos.x86_64
    MariaDB-server-10.0.19-1.el7.centos.x86_64
    MariaDB-client-10.0.19-1.el7.centos.x86_64
    MariaDB-devel-10.0.19-1.el7.centos.x86_64
    
    --------------------------------------------------------
    Check Memcached Server Version:
    --------------------------------------------------------
    memcached 1.4.24
    
    --------------------------------------------------------
    Check CSF Firewall Version:
    --------------------------------------------------------
    csf: v7.69 (generic)
    
    --------------------------------------------------------
    Check Siege Benchmark Version:
    --------------------------------------------------------
    SIEGE 3.0.9
    
    Copyright (C) 2014 by Jeffrey Fulmer, et al.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS
    FOR A PARTICULAR PURPOSE.
    
    
    --------------------------------------------------------
    Check ngx_pagespeed Control Script:
    http://centminmod.com/nginx_ngx_pagespeed.html
    --------------------------------------------------------
    pscontrol admin
    pscontrol handler
    pscontrol edit
    pscontrol on
    pscontrol off
    pscontrol statson
    pscontrol statsoff
    
    --------------------------------------------------------
    Check mysqlreport version:
    --------------------------------------------------------
    mysqlreport v3.5-maria11 Jul 4 2013
    
    --------------------------------------------------------
    Check NSD Bind Version:
    --------------------------------------------------------
    NSD version 3.2.18
    Written by NLnet Labs.
    
    Copyright (C) 2001-2011 NLnet Labs.  This is free software.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS
    FOR A PARTICULAR PURPOSE.
    
    --------------------------------------------------------
    Check pure-ftpd Version:
    --------------------------------------------------------
    pure-ftpd v1.0.36
    
    --------------------------------------------------------
    Check YUM Repo List
    --------------------------------------------------------
    Loaded plugins: fastestmirror, priorities
    Loading mirror speeds from cached hostfile
    * base: mirrors.usc.edu
    * epel: mirrors.kernel.org
    * extras: centos.sonn.com
    * rpmforge: mirror.hmc.edu
    * updates: mirror.supremebytes.com
    149 packages excluded due to repository priority protections
    repo id            repo name                                         status
    base/7/x86_64      CentOS-7 - Base                                   6,710+1,942
    epel/x86_64        Extra Packages for Enterprise Linux 7 - x86_64      7,308+661
    extras/7/x86_64    CentOS-7 - Extras                                         128
    mariadb            MariaDB                                                  10+4
    rpmforge           RHEL 7 - RPMforge.net - dag                            164+81
    updates/7/x86_64   CentOS-7 - Updates                                    472+129
    vz-base            vz-base                                                     1
    vz-updates         vz-updates                                                  0
    repolist: 14,793
     
  19. Cr0w

    Cr0w Member

    165
    9
    18
    Mar 17, 2015
    Iran
    Ratings:
    +13
    Local Time:
    9:49 AM
    1.9.x
    5.5
    what is this things : 123.08livestats and 123.08lua ?

    there are a new version of Centminmod ?
     
  20. eva2000

    eva2000 Administrator Staff Member

    54,546
    12,221
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,790
    Local Time:
    4:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    test branches I fork to test and try changes or additions before merging them back into 123.08beta03