Join the community today
Become a Member

LibreSSL LibreSSL 2.3.6 Released - bug fixes

Discussion in 'CentOS, Redhat & Oracle Linux News' started by eva2000, Jun 12, 2016.

  1. eva2000

    eva2000 Administrator Staff Member

    54,051
    12,176
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,734
    Local Time:
    8:41 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+

    Centmin Mod 1.2.3-eva2000.08+ LibreSSL 2.3.6



    LibreSSL 2.3.6 is now the stable release http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.3.6-relnotes.txt:


    Centmin Mod 123.08stable and 123.09beta01 Github branches corresponding to Centmin Mod 1.2.3-eva2000.08 stable and Centmin Mod 1.2.3-eva2000.09 beta01 have been updated to default to LibreSSL 2.3.6 for new fresh installs. For existing folks, follow below update instructions.

    Centmin Mod Nginx Update LibreSSL



    For Centmin Mod 1.2.3-eva2000.08 beta03, .08 stable and higher you can update to LibreSSL 2.3.6 via 2 steps.

    Step 1. Updating centmin.sh LIBRESSL_VERSION variable to 2.3.6. Best way is to use centmin.sh menu option 23 submenu option 2 for auto updating Centmin Mod code as outlined at centminmod.com/upgrade.html and at https://community.centminmod.com/threads/new-08-beta-menu-option-updating-centmin-mod-via-git.3084/. That will auto update centmin.sh to latest version which already has LIBRESSL_VERSION='2.3.6' set.

    If you do not have centmin.sh menu option 23 submenu option 1 for git environment setup, then you need to manually update and edit your server copy of centmin.sh at /usr/local/src/centminmod/centmin.sh

    from
    Code (Text):
    # LibreSSL
    LIBRESSL_SWITCH='y'        # if set to 'y' it overrides OpenSSL as the default static compiled option for Nginx server
    LIBRESSL_VERSION='2.3.4'   # Use this version of LibreSSL http://www.libressl.org/


    to
    Code (Text):
    # LibreSSL
    LIBRESSL_SWITCH='y'        # if set to 'y' it overrides OpenSSL as the default static compiled option for Nginx server
    LIBRESSL_VERSION='2.3.6'   # Use this version of LibreSSL http://www.libressl.org/


    or can do it via sed replacement on centmin.sh within centmin mod directory

    Code (Text):
    cmdir
    sed -i "s|LIBRESSL_VERSION='2.3.4'|LIBRESSL_VERSION='2.3.6'|g" centmin.sh
    grep LIBRESSL_VERSION centmin.sh


    Step 2. Then select centmin.sh menu option #4 to upgrade/downgrade Nginx recompile Nginx and specify latest Nginx version i.e. 1.11.1

    For example after recompile Nginx version output will show built with LibreSSL 2.3.6

    for 123.09 beta01 with NGINXMODULE_ALTORDER=y enabled
    LibreSSL 2.4.1 unstable release is out too if you want to try it

    LibreSSL 2.3.6



    You'll find latest LibreSSL 2.3.6 on official site.
     
    Last edited: Jun 12, 2016
  2. eva2000

    eva2000 Administrator Staff Member

    54,051
    12,176
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,734
    Local Time:
    8:41 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Alternatively, to update Centmin Mod Nginx, read instructions here or below.

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

    Upgrading Centmin Mod Code to Latest Version



    Upgrading Centmin Mod involves 2 parts.
    1. Upgrading the actual Centmin Mod code outlined at Upgrade Centmin Mod - CentminMod.com LEMP Nginx web stack for CentOS This is heart of Centmin Mod where the code is the engine that runs centmin.sh shell based menu and all the automation you're accustomed to.
    2. Upgrade software that Centmin Mod installed or manages. For this part following outline at Upgrade - How to upgrade Centmin Mod. In this case after updating Centmin Mod code, read instructions here and run centmin.sh menu option 4 to recompile Nginx which already has centmin.sh variable updated to 2.3.6
      Code (Text):
      LIBRESSL_VERSION='2.3.6'
     
  3. eva2000

    eva2000 Administrator Staff Member

    54,051
    12,176
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,734
    Local Time:
    8:41 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    You can tell if your Centmin Mod Nginx is using OpenSSL or LibreSSL via output of SSH command
    Code (Text):
    nginx -V


    If using LibreSSL, built with line will list such
    Code (Text):
    nginx -V
    nginx version: nginx/1.11.1
    built by clang 3.4.2 (tags/RELEASE_34/dot2-final)
    built with LibreSSL 2.3.6


    If using OpenSSL, built with line will list such
    Code (Text):
    nginx -V
    nginx version: nginx/1.11.1
    built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
    built with OpenSSL 1.0.2h  1 Mar 2016
    
     
  4. eva2000

    eva2000 Administrator Staff Member

    54,051
    12,176
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,734
    Local Time:
    8:41 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+