Installation de Shinken sur une Debian : Différence entre versions
De wikiGite
Ligne 29 : | Ligne 29 : | ||
cd ~/downloads | cd ~/downloads | ||
− | git clone git://shinken.git.sourceforge.net/gitroot/shinken/shinken | + | /*git clone git://shinken.git.sourceforge.net/gitroot/shinken/shinken*/ |
git clone https://github.com/naparuba/shinken | git clone https://github.com/naparuba/shinken | ||
Version du 14 mars 2012 à 15:21
Installation simplifiée
You can use the very good installation script from Nicolargo! Thanks a lot to him :)
wget https://raw.github.com/nicolargo/shinkenautoinstall/master/shinkenautoinstall-debian.sh chmod a+x shinkenautoinstall-debian.sh sudo ./shinkenautoinstall-debian.sh
A VOIR : LES PLUGINS NAGIOS SONT DANS /usr/lib/nagios/plugins/, et la config cherche dans /usr/local/shinken/libexec (PLUGINS dans resources.cfg)
Pour archive : procédure manuelle
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) : Pas nécessaire. /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*/ git clone https://github.com/naparuba/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 :
ln -s /etc/init.d/shinken-scheduler /etc/rcS.d/S98shinken-scheduler ln -s /etc/init.d/shinken-poller /etc/rcS.d/S98shinken-poller ln -s /etc/init.d/shinken-reactionner /etc/rcS.d/S98shinken-reactionner ln -s /etc/init.d/shinken-broker /etc/rcS.d/S98shinken-broker ln -s /etc/init.d/shinken-arbiter /etc/rcS.d/S98shinken-arbiter ln -s /etc/init.d/shinken-receiver /etc/rcS.d/S98shinken-receiver
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 /etc/init.d/shinken-receiver 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/