Installation de Shinken sur une Debian : Différence entre versions
De wikiGite
Ligne 4 : | Ligne 4 : | ||
Installation des pré-requis : | Installation des pré-requis : | ||
− | apt-get install python python-dev python-setuptools pyro libgd2-xpm-dev git-core | + | apt-get install build-essential python python-dev python-setuptools pyro libgd2-xpm-dev git-core |
Se logguer en tant que root : | Se logguer en tant que root : | ||
Ligne 38 : | Ligne 38 : | ||
update-rc.d shinken defaults | update-rc.d shinken defaults | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Vérification des fichiers de configuration de Shinken : | Vérification des fichiers de configuration de Shinken : | ||
Ligne 58 : | Ligne 52 : | ||
/etc/init.d/shinken restart | /etc/init.d/shinken restart | ||
− | Fichiers de Configuration : | + | *Fichiers de Configuration : /etc/shinken |
− | /etc/shinken | + | *Fichier log : /var/lib/shinken/nagios.log |
− | Fichier log : | + | *Plugins Nagios : /usr/lib/nagios/plugins/ |
− | |||
− | Plugins Nagios : | ||
− |
Version du 3 juin 2011 à 13:04
Si besoin,versions Arch & Perl :
perl -e 'use Config; print "$Config{archname} \n"' perl -e 'use Config; print "$Config{version} \n"'
Installation des pré-requis :
apt-get install build-essential python python-dev python-setuptools pyro libgd2-xpm-dev git-core
Se logguer en tant que root :
su -
Création de l'utilisateur shinken (avec le mot de passe) :
/usr/sbin/useradd -m shinken passwd shinken
/usr/sbin/groupadd shinken /usr/sbin/usermod -G shinken shinken
/usr/sbin/usermod -G shinken www-data
Téléchargement de Shinken et des plugins :
mkdir ~/downloads cd ~/downloads
git clone git://shinken.git.sourceforge.net/gitroot/shinken/shinken
Installation de Shinken :
cd shinken python setup.py install --install-scripts=/usr/bin
Installation des plugins Nagios :
apt-get install nagios-plugins cp libexec/* /usr/lib/nagios/plugins/
Configuration du lancement automatique de Shinken au démarrage du système :
sed -i 's/BIN="\/usr\/local\/shinken\/bin"/BIN="\/usr\/bin"/g' /etc/init.d/shinken sed -i 's/VAR="\/usr\/local\/shinken\/var"/VAR="\/var\/lib\/shinken"/g' /etc/init.d/shinken sed -i 's/ETC="\/usr\/local\/shinken\/etc"/ETC="\/etc\/shinken"/g' /etc/init.d/shinken
update-rc.d shinken defaults
Vérification des fichiers de configuration de Shinken :
/usr/bin/shinken-arbiter -v -c /etc/shinken/nagios.cfg -c /etc/shinken/shinken-specific.cfg
Démarrage de Shinken :
/etc/init.d/shinken-scheduler start /etc/init.d/shinken-poller start /etc/init.d/shinken-broker start /etc/init.d/shinken-reactionner start /etc/init.d/shinken-arbiter start
Si nécessaire, pour relancer Shinken :
/etc/init.d/shinken restart
- Fichiers de Configuration : /etc/shinken
- Fichier log : /var/lib/shinken/nagios.log
- Plugins Nagios : /usr/lib/nagios/plugins/