Coder Social home page Coder Social logo

nagstack's People

Contributors

snapier avatar

Watchers

 avatar

nagstack's Issues

NagiosXI install "F-startdaemons" script with images:Centos/8/amd64

Issue with NagiosXI install "F-startdaemons" script while deploying on Centos8.

The install process will exit with a failure for the ntpd service restart.

Centos8 now handles ntp via chrony and the xi-sys.cfg still lists the dependency as
ntpd="ntpd"

In the OEM Script

#!/bin/bash -e

    . ./xi-sys.cfg

    # Was previous step completed?
    if [ ! -f installed.importnagiosql ]; then
            echo "NagiosQL data was not imported - run previous script" >&2
            exit 1
    fi

    for svc in $httpd nagios npcd [color=#FF0000]$ntpd[/color] $crond; do
            if [ ! `command -v systemctl` ]; then
                service $svc restart
            else
                systemctl restart $svc
            fi
    done

    echo "Daemons started OK"

My workaround was to remove the call to $ntpd in the list of services to restart.



    #!/bin/bash -e

    . ./xi-sys.cfg

    # Was previous step completed?
    if [ ! -f installed.importnagiosql ]; then
            echo "NagiosQL data was not imported - run previous script" >&2
            exit 1
    fi

    for svc in $httpd nagios npcd $crond; do
            if [ ! `command -v systemctl` ]; then
                service $svc restart
            else
                systemctl restart $svc
            fi
    done

    echo "Daemons started OK"


Removing this service from the list had no impact on the remaining steps in the install process nor the functionality of the NagiosXI.

--SN

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.