From source » Historique » Version 40
Patrice Nadeau, 2015-02-08 09:50
| 1 | 18 | Patrice Nadeau | {{TOC}} |
|---|---|---|---|
| 2 | |||
| 3 | 25 | Patrice Nadeau | h1. Installation à partir des sources |
| 4 | 1 | Patrice Nadeau | |
| 5 | 7 | Patrice Nadeau | L'installation à partir des sources permet |
| 6 | 6 | Patrice Nadeau | * d'avoir la version la plus récente |
| 7 | * n'est pas relier à une plate-forme spécifique (i686 vs x86_64 vs ARM) |
||
| 8 | |||
| 9 | 10 | Patrice Nadeau | Les test ont été fait à partir d'un BeagleBone Black sous openSUSE 13.2. |
| 10 | 8 | Patrice Nadeau | |
| 11 | 4 | Patrice Nadeau | h2. Prérequis |
| 12 | 1 | Patrice Nadeau | |
| 13 | 6 | Patrice Nadeau | Installer les utilitaires pour la compilation : |
| 14 | 35 | Patrice Nadeau | |
| 15 | openSUSE : |
||
| 16 | 5 | Patrice Nadeau | <pre><code class="bash"> |
| 17 | zypper install make gcc |
||
| 18 | 35 | Patrice Nadeau | </code></pre> |
| 19 | |||
| 20 | 36 | Patrice Nadeau | Ubuntu/Debian : |
| 21 | 35 | Patrice Nadeau | <pre><code class="bash"> |
| 22 | sudo apt-get install make gcc |
||
| 23 | 5 | Patrice Nadeau | </code></pre> |
| 24 | 4 | Patrice Nadeau | |
| 25 | 9 | Patrice Nadeau | h2. Fichiers |
| 26 | |||
| 27 | 2 | Patrice Nadeau | Télécharger |
| 28 | 1 | Patrice Nadeau | <pre><code class="bash"> |
| 29 | 21 | Patrice Nadeau | mkdir ~/tmp |
| 30 | cd ~/tmp |
||
| 31 | 1 | Patrice Nadeau | wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-4.0.8.tar.gz |
| 32 | wget http://nagios-plugins.org/download/nagios-plugins-2.0.3.tar.gz |
||
| 33 | 3 | Patrice Nadeau | </code></pre> |
| 34 | 1 | Patrice Nadeau | |
| 35 | 9 | Patrice Nadeau | h2. Création de l'usager et groupe |
| 36 | |||
| 37 | 37 | Patrice Nadeau | openSUSE : |
| 38 | 3 | Patrice Nadeau | <pre><code class="bash"> |
| 39 | useradd nagios |
||
| 40 | groupadd nagcmd |
||
| 41 | 11 | Patrice Nadeau | /usr/sbin/groupadd nagios |
| 42 | 1 | Patrice Nadeau | usermod -a -G nagcmd nagios |
| 43 | 11 | Patrice Nadeau | usermod -a -G nagios nagios |
| 44 | 24 | Patrice Nadeau | # Permet de soumettre des check via l'interface web |
| 45 | usermod -a -G nagcmd wwwrun |
||
| 46 | 37 | Patrice Nadeau | </code></pre> |
| 47 | |||
| 48 | Debian/Ubuntu : |
||
| 49 | <pre><code class="bash"> |
||
| 50 | sudo useradd nagios |
||
| 51 | sudo groupadd nagcmd |
||
| 52 | sudo /usr/sbin/groupadd nagios |
||
| 53 | sudo usermod -a -G nagcmd nagios |
||
| 54 | sudo usermod -a -G nagios nagios |
||
| 55 | # Permet de soumettre des check via l'interface web |
||
| 56 | sudo usermod -a -G nagcmd www-data |
||
| 57 | 9 | Patrice Nadeau | </code></pre> |
| 58 | |||
| 59 | 17 | Patrice Nadeau | h2. Nagios Core |
| 60 | |||
| 61 | h3. Compilation |
||
| 62 | 1 | Patrice Nadeau | |
| 63 | 9 | Patrice Nadeau | <pre><code class="bash"> |
| 64 | 38 | Patrice Nadeau | tar xvf nagios-4.0.8.tar.gz |
| 65 | 21 | Patrice Nadeau | cd ~/tmp/nagios-4.0.8 |
| 66 | 9 | Patrice Nadeau | ./configure --with-command-group=nagcmd |
| 67 | make all |
||
| 68 | 39 | Patrice Nadeau | </code></pre> |
| 69 | |||
| 70 | openSUSE : |
||
| 71 | <pre><code class="bash"> |
||
| 72 | 12 | Patrice Nadeau | make install |
| 73 | make install-init |
||
| 74 | make install-commandmode |
||
| 75 | make install-config |
||
| 76 | 13 | Patrice Nadeau | make install-webconf |
| 77 | 39 | Patrice Nadeau | </code></pre> |
| 78 | |||
| 79 | Debian/Ubuntu : |
||
| 80 | <pre><code class="bash"> |
||
| 81 | sudo make install |
||
| 82 | sudo make install-init |
||
| 83 | sudo make install-commandmode |
||
| 84 | sudo make install-config |
||
| 85 | sudo make install-webconf |
||
| 86 | 3 | Patrice Nadeau | </code></pre> |
| 87 | 14 | Patrice Nadeau | |
| 88 | 19 | Patrice Nadeau | h3. Configuration de l'usager web |
| 89 | 14 | Patrice Nadeau | |
| 90 | <pre><code class="bash"> |
||
| 91 | htpasswd2 -c /usr/local/nagios/etc/htpasswd.users nagiosadmin |
||
| 92 | 15 | Patrice Nadeau | systemctl restart apache2 |
| 93 | 14 | Patrice Nadeau | </code></pre> |
| 94 | 16 | Patrice Nadeau | |
| 95 | 22 | Patrice Nadeau | h2. Nagios Plugins |
| 96 | |||
| 97 | h3. Compilation |
||
| 98 | |||
| 99 | <pre><code class="bash"> |
||
| 100 | cd ~/tmp/nagios-plugin |
||
| 101 | ./configure --with-nagios-user=nagios --with-nagios-group=nagios |
||
| 102 | make |
||
| 103 | make install |
||
| 104 | </code></pre> |
||
| 105 | |||
| 106 | 26 | Patrice Nadeau | h2. Nagios Remote Plugin Executor |
| 107 | |||
| 108 | 29 | Patrice Nadeau | Ce « add-on » se divise en deux parties |
| 109 | 31 | Patrice Nadeau | * Le deamon _NRPE_ qui roule comme agent sur la machine sous surveillance |
| 110 | 33 | Patrice Nadeau | * Le « plugin » _nrpe_check_ qui roule sur le serveur Nagios pour exécuter les vérifications sur des machines distantes. |
| 111 | 1 | Patrice Nadeau | |
| 112 | 29 | Patrice Nadeau | h3. Téléchargement |
| 113 | |||
| 114 | 26 | Patrice Nadeau | <pre><code class="bash"> |
| 115 | http://sourceforge.net/projects/nagios/files/nrpe-2.x/nrpe-2.15/nrpe-2.15.tar.gz |
||
| 116 | </code></pre> |
||
| 117 | 1 | Patrice Nadeau | |
| 118 | h3. Compilation |
||
| 119 | 29 | Patrice Nadeau | |
| 120 | <pre><code class="bash"> |
||
| 121 | # Installe les librairies de développement SSL |
||
| 122 | 30 | Patrice Nadeau | zypper install libopenssl-devel |
| 123 | 29 | Patrice Nadeau | # Décompresse le fichier |
| 124 | tar xvf nrpe-2.15.tar.gz |
||
| 125 | cd nrpe-2.15 |
||
| 126 | 1 | Patrice Nadeau | # lance la compilation |
| 127 | ./configure |
||
| 128 | make all |
||
| 129 | 31 | Patrice Nadeau | </code></pre> |
| 130 | |||
| 131 | h4. Installation |
||
| 132 | |||
| 133 | Un fois compilés, les exécutables ne sont pas copiés au bons endroits. On doit donc le faire manuellement. |
||
| 134 | |||
| 135 | 32 | Patrice Nadeau | h5. check_nrpe |
| 136 | |||
| 137 | 31 | Patrice Nadeau | <pre><code class="bash"> |
| 138 | cp src/check_nrpe /usr/local/nagios/libexec |
||
| 139 | 29 | Patrice Nadeau | </code></pre> |
| 140 | 32 | Patrice Nadeau | |
| 141 | h5. NRPE |
||
| 142 | |||
| 143 | 34 | Patrice Nadeau | Problème #31 |
| 144 | 26 | Patrice Nadeau | |
| 145 | 23 | Patrice Nadeau | h2. Services |
| 146 | 1 | Patrice Nadeau | |
| 147 | 20 | Patrice Nadeau | <pre><code class="bash"> |
| 148 | systemctl enable nagios |
||
| 149 | 1 | Patrice Nadeau | </code></pre> |
| 150 | |||
| 151 | 22 | Patrice Nadeau | Vérifier si les fichiers de configurations sont bon |
| 152 | <pre><code class="bash"> |
||
| 153 | /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg |
||
| 154 | </code></pre> |
||
| 155 | 20 | Patrice Nadeau | |
| 156 | 22 | Patrice Nadeau | Lancer Nagios |
| 157 | 20 | Patrice Nadeau | <pre><code class="bash"> |
| 158 | 22 | Patrice Nadeau | systemctl start nagios |
| 159 | 1 | Patrice Nadeau | </code></pre> |
| 160 | 28 | Patrice Nadeau | |
| 161 | La page est disponible à http://server.domain/nagios |