<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>L&#039;admin sous GNU / Linux - Blog Libre &#187; nagios</title> <atom:link href="http://blog.admin-linux.org/tag/nagios/feed" rel="self" type="application/rss+xml" /><link>http://blog.admin-linux.org</link> <description>Vous trouverez des howtos, des news, des astuces sur les logiciels libres. Les sujets traités y sont la messagerie (postfix, cyrus...), les systèmes (ubuntu, debian, gentoo...), la supervision (nagios, zabbix, centreon...), les base des données (mysql, postgresql), le web (apache et autres...) et tout le reste</description> <lastBuildDate>Thu, 26 Jan 2012 13:31:34 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Supervision de postfix via mailgraph avec le plugin check_mailstat.pl via Nagios/Centreon</title><link>http://blog.admin-linux.org/supervision/supervision-de-postfix-via-mailgraph-avec-le-plugin-check_mailstat-pl-via-nagios-centreon</link> <comments>http://blog.admin-linux.org/supervision/supervision-de-postfix-via-mailgraph-avec-le-plugin-check_mailstat-pl-via-nagios-centreon#comments</comments> <pubDate>Thu, 08 Sep 2011 22:21:49 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Supervision]]></category> <category><![CDATA[centreon]]></category> <category><![CDATA[mailgraph]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[Planet-Libre]]></category> <category><![CDATA[postfix]]></category><guid isPermaLink="false">http://blog.admin-linux.org/?p=2684</guid> <description><![CDATA[Voici une procédure permettant de contrôler l&#8217;activité d&#8217;un serveur de messagerie postfix via Nagios / Centreon. Pour cela nous allons utiliser le plugins check_mailstat.pl avec une petite adaptation du script...]]></description> <content:encoded><![CDATA[<p><a href="http://blog.admin-linux.org/wp-content/uploads/2011/09/Centreon_graph_mailstat_home.png"><img class="aligncenter size-full wp-image-2704" title="Centreon_graph_mailstat_home" src="http://blog.admin-linux.org/wp-content/uploads/2011/09/Centreon_graph_mailstat_home.png" alt="Centreon graph mailstat home Supervision de postfix via mailgraph avec le plugin check mailstat.pl via Nagios/Centreon" width="465" height="240" /></a></p><p>Voici une procédure permettant de contrôler l&#8217;activité d&#8217;un serveur de messagerie <a title="postfix" href="http://blog.admin-linux.org/tag/postfix" target="_blank">postfix</a> via Nagios / Centreon.</p><p>Pour cela nous allons utiliser le plugins <a title="check_mailstat.pl" href="http://www.linuxplayer.org/2010/12/check_mailstat-pl-a-nagios-plugin-for-monitoring-mail-server-statistics" target="_blank">check_mailstat.pl</a> avec une petite adaptation du script afin de le rendre compatible avec la génération de graphe sous Centreon.</p><p>Le plugin check_mailstat.pl va récupérer depuis des données depuis <a title="mailgraph" href="http://mailgraph.schweikert.ch/" target="_blank">mailgraph</a> qui permet de générer des graphes via <a title="RRDTool" href="http://oss.oetiker.ch/rrdtool/" target="_blank">RRDTool</a></p><p>Tout d&#8217;abord, il faut installer Mailgraph sur l&#8217;hôte à superviser, ici une Debian.</p><h2>Installation de Mailgraph</h2><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> mailgraph</pre></div></div><p>Si l&#8217;installation ne vous a pas poser les questions propres au paramétrage, lancer :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dpkg-reconfigure mailgraph</pre></div></div><p>Voici les questions et réponse à fournir :</p><p>Mailgraph doit-il être lancé au démarrage ? OUI</p><p>Fichier de journalisation à utiliser par mailgraph : /var/log/mail.log (à adapter)</p><p>Faut-il compter les courriels entrants comme des courriels sortants ? NON (J&#8217;utilise Amavis, donc j&#8217;ai choisi cette option, encore une fois à adapter.</p><h2>Paramétrage et sécurisation de l&#8217;accès web Mailgraph</h2><p>On va ensuite créer un un espace web dédié avec virtualhost afin de restreindre l&#8217;accès à l&#8217;interface web :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph<span style="color: #000000; font-weight: bold;">/</span>cgi-bin
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> www-data:www-data <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>cgi-bin<span style="color: #000000; font-weight: bold;">/</span>mailgraph.cgi <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph<span style="color: #000000; font-weight: bold;">/</span>cgi-bin<span style="color: #000000; font-weight: bold;">/</span>.</pre></div></div><p>Voici un Virtual Host type avec prise en charge du ssl :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ServerName votre.hostname.com
&nbsp;
ServerAdmin votre<span style="color: #000000; font-weight: bold;">@</span>mail.com
DocumentRoot <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph
&nbsp;
<span style="color: #666666; font-style: italic;"># Mise en place du SSL</span>
SSLEngine on
SSLCertificateFile    <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>web<span style="color: #000000; font-weight: bold;">/</span>mailgraph.crt
SSLCertificateKeyFile <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>web<span style="color: #000000; font-weight: bold;">/</span>mailgraph.key
&nbsp;
SSLOptions +StdEnvVars
&nbsp;
Options FollowSymLinks MultiViews
Options +ExecCGI
AddHandler cgi-script .cgi
SSLOptions +StdEnvVars
&nbsp;
<span style="color: #666666; font-style: italic;"># Restriction par mot de passe basique</span>
AuthUserFile <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph<span style="color: #000000; font-weight: bold;">/</span>.htpasswd
AuthGroupFile <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null
AuthName <span style="color: #ff0000;">&quot;Veuillez vous identifier&quot;</span>
AuthType Basic
&nbsp;
require valid-user
&nbsp;
<span style="color: #666666; font-style: italic;"># Restriction par adresse IP</span>
AllowOverride none
&nbsp;
Order deny,allow
Deny from all
Allow from 192.168.1.0
&nbsp;
ErrorLog <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>mailgraph-error.log
<span style="color: #666666; font-style: italic;"># Possible values include: debug, info, notice, warn, error, crit,</span>
<span style="color: #666666; font-style: italic;"># alert, emerg.</span>
LogLevel warn
CustomLog <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>mailgraph-access.log combined</pre></div></div><p>Créer donc le fichier /etc/apache2/sites-available/mailgraph puis l&#8217;activer :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>sites-available<span style="color: #000000; font-weight: bold;">/</span>mailgraph <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>sites-enabled<span style="color: #000000; font-weight: bold;">/</span></pre></div></div><p>Empecher l&#8217;indexation par les moteurs de recherche, on ne sait jamais :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph<span style="color: #000000; font-weight: bold;">/</span>robots.txt
User-agent: <span style="color: #000000; font-weight: bold;">*</span>
Disallow: <span style="color: #000000; font-weight: bold;">/</span></pre></div></div><p>Ensuite générer le certificat SSL :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">openssl genrsa <span style="color: #660033;">-out</span> mailgraph.key <span style="color: #000000;">1024</span>
openssl req <span style="color: #660033;">-new</span> <span style="color: #660033;">-x509</span> <span style="color: #660033;">-days</span> <span style="color: #000000;">3650</span> <span style="color: #660033;">-key</span> mailgraph.key <span style="color: #660033;">-out</span> mailgraph.crt</pre></div></div><p>Déplacer les certificats/clefs à l&#8217;endroit paramétrer dans le Vhost</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> mailgraph.<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>web<span style="color: #000000; font-weight: bold;">/</span>.</pre></div></div><p>S&#8217;assurer du bon paramétrage des ports apache (NameVirtualHost *:443)</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>ports.conf
&nbsp;
NameVirtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">80</span>
Listen <span style="color: #000000;">80</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># If you add NameVirtualHost *:443 here, you will also have to change</span>
<span style="color: #666666; font-style: italic;"># the VirtualHost statement in /etc/apache2/sites-available/default-ssl</span>
<span style="color: #666666; font-style: italic;"># to &amp;lt;VirtualHost *:443&amp;gt;</span>
<span style="color: #666666; font-style: italic;"># Server Name Indication for SSL named virtual hosts is currently not</span>
<span style="color: #666666; font-style: italic;"># supported by MSIE on Windows XP.</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>NameVirtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">443</span><span style="color: #000000; font-weight: bold;">&lt;/</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>
Listen <span style="color: #000000;">443</span>
Listen <span style="color: #000000;">4433</span></pre></div></div><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></div></div><p>Génération de l&#8217;authentification Apache</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">htpasswd <span style="color: #660033;">-c</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>mailgraph<span style="color: #000000; font-weight: bold;">/</span>.htpasswd admin</pre></div></div><p>Redémarrer Apache, ce qui n&#8217;est pas forcément nécessaire, mais bon&#8230;</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></div></div><p>(un dernier pour la route)</p><p>Voilà, vous devriez avoir accès à Mailgraph en SSL avec restriction par IP et Authentification basique Apache</p><p>Vous pouvez voir votre Mailgraph via l&#8217;url :</p><p>https://votre.hostname.com/cgi-bin/mailgraph.cgi</p><h2>Installation du plugin chek_mailstat.pl</h2><h3>Installation des pré-requis</h3><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">unzip</span> <span style="color: #c20cb9; font-weight: bold;">patch</span>
<span style="color: #c20cb9; font-weight: bold;">unzip</span> check_mailstat_plugin_v0.9.1.zip</pre></div></div><p>Afin d&#8217;utiliser mailgraph, il est nécessaire de le patcher :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> check_mailstat_plugin_v0.9.1
<span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #660033;">-b</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>mailgraph mailgraph.patch</pre></div></div><p>Là il faut attendre un peu afin que le fichier /var/tmp/mailstat soit créé. Le temps varie en fonction de la taille de votre fichier /var/log/mail.log</p><p>Attribuer les droits à l&#8217;utilisateur nagios</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chown</span> nagios:nagios <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>mailstat
<span style="color: #c20cb9; font-weight: bold;">chown</span> nagios:nagios <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>mailstat.old</pre></div></div><h3>Tests et paramétrage</h3><h4>Test en local</h4><p>Déplacer le script check_mailstat.pl là où se trouve tout les plugins</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> check_mailstat.pl ..</pre></div></div><p>Vous pouvez lancer le script perl avec l&#8217;option &laquo;&nbsp;-h&nbsp;&raquo; pour afficher l&#8217;aide</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>check_mailstat.pl <span style="color: #660033;">-h</span></pre></div></div><p>Voici comment cela fonctionne par l&#8217;exemple :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">root<span style="color: #000000; font-weight: bold;">@</span>server:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>nagios<span style="color: #000000; font-weight: bold;">/</span>plugins<span style="color: #666666; font-style: italic;"># ./check_mailstat.pl -w &lt;strong&gt;10&lt;/strong&gt;:0:0:0:0:0 -c &lt;strong&gt;20&lt;/strong&gt;:0:0:0:0:0</span>
OK: <span style="color: #000000; font-weight: bold;">&lt;</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>sent:<span style="color: #000000;">7.68</span><span style="color: #000000; font-weight: bold;">&lt;/</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>   received:<span style="color: #000000;">5.66</span>   bounced:<span style="color: #000000;">0.00</span>   rejected:<span style="color: #000000;">0.40</span>   virus:<span style="color: #000000;">0.00</span>   spam:<span style="color: #000000;">0.00</span>   <span style="color: #000000; font-weight: bold;">|&lt;</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #007800;">sent</span>=<span style="color: #000000;">7.68</span><span style="color: #000000; font-weight: bold;">&lt;/</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>   <span style="color: #007800;">received</span>=<span style="color: #000000;">5.66</span>   <span style="color: #007800;">bounced</span>=<span style="color: #000000;">0.00</span>   <span style="color: #007800;">rejected</span>=<span style="color: #000000;">0.40</span>   <span style="color: #007800;">virus</span>=<span style="color: #000000;">0.00</span>   <span style="color: #007800;">spam</span>=<span style="color: #000000;">0.00</span></pre></div></div><p>En gros, je déclenche un WARN dès que je suis à <strong>10</strong> mails envoyés et un CRITICAL dès que je suis à <strong>20</strong></p><p>Voici un autre exemple :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">root<span style="color: #000000; font-weight: bold;">@</span>server:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>nagios<span style="color: #000000; font-weight: bold;">/</span>plugins<span style="color: #666666; font-style: italic;"># ./check_mailstat.pl -w 0:0:0:0:0:&lt;strong&gt;10&lt;/strong&gt; -c 0:0:0:0:0:&lt;strong&gt;20&lt;/strong&gt;</span>
OK: sent:<span style="color: #000000;">7.68</span>   received:<span style="color: #000000;">5.66</span>   bounced:<span style="color: #000000;">0.00</span>   rejected:<span style="color: #000000;">0.40</span>   virus:<span style="color: #000000;">0.00</span>   <span style="color: #000000; font-weight: bold;">&lt;</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>spam:<span style="color: #000000;">0.00</span><span style="color: #000000; font-weight: bold;">&lt;/</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span>  <span style="color: #000000; font-weight: bold;">|</span><span style="color: #007800;">sent</span>=<span style="color: #000000;">7.68</span>   <span style="color: #007800;">received</span>=<span style="color: #000000;">5.66</span>   <span style="color: #007800;">bounced</span>=<span style="color: #000000;">0.00</span>   <span style="color: #007800;">rejected</span>=<span style="color: #000000;">0.40</span>   <span style="color: #007800;">virus</span>=<span style="color: #000000;">0.00</span>  <span style="color: #000000; font-weight: bold;">&lt;</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #007800;">spam</span>=<span style="color: #000000;">0.00</span><span style="color: #000000; font-weight: bold;">&lt;/</span>strong<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div><p>Je déclenche un WARN dès que je suis à <strong>10</strong> spams envoyés et un CRITICAL dès que je suis à <strong>20</strong></p><p>On peut aussi tester plusieurs paramètres en même temps</p><p>root@server:/usr/lib/nagios/plugins# ./check_mailstat.pl -w <strong>20</strong>:0:0:0:0:<strong>10</strong> -c <strong>30</strong>:0:0:0:0:<strong>20</strong><br /> OK: <strong>sent:7.68</strong>   received:5.66   bounced:0.00   rejected:0.40   virus:0.00   <strong>spam:0.00</strong>   |<strong>sent=7.68 </strong>  received=5.66   bounced=0.00   rejected=0.40   virus=0.00   <strong>spam=0.00</strong></p><p>Je déclenche un WARN dès que je suis à <strong>20</strong> mails ou <strong>10</strong> spams envoyés et un CRITICAL dès que je suis à <strong>30</strong> mails ou <strong>20</strong>spams</p><h4>Paramétrage</h4><p>Il faut ajouter la commande afin que NRPE la connaisse :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>nagios<span style="color: #000000; font-weight: bold;">/</span>nrpe.cfg</pre></div></div><p>Ajouter la ligne ci-dessous :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">command</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>check_mailstat<span style="color: #7a0874; font-weight: bold;">&#93;</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>nagios<span style="color: #000000; font-weight: bold;">/</span>plugins<span style="color: #000000; font-weight: bold;">/</span>check_mailstat.pl <span style="color: #660033;">-w</span> <span style="color: #007800;">$ARG1</span>$ <span style="color: #660033;">-c</span> <span style="color: #007800;">$ARG2</span>$</pre></div></div><p>Puis redémarrer NRPE</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>nagios-nrpe-server restart</pre></div></div><h4>Test depuis le serveur de supervision</h4><p>Ici On demande à NRPE d&#8217;appeler la commande check_mailstat en posititionnant un WARN à 40 mails envoyés et un CRITICAL à 50</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">root<span style="color: #000000; font-weight: bold;">@</span>info59sup01:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>nagios<span style="color: #000000; font-weight: bold;">/</span>libexec<span style="color: #666666; font-style: italic;"># ./check_nrpe -H muscat.nexen.net -c check_mailstat -a 40:0:0:0:0:0 50:0:0:0:0:0</span>
OK: sent:<span style="color: #000000;">7.68</span>   received:<span style="color: #000000;">5.66</span>   bounced:<span style="color: #000000;">0.00</span>   rejected:<span style="color: #000000;">0.40</span>   virus:<span style="color: #000000;">0.00</span>   spam:<span style="color: #000000;">0.00</span>   <span style="color: #000000; font-weight: bold;">|</span><span style="color: #007800;">sent</span>=<span style="color: #000000;">7.68</span>   <span style="color: #007800;">received</span>=<span style="color: #000000;">5.66</span>   <span style="color: #007800;">bounced</span>=<span style="color: #000000;">0.00</span>   <span style="color: #007800;">rejected</span>=<span style="color: #000000;">0.40</span>   <span style="color: #007800;">virus</span>=<span style="color: #000000;">0.00</span>   <span style="color: #007800;">spam</span>=<span style="color: #000000;">0.00</span></pre></div></div><p>Si c&#8217;est OK, il faut mettre en place la supervision au niveau de Centreon</p><h2>Installation niveau Centreon</h2><p>Voici une façon d&#8217;utiliser Centreon. Personnellement, je l&#8217;utilise en me basant beaucoup sur les modèles pour n&#8217;avoir généralement que les arguments à renseigner lors de la mise en place de service, mais bon libre à vous <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Supervision de postfix via mailgraph avec le plugin check mailstat.pl via Nagios/Centreon" class='wp-smiley' title="Supervision de postfix via mailgraph avec le plugin check mailstat.pl via Nagios/Centreon" /></p><p>Les deux premiers points ne sont bien sur qu&#8217;à faire qu&#8217;une seule fois.</p><p>Je vais utiliser lancer mes vérifications via NRPE pour lancer ensuite en local le script check_mailstat.pl</p><p>&nbsp;</p><h3>Création de la Commande</h3><p>Aller dans Configuration -&gt; Commandes</p><p>Créer une sonde nommée check_nrpe_mailstat</p><p>Ligne de commande :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$USER1</span>$<span style="color: #000000; font-weight: bold;">/</span>check_nrpe <span style="color: #660033;">-H</span> <span style="color: #007800;">$HOSTADDRESS</span>$ <span style="color: #660033;">-c</span> check_mailstat <span style="color: #660033;">-a</span> <span style="color: #007800;">$ARG1</span>$ <span style="color: #007800;">$ARG2</span>$</pre></div></div><p>Exemple d&#8217;arguments :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">!</span><span style="color: #000000;">300</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">!</span><span style="color: #000000;">500</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span></pre></div></div><p>Modèle de graphique :</p><p>Mailstat (nous allons voir ensuite pour le créer)</p><p>Création du modèle de service</p><p>Aller dans Configuration -&gt; Services -&gt; Modèles</p><p>Créer un modèle nommé :</p><p>NRPE-MAILSTAT</p><p>Commande de vérification :</p><p>check_nrpe_mailstat (créer précédemment)</p><p>Ne pas donner d&#8217;argument pour laisser le paramètrage au niveau du service lui même</p><h3>Création de la sonde de Service</h3><p>Voici la partie qui serait à répeter en cas de déploiement</p><p>Aller dans Configuration -&gt; Services -&gt; Services par hôte</p><p>Créer un service nommé NRPE-MAILSTAT</p><p>Modèle de service :</p><p>NRPE-MAILSTAT</p><p>Arguments : (à adapter selon les besoins)</p><p>!40:0:0:0:0:0!50:0:0:0:0:0</p><p>Sauvegarder</p><p>Ensuite redémmarer le poller du Nagios concerné</p><p>Configuration -&gt; Nagios</p><p>Serveur :</p><p>Votre_Poller</p><p>Cochez :</p><p>Deplacer les fichiers générés<br /> Redémarrer Nagios</p><p>Et voilà, vous superviser ce qui circule au niveau de votre messagerie.</p><p>Vous avez même des graphiques sur les mails envoyés, enfin seulement sur la première donnée remontée à savoir les mails envoyés.</p><p>Il semblerait que les données de performances renvoyées ne soient pas tout à fait compatibles avec le format attendu par Centreon pour la génération de graphe.</p><p>En effet, seul le nombre d&#8217;éléments envoyés est graphé.</p><p>J&#8217;ai du modifier le script pour que cela fonctionne.</p><h3>Graphe des données de Performances via Centreon</h3><h4>Modification du script pour gestion des données de performance par Centreon</h4><p>Pour cela j&#8217;ai modifié le script Perl afin qu&#8217;il fournisse des données de performances comme attendu par Centreon</p><p>Voici ma modification ligne 97 :</p><p>Remplacer :</p><div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$perfdata</span> <span style="color: #339933;">=</span> <span style="color: #000066;">sprintf</span> <span style="color: #ff0000;">&quot;sent=%-6.2f received=%-6.2f bounced=%-6.2f rejected=%-6.2f virus=%-6.2f spam=%-6.2f&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">@stat_counter</span><span style="color: #339933;">;</span></pre></div></div><p>Par :</p><div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$perfdata</span> <span style="color: #339933;">=</span> <span style="color: #000066;">sprintf</span> <span style="color: #ff0000;">&quot;sent=%-6.2f;received=%-6.2f;bounced=%-6.2f;rejected=%-6.2f;virus=%-6.2f;spam=%-6.2f&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">@stat_counter</span><span style="color: #339933;">;</span></pre></div></div><p>Ceci permet de renvoyer des résultats de ce type :</p><div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:monospace;">root<span style="color: #0000ff;">@server</span><span style="color: #339933;">:/</span>usr<span style="color: #339933;">/</span>lib<span style="color: #339933;">/</span>nagios<span style="color: #339933;">/</span>plugins<span style="color: #666666; font-style: italic;"># ./check_mailstat_new.pl -w 5:0:0:0:0:0 -c 10:0:0:0:0:0</span>
OK<span style="color: #339933;">:</span> sent<span style="color: #339933;">:</span><span style="color: #cc66cc;">3.12</span>   received<span style="color: #339933;">:</span><span style="color: #cc66cc;">6.25</span>   bounced<span style="color: #339933;">:</span><span style="color: #cc66cc;">0.62</span>   rejected<span style="color: #339933;">:</span><span style="color: #cc66cc;">0.00</span>   virus<span style="color: #339933;">:</span><span style="color: #cc66cc;">0.00</span>   spam<span style="color: #339933;">:</span><span style="color: #cc66cc;">0.00</span>   <span style="color: #339933;">|</span>sent<span style="color: #339933;">=</span><span style="color: #cc66cc;">3.12</span>  <span style="color: #339933;">;</span>received<span style="color: #339933;">=</span><span style="color: #cc66cc;">6.25</span>  <span style="color: #339933;">;</span>bounced<span style="color: #339933;">=</span><span style="color: #cc66cc;">0.62</span>  <span style="color: #339933;">;</span>rejected<span style="color: #339933;">=</span><span style="color: #cc66cc;">0.00</span>  <span style="color: #339933;">;</span>virus<span style="color: #339933;">=</span><span style="color: #cc66cc;">0.00</span>  <span style="color: #339933;">;</span>spam<span style="color: #339933;">=</span><span style="color: #cc66cc;">0.00</span></pre></div></div><p>Vous remarquerez l&#8217;apparition des points-virgules nécessaires au traitement de toutes les données de performances par Centreon.</p><h4>Création du modèle de graphique</h4><p>Nous allons maintenant créer un nouveau template de graphe pour accueillir et personnaliser les graphes qui vont être générés.</p><p>Aller dans Vues -&gt; Graphiques -&gt; Modèles</p><p>Choisir de dupliquer le modèle par défaut</p><p>Nom du Modèle : Mailstat (Celui qu&#8217;on a utilisé plus haut)</p><p>Label Vertical : Nombre</p><p>Vous aurez peut-être remarquer pour la création de la commande que j&#8217;ai utilisé ce modèle de graphique.</p><h4>Création des Courbes</h4><p>Aller dans Vues -&gt; Graphiques -&gt; Courbes</p><p>Pour rappel les données de performances sont :</p><p><strong>sent</strong>=3.12  ;received=6.25  ;bounced=0.62  ;rejected=0.00  ;virus=0.00  ;spam=0.00</p><p>Cliquer sur Ajouter :</p><p>Nom du Modèle de courbes : Mailstat-sent</p><p>Nom de la source de données : <strong>sent</strong> ( Cela correspond au nom présent dans les données de performances)</p><p>Voici un screenshot pour le reste des paramètres :</p><p>&nbsp;</p><p><a href="http://blog.admin-linux.org/wp-content/uploads/2011/09/Centreon_creation_modele_courbes.png"><img class="aligncenter size-medium wp-image-2703" title="Centreon_creation_modele_courbes" src="http://blog.admin-linux.org/wp-content/uploads/2011/09/Centreon_creation_modele_courbes-300x185.png" alt="Centreon creation modele courbes 300x185 Supervision de postfix via mailgraph avec le plugin check mailstat.pl via Nagios/Centreon" width="300" height="185" /></a></p><p>&nbsp;</p><p>Il faut répeter l&#8217;opération, en n&#8217;oubliant pas de personnaliser les couleurs, pour chaque élément de données de performances, soit :</p><p>sent<br /> received<br /> bounced<br /> rejected<br /> virus<br /> spam</p><p>On retrouvera donc des courbes au nom : (N&#8217;oubliez pas Mailstat en début pour identifier plus facilement les modèles de courbes que vous souhaitez)</p><p>Mailstat-sent<br /> Mailstat-received<br /> Mailstat-bounced<br /> Mailstat-rejected<br /> Mailstat-virus<br /> Mailstat-spam</p><p>Ce qui vous donnera au final un graphique de ce type :</p><p>Image:Centreon_graph_mailstat.png</p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/supervision/supervision-de-postfix-via-mailgraph-avec-le-plugin-check_mailstat-pl-via-nagios-centreon/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>EyesOfNetwork &#8211; supervision libre &#8211; nouvelle version 2.1.5 et interview</title><link>http://blog.admin-linux.org/supervision/eyesofnetwork-supervision-libre-nouvelle-version-2-1-5</link> <comments>http://blog.admin-linux.org/supervision/eyesofnetwork-supervision-libre-nouvelle-version-2-1-5#comments</comments> <pubDate>Mon, 28 Jun 2010 22:27:02 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Supervision]]></category> <category><![CDATA[eyesofnetwork]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/?p=2051</guid> <description><![CDATA[EyesOfNetwork, solution de supervision libre basée entre autre sur Nagios, vient de sortir une nouvelle version qui est la 2.1.5. EyesOfNetwork est une distribution incluant les éléments ci-dessous : GED...]]></description> <content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2057" title="eon" src="http://localhost/wordpress/wp-content/uploads/2010/06/eon.jpg" alt="eon EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" width="480" height="225" /></p><p><a title="EyesOfNetwork" href="http://www.eyesofnetwork.com/" target="_blank">EyesOfNetwork</a>, solution de supervision libre basée entre autre sur <a title="Nagios" href="http://blog.admin-linux.org/tag/nagios" target="_blank">Nagios</a>, vient de sortir une nouvelle version qui est la 2.1.5.</p><p>EyesOfNetwork est une distribution incluant les éléments ci-dessous :</p><ul><li><a title="GED" href="http://generic-ed.sourceforge.net/" target="_blank">GED</a> (Generic Event Dispatcher) : gestion multi sites et sécurisée  des évènements,</li><li><a title="NAGIOS" href="http://www.nagios.org/" target="_blank">NAGIOS</a> : gestion des incidents et des problèmes,</li><li><a title="NAGIOSBP" href="http://nagiosbp.projects.nagiosforge.org/" target="_blank">NAGIOSBP</a> : gestion de la criticité des applications,</li><li><a title="NAGVIS" href="http://www.nagvis.org/" target="_blank">NAGVIS</a> : cartographie personnalisée de la disponibilité,</li><li><a title="CACTI" href="http://www.cacti.net/" target="_blank">CACTI</a> : gestion des performances,</li><li><a title="weathermap" href="http://www.network-weathermap.com/" target="_blank">WEATHERMAP</a> : cartographie de la bande passante,</li><li><a title="backup-manager" href="http://www.backup-manager.org/" target="_blank">BACKUP MANAGER</a> : Outil de sauvegarde de la solution,</li><li>EONWEB : Interface Web unifiée de la solution,</li><li><a title="EZGRAPH" href="http://ezcomponents.org/docs/tutorials/Graph" target="_blank">EZGRAPH</a> : Librairie d’affichage des graphiques,</li><li><a title="SNMPTT" href="http://snmptt.sourceforge.net/" target="_blank">SNMPTT</a> : Traduction des traps snmp,</li><li><a title="GLPI" href="http://www.glpi-project.org/" target="_blank">GLPI</a>: Gestion de parc.</li></ul><p>Pour mieux comprendre comment interagissent tous ces éléments, le mieux est d&#8217;avoir un schéma :</p><p><a href="http://localhost/wordpress/wp-content/uploads/2010/06/architecture.png"><img class="aligncenter size-medium wp-image-2053" title="architecture" src="http://blog.admin-linux.org/wp-content/uploads/2010/06/architecture-300x229.png" alt="architecture 300x229 EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" width="300" height="229" /></a></p><p>Maintenant que le décor est planté, et que vous avez une vision un peu plus complète de ce que réalise EyesOfNetwork, voici les nouveautés de cette nouvelle version :</p><ul><li>Support du NEB (Nagios Event Broker) Mklivestatus 1.1.4 en options (en vue de remplacer ndo2db)</li><li>Ajout du plugin <a title="aggregate" href="http://docs.cacti.net/plugin:aggregate" target="_blank">aggregate</a> dans cacti</li><li>Ajout de liens équipements et modèles dans la configuration nagios</li><li>Rapports de configuration nagios (html et csv)</li><li>Lien entre cookie eonweb et REMOTE_USER apache  (/etc/httpd/conf.d/eonweb.conf)</li><li>Mise à jour de la distribution GNU/Linux Centos 5.5</li><li>Mise à jour de Php 5.2.13</li><li>Mise à jour de Eonweb 2.1-1</li><li>Mise à jour de Nagios 3.2.1</li><li>Mise à jour de Ged 1.2.9</li><li>Mise à jour de Nagvis 1.4.7 à noter que la 1.5 est sortie le 15 juin et propose d&#8217;ailleurs par défaut le broker Mklivestatus.</li><li>Mise à jour de NagiosBP 0.95</li><li>Mise à jour de Weathermap 0.97a</li><li>Mise à jour de Backup-Manager 0.7.9</li><li>Mise à jour de Glpi 0.72.4</li><li>Mise à jour de Fop 0.95-0.3</li><li>Et de nombreuses corrections de bugs</li></ul><p>A l&#8217;occasion de la sortie de cette nouvelle version, voici l&#8217;interview de Michael Aubertin qui est le leader de la communauté  EyesOfNetwork. (Merci à lui pour le temps qu&#8217;il m&#8217;a accordé)</p><p>- Peux-tu nous présenter la solution EyesOfNetwork ?</p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>EyesOfNetwork est une solution de supervision dans la présentation et le choix d&#8217;architecture sont pensé pour être une aide au pilotage des systèmes d&#8217;informations. Dit comme cela, c&#8217;est un peu pompeux mais cela se traduit dans la réalité par une foultitude de petits détails permettant de gagner du temps grâce à la supervision et pas l&#8217;inverse. Dans cette optique, nous avons pris le parti de travaillé sur une présentation ITIL des outils afin de mieux parler le même langage. Pour profiter à plein de cela il faut malheureusement mettre son côté technophile de côté pour ce focaliser sur du simple et sur les utilisateurs, ou, ad minima les applications. Lorsque je dis simple, je vais illustrer mon propos par un détail technique, les plugins de check nagios. On nous reproche parfois de ne pas offrir immédiatement des mesures de performances liées au check Nagios. En effet d&#8217;autres excellentes solutions libres offrent cette facilité. Nous ne le faisons pas (même si dans les faits c&#8217;est possible) car cela implique deux choix impactant pour l&#8217;utilisateur. Premièrement, les plugins (ou scripts) deviennent beaucoup plus compliqué à lire et à écrire, or, pour qu&#8217;une supervision vive bien dans le temps il est impératif que son maintien en condition opération se fasse sans douleur. En ne permettant pas, à priori, la mesure de perf via Nagios, nous acceptons son action vers la mesure de disponibilité et rendons ses scripts de check extrêmement simple à produire et maintenir. C&#8217;est le fameux retour 0,1,2. Du côté de la DSI cela permet de spécialité la mesure de la disponibilité de la mesure de la capacité. Là encore, nous employons rarement le (le moins possible en fait) le terme de performance. En effet, même si Cacti est infiniment plus puissant pour ce boulot que ne pourra jamais l&#8217;être Nagios, il est primordial de bien faire comprendre que supervision ne veut pas dire console de débogage. Or, quand je vois sur le marché des outils propriétaire prétendant faire du monitoring de performance en temps réel, je dis &laquo;&nbsp;Oui, bravo, et votre supervision c&#8217;est quoi ?&nbsp;&raquo;. Donc à la question EON c&#8217;est quoi je réponds c&#8217;est un outil de supervision  sans plus de prétention que de se vouloir simple, pratique, ITIL et utile.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>- Pourrais-tu nous présenter brièvement les membres de la communauté EyesOfNetwork ?</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Avec plaisir! Que dire, nous sommes assez peu nombreux, pour l&#8217;instant, mais l&#8217;ambiance est fabuleuse que ce soit dans la core team ou dans la communauté au sens large. Je pense que c&#8217;est en partie parce que nous &laquo;&nbsp;commitons&nbsp;&raquo; facilement, et probablement aussi parce qu&#8217;on est des antithèses de stars et du coup les utilisateurs et les contributeurs nous abordent et nous enrichissent plus facilement.  Petit focus sur la core team. La core team c&#8217;est élargie d&#8217;un membre cette année je vais donc commencer par lui. </em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Sebastien Fernandez est un garçon formidable qui à tout compris au libre. Il ne se demande pas s&#8217;il peut coder, il offre se qu&#8217;il peut. Et on a vu arrivé un travailleur acharné qui test, démonte, remonte, anime le forum, produit des docs, conduit des POCs, bref, il ne code pas directement mais son apports et immenses. Il est extrêmement pertinent dans ses jugements techniques et cela nous permet d&#8217;opérer des choix plus facilement quant à l&#8217;avenir de tel ou tel outil. Du côté animation du forum, il est toujours d&#8217;une grande bienveillance pour les utilisateurs. Bref, c&#8217;est un p&#8217;tit gars qu&#8217;il est très bien!</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Jean Philippe Levy est un grand pénible, mais c&#8217;est mon hémisphère droit. Il connait parfaitement les outils libres de supervision et à ce titre est un des architectes de la solution. Nos discussions sont souvent houleuses, puis, rapidement on trouve le compromis que nous proposons à la core team, et en fonction de leurs avis, on prend la direction en question. Au-delà de son action sur l&#8217;architecture, c&#8217;est un ami et il est rien de moins que le principal développeur de EON. C&#8217;est aussi lui que se gère une partie de l&#8217;infrastructure informatique du projet.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Jérémie Bernard est l&#8217;artiste de la bande (Même si JP joue merveilleusement de la gratte), et c&#8217;est mon hémisphère gauche. &lt;Vous aurez noté que je n&#8217;ai plus que le reptilien à moi <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_razz.gif' alt="icon razz EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" class='wp-smiley' title="EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" /> &gt; Jérémie est le génie du C++ et de l&#8217;objet de la bande. Lorsque j&#8217;ai un truc tuchie à pondre, c&#8217;est vers lui que je me tourne. On fonctionne comme avec JP (mais en moins houleux <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_biggrin.gif' alt="icon biggrin EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" class='wp-smiley' title="EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" /> ), on brainstorming comme des fous, j&#8217;explique ma vision, pourquoi et ou je veux aller (généralement à 5 ans). Là, il réfléchit et reviens vers moi avec une idée complémentaire. Après il commence à coder et on finit ensemble. En fait, je me contente presque de voir si je lis le code, mais comme il est humble il dit rien <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_razz.gif' alt="icon razz EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" class='wp-smiley' title="EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" /> . Par exemple, notre bus logiciel, cœur de la solution, et partie d&#8217;une feuille de route que je lui ai donnée il y 5 ans et que nous avons réalisé par étape. Mais la trame, c&#8217;est le cas de le dire était posé il y a 5 ans. Idem pour le moteur de génération de document basé sur OpenOffice.org présent dans la solution.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Moi-même. Finalement je sers plus à grand-chose <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_biggrin.gif' alt="icon biggrin EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" class='wp-smiley' title="EyesOfNetwork   supervision libre   nouvelle version 2.1.5 et interview" /> . Plaisanterie mise à part, je suis un des architectes de la solution,  j&#8217;essaie d&#8217;animer un peu la communauté, de parler un peu du produit. Je suis aussi toujours en mouvement et à l&#8217;affut sur l&#8217;organisation des développements aidé en cela par Jean Philippe pour poursuivre notre objectif. </em></span></span></p><p><span style="color: #000000;"> </span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><br /> - Est-ce qu&#8217;aujourd&#8217;hui EyesOfNetwork est seulement supporté par APX ou disposez-vous d&#8217;une communauté autre que les salariés d&#8217;APX ?</span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>APX est notre principal sponsor. C&#8217;est aussi, pour des raisons de droits, le propriétaire de la marque. Yves Pellemans (Directeur Technique National) et plus généralement la Direction d&#8217;APX sait être extrêmement discret et ne nous impose absolument rien.  APX à bien compris nos motivations et se positionne sur un rapport gagnant / gagnant avec nous. Aussi, si il est exact que APX et à ce jour notre seul gros sponsor, APX n&#8217;est pas le sponsor. D&#8217;ailleurs, l&#8217;équipe est actuellement en relation avec d&#8217;autres représentants en Afrique, au Maghreb et au Moyen orient. Du côté de la communauté, 3 membres de la Core sont salariés d&#8217;APX (cela fait d&#8217;ailleurs partie du sponsoring) mais les autres contributeurs et membres n&#8217;ont pas de relation avec APX.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"> </span></span></p><p>- Quels sont les besoins qui ont amenés à la création de ce bundle orienté supervision libre ?</p><p><span style="font-size: x-small;"><em>De la question de la genèse&#8230; Sur ce genre de projet ou l&#8217;humain est au cœur de tout, il est difficile de dicté la vérité. Aussi, je me propose de vous livrer la mienne. Fin 2000, un groupe de trois personnes et moi avons discuté autour d&#8217;un bon café. Ce groupe comptait un expert réseau, deux experts du libre (coté système) et un expert en supervision. La conversation tournait autour d&#8217;un produit dont la traduction était en cours, NetSaint. L&#8217;ancêtre de Nagios. Il nous est apparu qu&#8217;il serait intéressant de produire une distribution orientée supervision. Expert ITIL de la première heure, Eric Vidal (l&#8217;expert en supervision du groupe) nous a donné une feuille de route des besoins. Les développements ont mis un peu de temps pour décoller car le travail est considérable. Tout c’est accéléré avec l’arrivé de Jérémie Bernard et Jean Phillippe Levy. En 2008, Grâce à Yves Pellemans, Didier Bouvet, Jean Pierre Filangi et la Direction du groupe (Merci encore à tous pour cette belle aventure :D), APX nous a accueilli, nous a fait confiance et tous les trois, nous avons pu relancer la dynamique. EyesOfNetwork était née. Depuis, la communauté s&#8217;est élargi, pour notre plus grand bonheur à d&#8217;autre membre extérieur à APX.</em></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><br /> - On voit souvent un rapport aux méthodes ITIL, quels sont les briques couvertes par EyesOfNetwork ?</span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>La version actuelle de EyesOfNetwork couvre:</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un premier niveau du processus &laquo;&nbsp;Service Desk&nbsp;&raquo; (1/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>La complétude du processus &laquo;&nbsp;Gestion des Incidents&nbsp;&raquo; (5/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un bon niveau du processus de &laquo;&nbsp;Gestion des configurations&nbsp;&raquo; (3/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un bon niveau du processus de &laquo;&nbsp;Gestion des problèmes&nbsp;&raquo; (3/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un premier niveau de &laquo;&nbsp;Gestion des changements&nbsp;&raquo; (1/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un premier niveau de &laquo;&nbsp;Gestion des mises en production&nbsp;&raquo; (1/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un très bon niveau du processus &laquo;&nbsp;Gestion des capacités&nbsp;&raquo; (4/5) </em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>La complétude du processus &laquo;&nbsp;Gestion de la disponibilité&nbsp;&raquo; (5/5)</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Dans l&#8217;avenir, nous allons nous attacher au service des processus de &laquo;&nbsp;Gestion des niveaux de service&nbsp;&raquo; et &laquo;&nbsp;Gestion des couts&nbsp;&raquo;.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><br /> - Quels sont les évolutions à venir de EyesOfNetwork ?</span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>EyesOfNetwork va se décliner sur plusieurs briques spécialisées.</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>EyesOfNetwork Supervision, peu ou prou l&#8217;actuel brique avec des améliorations au fils des versions</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>EyesOfNetwork Exploitation, qui fera le focus sur l&#8217;exploitation et la production</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>EyesOfNetwork Patrimoine, qui s&#8217;occupera du processus éponyme.</em></span></span></p><p><span style="color: #000000;"> </span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Dans l&#8217;immédiat, nous avons plusieurs travaux ouverts tel que:</em></span></span></p><p><span style="color: #000000;"> </span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>La hiérarchisation des évènements</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>Un mash-up de rapports personnalisés</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>L&#8217;intégration de Shinken</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>La notion de GTI (TTO) en plus de la mesure des SLA</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>La formalisation des contrats de services</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>L&#8217;ajout OCS/GLPI complètement intégré (Base Exploitation).</em></span></span></p><p><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;">·</span></span></span><span style="color: #000000;"><span style="font-family: Symbol;"><span style="font-size: x-small;"> </span></span></span><span style="color: #000000;"><span style="font-size: x-small;"><em>&#8230; et beaucoup d&#8217;autres POC.</em></span></span></p><p><span style="color: #000000;"> </span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><br /> - Quels sont les points forts selon toi de EyesOfNetwork ?</span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>EON a les points forts de son point faible. Je m&#8217;explique. EON à une approche très pragmatique, simple et pratique, or, souvent la solution et comparé à d&#8217;autres par un personnel très technique. Ainsi, il arrive fréquemment qu&#8217;en première intention EON soit écarté pour une solution plus technologique. Par contre, dès que l&#8217;on parle SLA, Applications, modélisation d&#8217;organisation, multi-sites, multi-clients, la, EON devient vite extrêmement pertinent, que ce soit pour les techniciens, les administrateurs, les DSI et la DSIO. Autre exemple mais toujours aussi orienté simplicité et pragmatisme, la haute disponibilité et le PRA de la solution elle-même. Parlons PRA. La solution intègre son propre mécanisme de sauvegarde au travers de l&#8217;excellent BackupManager. Cela peut paraitre anecdotique mais cela permet à la fois la sauvegarde à chaud et une procédure rapide et fiable en cas de sinistre majeur. Du coté HA, EON supporte l&#8217;installation de packages cluster et peut ainsi fonctionné dans le cadre d&#8217;un PCS. Le cluster peut ou non (Via <a title="DRDB" href="http://blog.admin-linux.org/tag/drdb" target="_blank">DRDB</a>) possède un storage mutualisé de type SAN, iSCSI&#8230; On peut aussi, lorsque l&#8217;utilisateur souhaite le support de Red Hat Enterprise Linux*, installer EON sur une &laquo;&nbsp;vrai&nbsp;&raquo; Red Hat Enterprise Linux* le tout sans effort.</em></span></span></p><p><span style="color: #000000;"> </span></p><p><span style="color: #333333;"><span style="font-size: x-small;"><em>*LINUX est une appellation commerciale de Linus Torvalds. RED HAT est une marque déposée de Red Hat, Inc.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"> </span></span></p><p>- Quels sont les besoins que vous pourriez demander auprès de la communauté du libre ?</p><p><span style="color: #000000;"><span style="font-size: x-small;"><em>Vaste question. Très franchement, cela risque de paraitre une réponse abstraite, mais c&#8217;est notre mode de fonctionnement. Les chantiers sont nombreux, le champ de compétence nécessaire est très large, et toute idée et toujours bonne à entendre et analyser. Aussi, tout contributeur capable de s&#8217;investir sur une tache qu&#8217;il aura demandé ou choisit avec sérieux sera toujours le bienvenue. Cela va de la traduction à l&#8217;animation en passant évidement par le code et la promotion. Les seuls impératifs sont, l&#8217;humilité, l&#8217;envie, le sérieux, et accepter d&#8217;être visible car nous tenons à valoriser chacun. C&#8217;est, selon moi, un point essentiel du paradigme économique et social qu&#8217;est le logiciel libre.</em></span></span></p><p><span style="color: #000000;"><span style="font-size: x-small;"><em><br /> </em></span></span></p><p>Liens utiles :</p><p><a title="Site Officiel de EyesOfNetwork" href="http://www.eyesofnetwork.com/" target="_blank">Site Officiel de EyesOfNetwork</a></p><p><a title="Téléchargement et Changelog d'EyesOfNetwork" href="http://www.eyesofnetwork.com/?page_id=48&amp;lang=fr" target="_blank">Téléchargement et Changelog d&#8217;EyesOfNetwork</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/supervision/eyesofnetwork-supervision-libre-nouvelle-version-2-1-5/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Centreon &#8211; supervision libre &#8211; nouvelle version 2.1.6</title><link>http://blog.admin-linux.org/supervision/centreon-supervision-libre-nouvelle-version-2-1-6</link> <comments>http://blog.admin-linux.org/supervision/centreon-supervision-libre-nouvelle-version-2-1-6#comments</comments> <pubDate>Sun, 02 May 2010 22:13:39 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Supervision]]></category> <category><![CDATA[centreon]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/?p=1953</guid> <description><![CDATA[Centreon, solution de supervision opensource basée sur Nagios, vient de sortir en version 2.1.6 Cette nouvelle version est une version mineure afin de corriger quelques dysfonctionnements. Centreon 2.1.6 bien que...]]></description> <content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1359" title="centreon2-1" src="http://blog.admin-linux.org/wp-content/uploads/2009/09/centreon2-1.jpg" alt="centreon2 1 Centreon   supervision libre   nouvelle version 2.1.6" width="480" height="225" /></p><p><a title="Centreon" href="http://blog.admin-linux.org/tag/centreon" target="_blank">Centreon</a>, solution de supervision opensource basée  sur <a title="Nagios" href="http://blog.admin-linux.org/tag/nagios" target="_blank">Nagios</a>, vient de sortir en version 2.1.6</p><p>Cette nouvelle version est une version mineure afin de corriger quelques dysfonctionnements.</p><p>Centreon 2.1.6 bien que mineure, apporte une fonctionnalité qui je pense va être très pratique.</p><p>Il s&#8217;agit d&#8217;un système de vérification de bon fonctionnement de la solution de  supervision.</p><p>Des indicateurs ont été placés en haut de l&#8217;écran à l&#8217;endroit visible sur la capture d&#8217;écran ci-dessous et permettront de connaître en temps réel l&#8217;état de son serveur.</p><p>Il s&#8217;agit de la partie Poller States :</p><p><a href="http://blog.admin-linux.org/wp-content/uploads/2010/05/Centreon-check-poller-state_m.jpg"><img class="aligncenter size-full wp-image-1964" title="Centreon-check-poller-state_m" src="http://blog.admin-linux.org/wp-content/uploads/2010/05/Centreon-check-poller-state_m.jpg" alt="Centreon check poller state m Centreon   supervision libre   nouvelle version 2.1.6" width="448" height="90" /></a></p><p>Voici une explication des trois nouveaux éléments.</p><ul><li>Le premier concerne la latence des pollers qui indique si oui ou non les pollers ont du retard. Cela indiquerait un problème de performance.</li><li>Le deuxième indique si les pollers sont démarrés</li><li>Le troisième indique si les pollers sont toujours accessibles, superviser les pollers est logique, mais savoir si ils sont accessible peu importe l&#8217;endroit où l&#8217;on se trouve sera très pratique</li></ul><p>Vous l&#8217;avez compris, cette nouvelle version reste une version mineure, mais je pense que même si ces avancées paraissent simple, il fallait y penser et ça sera vraiment pratique, surtout l&#8217;information concernant les retards de sa plateforme.</p><p>Ça m&#8217;est déjà arrivé, et cette évolution m&#8217;aurait fait gagner bien du temps.</p><p>Liens utiles :</p><p><a title="Site Officiel de Centreon" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.centreon.com');" href="http://www.centreon.com/fr/" target="_blank">Site Officiel de Centreon</a></p><p><a title="Source de l'information" href="http://blog.centreon.com/index.php?post/2010/04/26/Nouvelle-version-de-Centreon-disponible-en-version-2.1.6-Centreon-2.1.6-Released-!" target="_blank">Source de l&#8217;information</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/supervision/centreon-supervision-libre-nouvelle-version-2-1-6/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Howto install NRPE sous Ubuntu Server via les sources</title><link>http://blog.admin-linux.org/supervision/howto-install-nrpe-sous-ubuntu-server-via-les-sources</link> <comments>http://blog.admin-linux.org/supervision/howto-install-nrpe-sous-ubuntu-server-via-les-sources#comments</comments> <pubDate>Fri, 09 Apr 2010 13:26:20 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Supervision]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[nrpe]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/?p=1911</guid> <description><![CDATA[Voici un petit aide-mémoire pour installer le client Nagios NRPE sous Ubuntu avec les sources. Plantons le décor : J&#8217;ai un serveur de supervision Nagios  sous Ubuntu Server 9.10 que...]]></description> <content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1912" title="nagios_nrpe" src="http://blog.admin-linux.org/wp-content/uploads/2010/04/nagios_nrpe.jpg" alt="nagios nrpe Howto install NRPE sous Ubuntu Server via les sources"  /></p><p>Voici un petit aide-mémoire pour installer le client Nagios NRPE sous Ubuntu avec les sources.</p><p>Plantons le décor :</p><p>J&#8217;ai un serveur de supervision Nagios  sous Ubuntu Server 9.10 que j&#8217;ai installé via les sources et j&#8217;ai besoin du plugin NRPE.</p><p>J&#8217;ai essayé d&#8217;installer nrpe (nagios-nrpe-plugin) via aptitude il me met des dépendances et me propose d&#8217;installer complétement nagios, ce qui me dérange quelque peu&#8230;</p><p>Il existe déjà plein de tuto pour installer NRPE sur le net, l&#8217;intérêt de celui-ci est en rapport avec une erreur concernant les fichiers Kerberos non trouvés sur la distribution Ubuntu Server.</p><p>Une dépendance possible est également le support du ssl :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># aptitude install libssl-dev</span></pre></div></div><p>Tout d&#8217;abord téléchargeons les <a title="sources de NRPE" href="http://www.nagios.org/download/addons/" target="_blank">sources de NRPE</a></p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># cd /usr/local/src</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># wget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># tar -xvzf nrpe-2.12.tar.gz</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># cd nrpe-2.12</span></pre></div></div><p>Si vous lancez juste le ./configure vous rencontrerez cette erreur :</p><p><strong>checking for Kerberos include files&#8230; could not find include files</strong></p><p>Ceci est valable sur les Debian également.</p><p>En regardant dans le fichier configure on voit qu&#8217;il recherche kerberos (krb5.h) dans le répertoire /usr/kerberos/include</p><p>Le fichier krb5.h se trouve dans /usr/include sous Ubuntu</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># aptitude install libkrb5-dev</span></pre></div></div><p>Donc lancer la commande :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># ./configure --with-kerberos-inc=/usr/include</span></pre></div></div><p>Et là vous n&#8217;aurez plus cette erreur.</p><p>Puis lancer :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># make all</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># make install</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># cp init-script.debian /etc/init.d/nrpe</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># chmod 755 /etc/init.d/nrpe</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># mkdir /usr/local/nagios/etc</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># cp sample-config/nrpe.cfg /usr/local/nagios/etc</span></pre></div></div><p>Pensez à adapter votre configuration du fichier nrpe.cfg notamment le paramètre allowed_hosts</p><p>Pensez à ajouter le service nrpe au démarrage :</p><div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># update-rc.d nrpe defaults</span></pre></div></div><p>Voila pour la petite astuce, perso je n&#8217;avais pas trouvé l&#8217;info sur la toile, pour Kerberos et Ubuntu, c&#8217;est pour ça que j&#8217;ai créé cet article</p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/supervision/howto-install-nrpe-sous-ubuntu-server-via-les-sources/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Test de montée en charge (benchmark) avec des logiciels libres</title><link>http://blog.admin-linux.org/administration/test-de-montee-en-charge-benchmark-avec-des-logiciels-libres</link> <comments>http://blog.admin-linux.org/administration/test-de-montee-en-charge-benchmark-avec-des-logiciels-libres#comments</comments> <pubDate>Thu, 18 Feb 2010 12:42:43 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Administration]]></category> <category><![CDATA[ab]]></category> <category><![CDATA[benchmark]]></category> <category><![CDATA[clif]]></category> <category><![CDATA[curl-loader]]></category> <category><![CDATA[funkload]]></category> <category><![CDATA[jmeter]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[opensta]]></category> <category><![CDATA[Planet-Libre]]></category> <category><![CDATA[seleniumhq]]></category> <category><![CDATA[siege]]></category> <category><![CDATA[testmaker]]></category> <category><![CDATA[tsung]]></category> <category><![CDATA[zabbix]]></category><guid isPermaLink="false">http://blog.admin-linux.org/?p=1795</guid> <description><![CDATA[Cette article va vous présenter différentes solutions libres pour réaliser des tests de montée en charge, dit benchmark. Cette idée m&#8217;est venu d&#8217;un commentaire que j&#8217;ai laissé sur le blog...]]></description> <content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1796" title="benchmark" src="http://blog.admin-linux.org/wp-content/uploads/2010/02/benchmark.jpg" alt="benchmark Test de montée en charge (benchmark) avec des logiciels libres" width="480" height="225" /></p><p>Cette article va vous présenter différentes solutions libres pour réaliser des <a title="tests de montée en charge, dit benchmark." href="http://blog.admin-linux.org/tag/benchmark" target="_blank">tests de montée en charge, dit benchmark.</a></p><p>Cette idée m&#8217;est venu d&#8217;un commentaire que j&#8217;ai laissé sur le blog de Nicolargo concernant un article sur <a title="curl-loader" href="http://blog.nicolargo.com/2010/02/simuler-des-connexions-httpftp-simultanees.html" target="_blank">curl-loader</a></p><p>Mon commentaire énumérait différentes applications libres permettant de réaliser ces benchmarks et le suivi de la montée en charge.</p><p>J&#8217;ai donc décidé d&#8217;en faire un billet complet, j&#8217;avais déjà fait des billets sur <a title="Siège" href="http://blog.admin-linux.org/serveurs-web-application/siege-outils-de-benchmark-web-nouvelle-version" target="_blank">Siège</a> et <a title="Tsung" href="http://blog.admin-linux.org/administration/tsung-outils-de-benchmark-multi-protocole" target="_blank">Tsung</a></p><h1><span style="color: #fd8d12;">Les Applications libres de benchmarking :</span></h1><h2>Siege :</h2><p>Donc pour rappel, <strong>Siege</strong> permet de faire des tests de montée en charge de vos appliactions web en simulant un grand nombre de connexions simultanées sur une ou plusieurs URLs données.<br /> Siege rapporte le nombre totale de hits enregistrés, de bytes transférés, le temps de réponse, les accès concurrents et retourne le statut du serveur.<br /> Siege supporte les protocoles HTTP/1.0 et 1.1, les méthodes GET &amp; POST, les cookies, les transaction log, et l’authentification basique.</p><p><a title="Site officiel de Siege" href="http://www.joedog.org/index/siege-home" target="_blank">Site officiel de Siege</a></p><h2>Tsung :</h2><p>Tsung est un outils de test de performances permettant de réaliser des benchmark massif. Il est Multi-protocoles utilisant un 	système de plugin (HTTP, WebDAV, SOAP, PostgreSQL, MySQL, LDAP, SSL 	et XMPP/Jabber)</p><p>Et chose très importante, il permet de faire des scénarios. Les scénarios permette de simuler de la montée en charge mais non sur une seul url, mais via une succession d&#8217;action, par exemple, j&#8217;arrive sur la page d&#8217;accueil, je clique sur la catégorie &laquo;&nbsp;Administration&nbsp;&raquo;, je choisi l&#8217;article &laquo;&nbsp;Test de montée en charge avec des logiciels libres&nbsp;&raquo;. L’activité de l’utilisateur et le taux d’arrivée 	peut être aléatoire en utilisant une notion de probabilité&#8230;.</p><p>Ce qui est plus proche de la vie de ton application web qu&#8217;un nombre de requêtes simultanées sur une url.</p><p><a title="Site Officiel de Tsung" onclick="javascript:pageTracker._trackPageview('/outbound/article/tsung.erlang-projects.org');" href="http://tsung.erlang-projects.org/" target="_blank">Site Officiel de Tsung</a></p><h2>JMeter :</h2><p>Jmeter permet de simuler le comportement de plusieurs utilisateurs agissant de manière simultanée initialement sur une application Web.</p><p>Il est multi-protocole et peut désormais faire ses tests sur HTTP, HTTPS, SOAP, Database via JDBC, LDAP, JMS, POP3(S) and IMAP(S)</p><p>JMeter permet de faire des tests de performances, de robustesse, de charge et réalise des statistiques avec graphes à l&#8217;appui.</p><p><a title="JMeter sur Wikipedia" href="http://fr.wikipedia.org/wiki/JMeter" target="_blank">JMeter sur Wikipedia</a></p><p><a title="Très bonne ressource pour l'utilisation de JMeter" href="http://blog.milamberspace.net/index.php/jmeter-pages/jmeter-test-de-charges-dun-site-web-mode-demploi" target="_blank">Très bonne ressource pour l&#8217;utilisation de JMeter</a></p><p><a title="Site Officiel de JMeter" href="http://jakarta.apache.org/jmeter/" target="_blank">Site Officiel de JMeter</a></p><h2>AB &#8211; Apache Benchmark :</h2><p>Très simpliste, il permet de simuler x utilisateur sur une url donnée</p><h2>Curl-Loader :</h2><p>Permet de simuler x connections simultanées sur plusieurs urls en même temps.</p><p>Il supporte les protocole HTTP et FTP.</p><p><a title="Curl-Loader sur Nicolargo" href="http://blog.nicolargo.com/2010/02/simuler-des-connexions-httpftp-simultanees.html" target="_blank">Curl-Loader sur Nicolargo</a></p><p><a title="Site Officiel de Curl-Loader" href="http://curl-loader.sourceforge.net/" target="_blank">Site Officiel de Curl-Loader</a></p><h2>OpenSTA :</h2><p>OpenSTA permet de faire des tests de montée en charge sur les protocole HTTP et HTTPS</p><p>Il a de gros inconvénients, d&#8217;abord il n&#8217;est disponible que pour la plate-forme Windows et est vraiment difficile à prendre en main.</p><p><a title="Site Officiel de OpenSTA" href="http://opensta.org/" target="_blank">Site Officiel de OpenSTA</a></p><h2>CLIF Load Injection Framework :</h2><p>Clif permet de faire des tests de performances d&#8217;applications web distribuées</p><p>Plusieurs injecteurs réparties (permet de simuler d&#8217;énormes charges) vont simuler des connections simultanées en mesurant les temps de réponse, des erreurs&#8230;</p><p>Des sondes déployées sur les serveurs hébergeant les applications à tester vont mesurer l&#8217;activité RAM, CPU, Disque&#8230;</p><p>Clif gère les scénarios et fonctionne en multi-protocole (TCP, UDP, TCP, DNS, HTTP(S), JDBC, JMS, DHCP, LDAP, SIP)</p><p><a title="CLIF" href="http://http://clif.ow2.org/" target="_blank">Site Officiel de CLIF</a></p><p>Voici un schema expliquant le fonctionnement de CLIF :</p><p><a href="http://localhost/wordpress/wp-content/uploads/2010/02/CLIFframework.png"><img class="aligncenter size-medium wp-image-1799" title="CLIFframework" src="http://blog.admin-linux.org/wp-content/uploads/2010/02/CLIFframework-300x170.png" alt="CLIFframework 300x170 Test de montée en charge (benchmark) avec des logiciels libres" width="300" height="170" /></a></p><h2>Selenium :</h2><p>Selenium est une suite d&#8217;outils pour tester des applications Web.</p><p>Selenium dispose d&#8217;un Add-on pour Firefox qui va vous permettre de créer vos scénarios simplement en navigant sur l&#8217;application à tester, il y a un recorder qui enregistre votre navigation et il vous suffira de la rejouer x fois pour simuler une activité utilisateur réel.</p><p>C&#8217;est assez bluffant, on peut créer ses propres scénarios très facilement sans avoir à apprendre les commandes de l&#8217;application.</p><p>Selenium peut simuler via Selenium Remote Control (RC) différents navigateurs, plateformes et même language.</p><p>Selenium Grid  va permettre de mettre en place une architecture distribuées pour réaliser des tests en parallèle.</p><p>Voici un schéma expliquant son fonctionnement :</p><p><a href="http://localhost/wordpress/wp-content/uploads/2010/02/seleniumhq-how-it-works.png"><img class="aligncenter size-medium wp-image-1801" title="seleniumhq-how-it-works" src="http://blog.admin-linux.org/wp-content/uploads/2010/02/seleniumhq-how-it-works-221x300.png" alt="seleniumhq how it works 221x300 Test de montée en charge (benchmark) avec des logiciels libres" width="221" height="300" /></a></p><p><a title="Site Officiel de SeleniumHQ" href="http://seleniumhq.org/" target="_blank">Site Officiel de Selenium</a></p><h2>Funkload :</h2><p>Funkload permet également des faire des tests de performances</p><p>Il gère également les scénarios grace à <a title="TCPWatch" href="http://freshmeat.net/projects/tcpwatch/">TCPWatch</a></p><p>Funkload génére des rapports HTML/PDF avec graphes.</p><p><a title="Site Officiel de Funkload" href="http://funkload.nuxeo.org/" target="_blank">Site Officiel de Funkload</a></p><h2>TestMaker :</h2><p>TestMaker offrant une version opensource et une version entreprise, il permet également de faire des tests de montée en charge.</p><p>Je le donne pour information, mais je ne détaillerais pas ici ces fonctionnalités.</p><p><a title="Site Officiel de TestMaker" href="http://www.pushtotest.com/" target="_blank">Site Officiel de TestMaker</a></p><h2>Httperf :</h2><p>Httperf est également un outils pour mesurer les performances de vos applications HTTP(S)</p><p>Il peut être utilisé avec <a title="AutoBench" href="http://www.xenoclast.org/autobench/" target="_blank">AutoBench</a> et <a title="Openload" href="http://openwebload.sourceforge.net/" target="_blank">OpenLoad</a></p><p><a title="Site officiel de httperf" href="http://code.google.com/p/httperf/" target="_blank">Site officiel de httperf</a></p><p>Pour trouver une liste des solutions de tests opensource allez voir ce site :</p><p><a title="OpenSource Testing Tools" href="http://opensourcetesting.org/functional.php" target="_blank">OpenSource Testing Tools</a></p><h1><span style="color: #fd8d12;">La supervision de la charge des applications web :</span></h1><p>Il est intéressant également de pouvoir jauger sur le long terme les temps de réponses de ses applications web via l&#8217;utilisation de scénarios également.</p><p>Il existe bien sur des solutions sur les solutions de supervision libres.</p><h2>Cucumber-Nagios :</h2><p>Cucumber-Nagios est un plugin Nagios qui permet de réaliser des scénarios de façon assez surprenant d&#8217;ailleurs.</p><p>Ceux-ci seront ensuite joués comme n&#8217;importe quel check Nagios et permettrons de suivre par exemple le temps de réponse.</p><p>Nagios-FR en parle, je vous laisse découvrir la façon de <a title="générer les scénarios avec Cucumber-Nagios" href="http://www.nagios-fr.org/2009/11/cucumber-nagios/" target="_blank">générer les scénarios avec Cucumber-Nagios</a></p><p><a title="Site Officiel de Cucumber-Nagios" href="http://auxesis.github.com/cucumber-nagios/" target="_blank">Site Officiel de Cucumber-Nagios</a></p><h2>Zabbix :</h2><p>La solution de supervision libre Zabbix comprennant gestion d&#8217;incident et de performance intégre par défaut une application permettant de réaliser des scénarios afin de tester des applications web et ainsi garder un historique des performances</p><p>Cette approche est très intéressante car combiné aux informations provenant de la supervision de base (charge CPU, RAM&#8230;) on pourra facilement identifié les sources de ralentissements.</p><p><a title="Site Officiel de Zabbix" href="http://www.zabbix.com/" target="_blank">Site Officiel de Zabbix</a></p><p>Et vous vous utilisez quoi pour faire vos tests de montée en charge ?</p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/administration/test-de-montee-en-charge-benchmark-avec-des-logiciels-libres/feed</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>Bar à liens libres – 2</title><link>http://blog.admin-linux.org/news/bar-a-liens-libres-2</link> <comments>http://blog.admin-linux.org/news/bar-a-liens-libres-2#comments</comments> <pubDate>Fri, 11 Dec 2009 10:10:27 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[DNS]]></category> <category><![CDATA[green-it]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[php]]></category> <category><![CDATA[Planet-Libre]]></category> <category><![CDATA[shinken]]></category><guid isPermaLink="false">http://blog.admin-linux.org/?p=1612</guid> <description><![CDATA[Comme la semaine dernière, voici ma nouvelle rubrique nommée bar à liens libres, qui me sert à échanger les liens qui m&#8217;ont intéressé cette semaine concernant les logiciels libres, comme...]]></description> <content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1613" title="bar_a_liens-2" src="http://localhost/wordpress/wp-content/uploads/2009/12/bar_a_liens-2.jpg" alt="bar a liens 2 Bar à liens libres – 2" width="480" height="225" /></p><p>Comme la semaine dernière, voici ma nouvelle rubrique nommée bar à liens libres, qui me sert à échanger les liens qui m&#8217;ont intéressé cette semaine concernant les logiciels libres, comme je pourrais en discuter dans un bar.</p><p>Mon premier lien concerne un logiciel en ligne de commande permettant de tester les caractéristiques de débit, délais et gigue entre deux points d’un réseau: <a href="http://www.nicolargo.com/dev/sjitter/">SJitter</a></p><p>Il a été fait par <a title="Nicolargo" href="http://identi.ca/nicolargo" target="_blank">Nicolargo</a> et est désormais <a title="disponible dans les PPA" href="http://blog.nicolargo.com/2009/12/sjitter-disponible-dans-les-ppa.html" target="_blank">disponible dans les PPA</a></p><p><a title="Tux-Planet" href="http://identi.ca/tuxplanet" target="_blank">Tux-Planet</a> nous a fait un article intéressant pour expliquer <a title="comment tester les temps de réponse DNS" href="http://www.tux-planet.fr/tester-le-temps-de-reponse-dun-serveur-dns/" target="_blank">comment tester les temps de réponse d&#8217;un serveur DNS.</a> Il a fait également un article sur le <a title="monitoring d'appliaction Java avec VisualVM" href="http://www.tux-planet.fr/monitoring-dapplications-java-avec-visualvm/" target="_blank">monitoring d&#8217;appliaction Java avec VisualVM</a></p><p>Nagios-FR nous fait découvrir <a title="Shinken un Nagios core killer" href="http://www.nagios-fr.org/2009/12/shinken-nagios-core-killler/" target="_blank">Shinken un Nagios core killer</a> écrit en python qui aurait des performances bien plus accrues, affaire que je vais suivre de très prêt&#8230; Pour plus d&#8217;informations sur Shinken, je vous invite à aller consulter le site du créateur de <a title="Shinken" href="http://www.gabes.fr/jean/" target="_blank">Shinken</a> qui est Français pour votre information&#8230; Un autre article m&#8217;a interpellé, mais celui-ci est un peu plus &laquo;&nbsp;vieux&nbsp;&raquo;, mais tout aussi intéressant, il s&#8217;agit de <a title="Cucumber-Nagios qui permet de superviser des applications web" href="http://www.nagios-fr.org/2009/11/cucumber-nagios/" target="_blank">Cucumber-Nagios qui permet de superviser des applications web</a> comme si vous leur parliez. Ça fait nu peu science-fiction, je vous l&#8217;accorde, mais c&#8217;est réel&#8230;</p><p>Une initiative intéressante concernant le <a title="Green-IT qui est de recycler la chaleur des datacenters" href="http://www.lemagit.fr/article/datacenters-green-it/5021/1/des-datacenters-pour-chauffer-les-villes/" target="_blank">Green-IT qui est de recycler la chaleur des datacenters</a></p><p>Sur l&#8217;industrialiastion-php (mes collègues d&#8217;<a title="Alterway" href="http://www.alterway.fr/" target="_blank">Alterway</a>) vous verrez que <a title="PHP devient le troisième langage le plus utilisé selon TIOBE" href="http://www.industrialisation-php.com/php-devient-le-troisieme-langage-le-plus-utilise-selon-tiobe/" target="_blank">PHP devient le troisième langage le plus utilisé selon TIOBE</a></p><p>J&#8217;en profite pour vous informer ou vous rappeller que j&#8217;ai créé un <a title="reddit sur les logiciels libres" href="http://www.reddit.com/r/logiciels_libres/" target="_blank">reddit sur les logiciels libres</a> pour l&#8217;instant on est 24, et 2 à 3 personnes à y déposer des liens, principalement moi d&#8217;ailleurs&#8230;</p><p>Voici une petite interface web qui vous permettra de tester vos expressions régulières faite en Ruby, il s&#8217;agit de <a title="Rubular" href="http://www.rubular.com/" target="_blank">Rubular</a></p><p>Voilà pour cette édition hebdomadaire, en espérant que vous trouverez ces articles aussi intéressants que moi.</p><p>Bonne lecture et bon week-end.</p><p>Note : L’image illustrant cet article a été réalisée par <a title="User:Klafubra" href="http://commons.wikimedia.org/wiki/User:Klafubra">Klafubra</a> et est sous licence <a title="GFDL" onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');" href="http://en.wikipedia.org/wiki/GNU_Free_Documentation_License" target="_blank">GFDL</a> et provient de <a title="Wikimedia" onclick="javascript:pageTracker._trackPageview('/outbound/article/blog.nicolargo.com');" href="http://commons.wikimedia.org/wiki/File:Bar_in_Bristol.jpg" target="_blank">Wikimedia</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/news/bar-a-liens-libres-2/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Centreon &#8211; Nouvelle version 2.1 RC²</title><link>http://blog.admin-linux.org/administration/centreon-nouvelle-version-2-1-rc%c2%b2</link> <comments>http://blog.admin-linux.org/administration/centreon-nouvelle-version-2-1-rc%c2%b2#comments</comments> <pubDate>Tue, 02 Jun 2009 21:33:00 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Administration]]></category> <category><![CDATA[Supervision]]></category> <category><![CDATA[centreon]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/non-classe/centreon-nouvelle-version-2-1-rc%c2%b2</guid> <description><![CDATA[Centreon, solution de supervision basée autour du produit Nagios, a sortie hier leur nouvelle version, qui est la 2.1 RC². La sortie finale ne devrait à mon avis pas tarder...]]></description> <content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://blog.admin-linux.org/wp-content/uploads/HLIC/4.bp.blogspot.com/_XySgBVSDH1I/SiWnCb13YdI/AAAAAAAAAQ8/oPQU-pJlyD8/s200/centreon.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5342860193220223442" class="alignright" style="border: 0pt none; margin: 0pt 0pt 10px 10px; cursor: pointer; width: 200px; height: 45px;" src="http://blog.admin-linux.org/wp-content/uploads/HLIC/4.bp.blogspot.com/_XySgBVSDH1I/SiWnCb13YdI/AAAAAAAAAQ8/oPQU-pJlyD8/s200/centreon.png" border="0" alt="centreon Centreon   Nouvelle version 2.1 RC²" width="200" height="45" title="Centreon   Nouvelle version 2.1 RC²" /></a>Centreon, solution de supervision basée autour du produit Nagios, a sortie hier leur nouvelle version, qui est la 2.1 RC². La sortie finale ne devrait à mon avis pas tarder <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /><br /> Environ 6 mois après la sortie de la version 2.0 qui était majeure, car compatible avec la version 3.0 de Nagios, et offrant beaucoup de nouvelles fonctionnalitées.<br /> Il y avait d&#8217;ailleurs eu 2 mises à jour durant le mois de Mars et Mai, et voici donc ce que apporte cette nouvelle version :<br /> - Nouvelle vue &laquo;&nbsp;Problèmes non-traités&nbsp;&raquo; : dans la section supervision, vous trouverez des vues dans laquelle vous pouvez voir des problèmes qui n&#8217;ont pas été reconnu, ni planifié dans le temps.<br /> - Nouveau journaux de configuration : dans la section administration, vous trouverez une nouvelle page qui montre les changements de la configuration des objets tels que des hôtes, les services, les utilisateurs&#8230;<br /> - Les fuseaux horaires sont maintenant traités dans la configuration des utilisateurs : Il est désormais possible d&#8217;attribuer un fuseau horaire dans la configuration de l&#8217;utilisateur<br /> - Les fuseaux horaires sont maintenant traitées dans la configuration des hôtes : Il est désormais possible d&#8217;attribuer un fuseau horaire dans la configuration de l&#8217;hôtes. Chaque hôte sera supervisé en prenant en compte son fuseau horaire, pour ceux qui ont déjà vécu les astreintes, c&#8217;est très intéressant <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /> Cette fonctionnalité est bien sur prévue pour les sociétés présentant des réseaux WAN internationnaux.<br /> - Une amélioration majeure se trouve également dans la vue par arbre (Vues et supervision &gt; Sections de journaux d&#8217;événements)<br /> - De nouveaux champs de recherche ont été ajoutés sur de nombreuses pages<br /> - De nouveaux menus système : La navigation est maintenant sur un tout autre niveau, de nombreux clics et temps de chargement seront épargnés<br /> - Le système d&#8217;ACL a été amélioré pour de meilleures performances<br /> - Le tableau de supervision a été amélioré pour le rendre le plus réactif que possible.<br /> - Le moteur de génération de fichier de configuration de Nagios à été amélioré. Les fichiers de configuration sont générés plus rapidement qu&#8217;avant : Cela prendrait 10 fois moins de temps que précédemment sur une base de 3000 hôtes et 50000 services, rien que ça <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /><br /> - Censtorage a été amélioré également, les requêtes accédant à la base de données ont été optimisées.<br /> - Centreon-core a été amélioré également, nottamment concernant l&#8217;échange de fichiers de données<br /> - Installation automatique de la base de données NDO<br /> - Possibilité de mise à jour de la base de données NDO<br /> - Ajout d&#8217;information sur les performances et les processus de Nagios<br /> - Ajout de journaux de connection et de journaux pour LDAP<br /> - &#8230;</p><p style="text-align: justify;">Enfin bref, quelques fonctionnalités banales sans réel intérêt <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /><br /> Bien sur, je rigole, j&#8217;ai été surpris en rédigeant ces fonctionnalités, qui n&#8217;est qu&#8217;une traduction (excusez mon anglais) de la liste des nouvelles fonctionnalités présentées pour cette nouvelle version à <a href="http://www.centreon.com/News/centreon-21-rc2-available.html" target="_blank">cette adresse</a>&#8230;<br /> On voit d&#8217;ailleurs bien le tournant qu&#8217;est en train de prendre la communauté Centreon avec une des mises à jours majeures, qui est la gestion des fuseaux horaires, qui est l&#8217;utilisation de Centreon / Nagios dans des réseaux d&#8217;ampleur internationale.<br /> Et bien, je suis vraiment impatient de pouvoir tester cette nouvelle version, même si je n&#8217;aurais pas vraiment d&#8217;occasion, ça me donne envie de monter un petit réseau perso pour test.<br /> Je suis d&#8217;ailleurs curieux d&#8217;avoir un retour d&#8217;expérience sur cette nouvelle version <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /> Avis aux commentaires <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /><br /> Centreon dispose également depuis peu d&#8217;une nouvelle forge qui est une migration d&#8217;un système trac vers Redmine, qui à mon goût est plus user-friendly. Voir la news sur le <a href="http://blog.centreon.com/index.php?post/2009/05/27/Migration-de-Trac-vers-Redmine" target="_blank">blog de Centreon</a></p><p style="text-align: justify;"><span style="font-style:italic;">Note : La numérotation de version sur le logo de Centreon n&#8217;est pas officielle, c&#8217;est juste moi qui ai rajouté le numéro de version sur le logo <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon   Nouvelle version 2.1 RC²" class='wp-smiley' title="Centreon   Nouvelle version 2.1 RC²" /> </span></p><p style="text-align: justify;">Liens utiles :<br /> <a href="http://www.centreon.com/" target="_blank">Site Officiel</a><br /> <a href="http://www.centreon.com/Centreon/download.html" target="_blank">Téléchargement de Centreon 2.1RC²</a><br /> <a href="http://forge.centreon.com/" target="_blank">Nouvelle forge de Centreon</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/administration/centreon-nouvelle-version-2-1-rc%c2%b2/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>FAN, Fully Automated Nagios disponible en version 2.0b1</title><link>http://blog.admin-linux.org/supervision/fan-fully-automated-nagios-disponible-en-version-20b1</link> <comments>http://blog.admin-linux.org/supervision/fan-fully-automated-nagios-disponible-en-version-20b1#comments</comments> <pubDate>Wed, 08 Apr 2009 11:13:00 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Supervision]]></category> <category><![CDATA[centreon]]></category> <category><![CDATA[fan]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[nareto]]></category> <category><![CDATA[navgis]]></category> <category><![CDATA[ndoutils]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/non-classe/fan-fully-automated-nagios-disponible-en-version-20b1/</guid> <description><![CDATA[FAN, la distribution Linux basée sur CentOS, spécialisée dans la supervision, et basée sur Nagios, Centreon, NagVis&#8230; La grande nouveauté de cette version est l&#8217;utilisation de nagios 3, et également...]]></description> <content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://localhost/wordpress/wp-content/uploads/2009/05/fan_0.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5322283753141956434" class="alignright" style="border: 0pt none; margin: 0pt 0pt 10px 10px; cursor: pointer; width: 99px; height: 70px;" src="http://localhost/wordpress/wp-content/uploads/2009/05/fan_0.png" border="0" alt="fan 0 FAN, Fully Automated Nagios disponible en version 2.0b1" width="99" height="70" title="FAN, Fully Automated Nagios disponible en version 2.0b1" /></a>FAN, la distribution Linux basée sur CentOS, spécialisée dans la supervision, et basée sur <a href="http://www.nagios.org/" target="_blank">Nagios</a>, <a href="http://www.centreon.com/" target="_blank">Centreon</a>, <a href="http://www.nagvis.org/" target="_blank">NagVis</a>&#8230;<br /> La grande nouveauté de cette version est l&#8217;utilisation de nagios 3, et également de Centreon 2.0.<br /> Les écrans ne sont plus ceux de CentOs mais ceux de <a href="http://fannagioscd.sourceforge.net/drupal/" target="_blank">Fully Automated Nagios</a>, permettant d&#8217;identifier rapidement la distribution.<br /> D&#8217;autres éléments sont disponibles comme:</p><p style="text-align: justify;">* un plugin pour la supervision des performances de MySQL,<br /> * un plugin pour la supervision de Postgres,<br /> * la documentation des plugins de supervision disponible sur le wiki<br /> * des corrections,<br /> * &#8230;</p><p style="text-align: justify;">Pour ceux qui ont pu aller au salon Solution Linux 2009, une présentation a été effectuée.<br /> Plus d&#8217;informations sur la présentation, ainsi que les slides de celle-ci à cette adresse :<br /> <a href="http://cedrictemple.net/dotclear/index.php?post/2009/04/05/Pr%C3%A9sentation-de-FAN%2C-Fully-Automated-Nagios-lors-de-Solution-Linux-2009" target="_blank">Webblog de Cedric Temple</a></p><p style="text-align: justify;">Liens utiles :<br /> <a href="http://cedrictemple.net/dotclear/index.php?post/2009/04/07/FAN%2C-Fully-Automated-Nagios-disponible-en-version-2.0b1&amp;pub=1#pr" target="_blank">La News sur le Webblog de Cedric Temple</a><br /> <a href="http://fannagioscd.sourceforge.net/drupal/">Site Officiel de FAN : Fully Automated Nagios</a></p><p style="text-align: justify;">A noter, qu&#8217;initialement, FAN contenait Nareto, mais je ne pense pas que cette nouvelle version l&#8217;utilise étant donné que Nareto n&#8217;est toujours pas compatible avec la version 3 de Nagios</p><p style="text-align: justify;">NB : Cédric Temple vient de m&#8217;informer d&#8217;une mise à jour permettant de faire fonctionner Nareto avec Nagios 3, méa-culpa&#8230;</p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/supervision/fan-fully-automated-nagios-disponible-en-version-20b1/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Centreon 2.0.1 &#8211; Interface Nagios</title><link>http://blog.admin-linux.org/administration/centreon-201-interface-nagios</link> <comments>http://blog.admin-linux.org/administration/centreon-201-interface-nagios#comments</comments> <pubDate>Sun, 01 Mar 2009 20:36:00 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Administration]]></category> <category><![CDATA[Supervision]]></category> <category><![CDATA[centreon]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/non-classe/centreon-201-interface-nagios/</guid> <description><![CDATA[Bien le bonjour, Nous vous annoncions la sortie de la version 2.0 de Centreon le 16 décembre dernier. Un peu plus de 2 mois après cette sortie, l&#8217;équipe de développement...]]></description> <content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignright size-full wp-image-263" title="logo_centreon1" src="http://localhost/wordpress/wp-content/uploads/2009/03/logo_centreon1.gif" alt="logo centreon1 Centreon 2.0.1   Interface Nagios" width="168" height="33" />Bien le bonjour,<br /> Nous vous annoncions la sortie de la version 2.0 de Centreon le 16 décembre dernier.<br /> Un peu plus de 2 mois après cette sortie, l&#8217;équipe de développement annonce la sortie d&#8217;une version mineure, la 2.0.1, corrigeant un certain nombre de bug que vous pouvez d&#8217;ailleurs aller consulter à cette adresse :<br /> <a href="http://www.centreon.com/Development/changelog-2x.html" target="_blank">Chancelog</a><br /> Si vous migrez votre Centreon de la version 2.0 vers 2.0.1 et que vous avez des Meta services sur votre plateforme, lisez le fichier README car il y aura des procédures supplémentaires à suivre.<br /> <a href="http://www.centreon.com/Centreon/download.html" target="_blank">Téléchargement</a><br /> <span style="font-style:italic;">Note : Attention, si vous allez sur la page de téléchargement en Français, la dernière version n&#8217;est pas disponible, je les aie contacté pour les en informer, mais bon c&#8217;est dimanche, je pense qu&#8217;ils régleront rapidement cet oublie <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Centreon 2.0.1   Interface Nagios" class='wp-smiley' title="Centreon 2.0.1   Interface Nagios" /> </span></p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/administration/centreon-201-interface-nagios/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Nagios 3.1.0 vient de sortir</title><link>http://blog.admin-linux.org/supervision/nagios-310-vient-de-sortir</link> <comments>http://blog.admin-linux.org/supervision/nagios-310-vient-de-sortir#comments</comments> <pubDate>Mon, 26 Jan 2009 13:34:00 +0000</pubDate> <dc:creator>Pierre-Yves Dubreucq</dc:creator> <category><![CDATA[Supervision]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[Planet-Libre]]></category><guid isPermaLink="false">http://blog.admin-linux.org/non-classe/nagios-310-vient-de-sortir/</guid> <description><![CDATA[La nouvelle version de Nagios qui est le 3.1.0 vient de sortir Cette version corrige principalement des bugs présents dans la version 3.0.6, mais prépare le terrain pour la prochaine...]]></description> <content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://localhost/wordpress/wp-content/uploads/2009/03/nagios1.jpg"><img class="alignright size-full wp-image-300" title="nagios1" src="http://localhost/wordpress/wp-content/uploads/2009/03/nagios1.jpg" alt="nagios1 Nagios 3.1.0 vient de sortir" width="150" height="35" /></a>La nouvelle version de Nagios qui est le 3.1.0 vient de sortir <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Nagios 3.1.0 vient de sortir" class='wp-smiley' title="Nagios 3.1.0 vient de sortir" /><br /> Cette version corrige principalement des bugs présents dans la version 3.0.6, mais prépare le terrain pour la prochaine version qui sera la 3.2.0 <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Nagios 3.1.0 vient de sortir" class='wp-smiley' title="Nagios 3.1.0 vient de sortir" /><br /> A noter que désormais il y a un check des mises à jour pour Nagios <img src='http://blog.admin-linux.org/wp-includes/images/smilies/icon_biggrin.gif' alt="icon biggrin Nagios 3.1.0 vient de sortir" class='wp-smiley' title="Nagios 3.1.0 vient de sortir" /><br /> Pour plus d&#8217;informations, vous pouvez aller voir la traduction du Chancelog sur le très bon site :<br /> <a href="http://www.nagios-fr.org/2009/01/nagios31/" target="_blank">http://nagios-fr.org/</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.admin-linux.org/supervision/nagios-310-vient-de-sortir/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 1/44 queries in 0.020 seconds using apc
Object Caching 3074/3168 objects using apc

Served from: blog.admin-linux.org @ 2012-02-07 15:39:30 -->
