Get the most out of your Centmin Mod LEMP stack
Become a Member

grep: 08: No such file or directory

Discussion in 'Install & Upgrades or Pre-Install Questions' started by pamamolf, Jun 9, 2014.

  1. pamamolf

    pamamolf Premium Member Premium Member

    4,070
    427
    83
    May 31, 2014
    Ratings:
    +832
    Local Time:
    6:46 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    Using the latest beta version at the end of installation i got this error:

    Code:
    --------------------------------------------------------
    Stopping NSD service:
    Stopping nsd:
    Disabling NSD service:
    --------------------------------------------------------
    In future to re-enable NSD service type these 2 commands:
    service nsd start
    chkconfig nsd on
    --------------------------------------------------------
    grep: 08: No such file or directory
    *************************************************
    * Centmin Mod install completed....
    *************************************************
    
    What is this error ?
    grep: 08: No such file or directory

     
  2. rdan

    rdan Well-Known Member

    5,439
    1,399
    113
    May 25, 2014
    Ratings:
    +2,188
    Local Time:
    12:46 AM
    Mainline
    10.2
    Can be ignored, as NSD didn't install I think.
     
  3. eva2000

    eva2000 Administrator Staff Member

    53,818
    12,160
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,712
    Local Time:
    2:46 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    yeah can be ignored

    it's line 160 in inc/centminfinish.inc

    Code:
    grep -h $DATENOW /var/log/yum.log >> ${CENTMINLOGDIR}/centminmod_${SCRIPT_VERSION}_${DT}_yum-log.log
    /var/log/yum.log has strict file permissions so you can't grep the log from a script it seems. Need to fix that

    or could be something wrong with that line

    I'm changing it to the following to see

    Code:
    grep -h $DATENOW /var/log/yum.log | tee -a ${CENTMINLOGDIR}/centminmod_${SCRIPT_VERSION}_${DT}_yum-log.log
     
  4. pamamolf

    pamamolf Premium Member Premium Member

    4,070
    427
    83
    May 31, 2014
    Ratings:
    +832
    Local Time:
    6:46 PM
    Nginx-1.25.x
    MariaDB 10.3.x
    Ok please report back for the fix :)