Join the community today
Register Now

grep: 08: No such file or directory

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

  1. pamamolf

    pamamolf Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    11:58 AM
    Nginx-1.29.x
    MariaDB 10.6.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,452
    1,418
    113
    May 25, 2014
    Ratings:
    +2,212
    Local Time:
    4:58 PM
    Mainline
    10.2
    Can be ignored, as NSD didn't install I think.
     
  3. eva2000

    eva2000 Administrator Staff Member

    58,894
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    6:58 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    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 Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    11:58 AM
    Nginx-1.29.x
    MariaDB 10.6.x
    Ok please report back for the fix :)