538 Bytes hinzugefügt
, 14:38, 16. Aug. 2017
== ICINGA ==
=== Features ===
==== Livestatus ====
<code>
icinga2 feature enable livestatus
</code>
Die Konfiguration von livestatus wird in /etc/icinga2/features-available/livestatus.conf erweitert, um Zugriff nicht nur per Unix-Socket, sonder auch per TCP zu erlauben:
<code>
object LivestatusListener "livestatus-tcp" {
socket_type = "tcp"
bind_host = "0.0.0.0"
bind_port = "6666"
}
</code>
Neustart und Test:
<code>
service icinga2 restart
echo -e 'GET services\n' | netcat 0 6666
</code>
== ICINGAWeb2 ==
== Nagvis ==