Project

General

Profile

Distributed Icinga2 » History » Version 1

Jon Goldberg, 06/09/2017 04:58 AM

1 1 Jon Goldberg
# Distributed Icinga2
2
3
### Overview
4
5
With a single instance of Icinga2, we can check the status of remote services that are publicly accessible.  For instance, we can check if SSH responds on a remote host.  However, we can NOT check information that is not publicly accessible - for instance, whether the remote server has low disk space.
6
7
To handle this, we use a distributed Icinga2 infrastructure.  Our original Icinga instance becomes a **master** instance.  We also install a minimal version of Icinga on remote servers, known as **satellite** instances.  Icinga2 has a wizard that establishes encrypted communication links between servers.  We use a [top-down configuration](https://docs.icinga.com/icinga2/latest/doc/module/icinga2/chapter/distributed-monitoring#distributed-monitoring-top-down), which means that all checks are initiated from the master instance - but some service checks are configured to run on a different endpoint.
8
9
In our instance, that means that some checks run entirely on the master - e.g. an SSH check - but a "low disk space" check is scheduled on the master instance, which contacts the satellite, instructs it to run the plugin, and return the result.
10
### Installing Icinga2 as a Satellite
11
12
Source: https://www.olindata.com/blog/2015/03/monitoring-remote-systems-icinga-2
13
14
Run these commands on the satellite (assumes the satellite OS is Ubuntu)
15
```
16
apt install software-properties-common
17
add-apt-repository ppa:formorer/icinga
18
apt update
19
apt install icinga2
20
systemctl enable icinga2.service
21
systemctl start icinga2.service
22
# Get the salt from the master node in /etc/icinga2/constants.conf
23
icinga2 pki ticket --cn 'icinga.jmaconsulting.biz' --salt <salt goes here>
24
icinga2 node wizard
25
```
26
Alternate instructions for Debian Jessie:
27
```
28
# Note: Ensure you have jessie-backports enabled: https://backports.debian.org/Instructions/
29
apt install software-properties-common
30
apt-get -t jessie-backports install icinga2
31
# Debian installs some some host definitions that interfere with being a satellite; delete them
32
rm -rf /etc/icinga2/conf.d/hosts
33
systemctl enable icinga2.service
34
systemctl start icinga2.service
35
# Get the salt from the master node in /etc/icinga2/constants.conf
36
icinga2 pki ticket --cn 'orange.megaphonetech.com' --salt <salt goes here>
37
icinga2 node wizard
38
```
39
Here's an example of the node wizard setup for a red.megaphonetech.com:
40
```
41
Please specify if this is a satellite setup ('n' installs a master setup) [Y/n]: 
42
Starting the Node setup routine...
43
Please specify the common name (CN) [rh6.jmaconsulting.biz]: 
44
Please specify the master endpoint(s) this node should connect to:
45
Master Common Name (CN from your master setup): icinga.jmaconsulting.biz
46
Do you want to establish a connection to the master from this node? [Y/n]: 
47
Please fill out the master connection information:
48
Master endpoint host (Your master's IP address or FQDN): icinga.jmaconsulting.biz
49
Master endpoint port [5665]: 
50
Add more master endpoints? [y/N]: 
51
Please specify the master connection for CSR auto-signing (defaults to master endpoint host):
52
Host [icinga.jmaconsulting.biz]: 
53
Port [5665]: 
54
information/base: Writing private key to '/etc/icinga2/pki/rh6.jmaconsulting.biz.key'.
55
information/base: Writing X509 certificate to '/etc/icinga2/pki/rh6.jmaconsulting.biz.crt'.
56
information/cli: Fetching public certificate from master (icinga.jmaconsulting.biz, 5665):
57
58
Certificate information:
59
60
 Subject:     CN = icinga.jmaconsulting.biz
61
 Issuer:      CN = Icinga CA
62
 Valid From:  Jan 25 23:12:52 2017 GMT
63
 Valid Until: Jan 22 23:12:52 2032 GMT
64
 Fingerprint: B7 DC AF 0C F7 B2 EF DD C9 8F 34 99 5C C2 9A 86 57 9C D2 B0 
65
66
Is this information correct? [y/N]: Y
67
information/cli: Received trusted master certificate.
68
69
Please specify the request ticket generated on your Icinga 2 master.
70
 (Hint: # icinga2 pki ticket --cn 'rh6.jmaconsulting.biz'): #Run this command on the master to generate a ticket number
71
information/cli: Requesting certificate with ticket '00a2aff74b3b3145630504276912a9addd714810'.
72
73
information/cli: Created backup file '/etc/icinga2/pki/rh6.jmaconsulting.biz.crt.orig'.
74
information/cli: Writing signed certificate to file '/etc/icinga2/pki/rh6.jmaconsulting.biz.crt'.
75
information/cli: Writing CA certificate to file '/etc/icinga2/pki/ca.crt'.
76
Please specify the API bind host/port (optional):
77
Bind Host []: 
78
Bind Port []: 
79
Accept config from master? [y/N]: Y
80
Accept commands from master? [y/N]: Y
81
information/cli: Disabling the Notification feature.
82
Disabling feature notification. Make sure to restart Icinga 2 for these changes to take effect.
83
information/cli: Enabling the Apilistener feature.
84
Enabling feature api. Make sure to restart Icinga 2 for these changes to take effect.
85
information/cli: Created backup file '/etc/icinga2/features-available/api.conf.orig'.
86
information/cli: Generating local zones.conf.
87
information/cli: Dumping config items to file '/etc/icinga2/zones.conf'.
88
information/cli: Created backup file '/etc/icinga2/zones.conf.orig'.
89
information/cli: Updating constants.conf.
90
information/cli: Created backup file '/etc/icinga2/constants.conf.orig'.
91
information/cli: Updating constants file '/etc/icinga2/constants.conf'.
92
information/cli: Updating constants file '/etc/icinga2/constants.conf'.
93
Done.
94
```
95
Now run `service icinga2 checkconfig && service icinga2 restart` to finish the installation on the satellite.
96
### Create Zones and Endpoints
97
98
You must also set up the `Zone` and `Endpoint` objects, stored in `/etc/icinga2/zones.conf`. In our model, each zone contains one and only one endpoint.
99
#### Zones and Endpoints on the Satellite
100
101
The node wizard mostly handles this for you on the satellite, it will generate a file with these constants.  Note that NodeName and ZoneName are defined in /etc/icinga2/constants.conf, and should both be the name of the host.
102
```
103
object Endpoint "orange.megaphonetech.com" {
104
        host = "orange.megaphonetech.com"
105
        port = "5665"
106
}
107
108
object Zone "master" {
109
        endpoints = [ "orange.megaphonetech.com" ]
110
}
111
112
object Endpoint NodeName {
113
}
114
115
object Zone ZoneName {
116
        endpoints = [ NodeName ]
117
        parent = "master"
118
}
119
```
120
Add the following Zone object on your satellite.  Files in this zone are synced to all Icinga2 instances, so you can distribute many configuration files this way:
121
```
122
/* sync global commands */
123
object Zone "global-templates" {
124
        global = true
125
}
126
```
127
#### Zones and Endpoints on the Master
128
129
Edit `/etc/icinga2/zones.conf`.  Add the Zone and Endpoint of the new satellite.  For instance, if the satellite has a ZoneName and NodeName of database.lavabrooklyn.org defined in its constants /etc/icinga2/constants.conf then you should add these objects on the master:
130
```
131
object Endpoint "database.lavabrooklyn.org" {
132
}
133
134
object Zone "database.lavabrooklyn.org" {
135
        endpoints = [ "database.lavabrooklyn.org" ]
136
        parent = "master"
137
}
138
```
139
#### Testing the Zones/Endpoints
140
141
After reloading Icinga2 on both satellite and master, you should be able to see the new checks reflected in Icingaweb2 immediately, though they might be listed as "Pending".  Click "Check now" to ensure they're working as expected.
142
### How to change a satellite's hostname
143
144
    Re-run `icinga2 node wizard` on the satellite.  This will fix the satellite's "constants.conf" and "zones.conf".
145
    Edit `/etc/icinga2/zones.conf` Zone and Endpoint on the master to change the name.