{% extends "base_status.html" %} {% block title %}Error{% endblock %} {% block smallheader %}{% endblock %} {% block largeheader %}Oh no, something went wrong ☹{% endblock %} {% block nav1 %}{{ block.super }}{% endblock %} {% load adagiostags %} {% block content %}
{% if not nagios_running %} We can't find a running nagios instance. Make sure nagios is running and adagios can connect to it. {% endif %} {% if nagios_running and not num_problems %} Adagios cannot connect to livestatus. Don't worry, you can still use the other parts of Adagios, but to get the status part to work check the following: Install instructions for rpm-based systems:
yum --enablerepo=ok-testing install mk-livestatus
pynag config --append "broker_module=/usr/lib64/mk-livestatus/livestatus.o /var/spool/nagios/cmd/livestatus"
service nagios reload
            
Install instructions for debian-based systems:
apt-get install check-mk-livestatus
pynag config --append "broker_module=/usr/lib/check_mk/livestatus.o /var/lib/nagios3/rw/livestatus"
service nagios3 reload
            
{% endif %}
{% if exception %}
{{ exception_type }}: {{ exception }}
{% endif %}
{% if traceback %}

If you think this is a bug. Send the following information to the developers:

{{ traceback }}
{% endif %}
{% endblock %} {% block toolbar %} {% endblock %} {% block footer %} {{ block.super }} {% endblock %}