Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
centreon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
centreon
Commits
c320ed9e
Commit
c320ed9e
authored
11 years ago
by
Sylvestre Ho
Browse files
Options
Downloads
Patches
Plain Diff
fixes #5080; update README file
parent
e2a25a5d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+18
-0
18 additions, 0 deletions
CHANGELOG
INSTALL
+0
-98
0 additions, 98 deletions
INSTALL
README
+36
-31
36 additions, 31 deletions
README
with
54 additions
and
129 deletions
CHANGELOG
+
18
−
0
View file @
c320ed9e
## Centreon 2.5.0
Features
========
#4176: ACL on configuration objects
#4678: UI notification and sound alerts
#3768: Advanced features on SNMP traps handling
#4666: Possibility to execute a command upon restart of monitoring engine
#1728: SSO authentication
#1845: Additive inheritance is handled on host and service templates
#4997: Service groups can be linked to service templates
Enhancements
============
#4507: Code refactoring
#4662: Downtime duration can now be expressed in minutes
#3768: UI - new draggable dynamic input fields
## Centreon 2.4.5
Enhancements
...
...
This diff is collapsed.
Click to expand it.
INSTALL
deleted
100644 → 0
+
0
−
98
View file @
e2a25a5d
To use graphical plugins, you need to have on your server :
- RRDTOOL
- perl/RRDTOOL (RRDs.pm)
- Net::SNMP
To use Centreon, you need to have on your server :
- php5
- php-mysql
- php-pear
- php-snmp
- php-posix
- php-ldap (if you would like to use LDAP authentification)
- gd-devel
- libpng
- perl-config-IniFiles
- perl-Crypt-DES
- perl-Digest-HMAC
- perl-Digest-SHA1
- perl-GD
- perl-IO-Socket-INET6
- perl-Net-SNMP
- perl-rrdtool
- perl-Socket6
---------------------------------------------------------------------------------------------------
FRANCAIS :
----------
Pour installer Centreon sans mise à jour :
Lancer la commande "bash install.sh -i "
Pour mettre à jour Centreon ( > 2.0) :
Lancer "bash install.sh -u /repertoire/etc/centreon"
Avec en argument le répertoire où se trouve
vos fichiers "instCent*.conf"
Pour la mise à jour de la version 2.0.X vers 2.1.X, il faut donner les droits
à l'utilisateur centreon au niveau de MySQL pour qu'il puisse effectuer des
changements de schemas. Pour cela, lancer la commande suivante :
prenons "nagios" comme nom de la base NDO.
mysql> GRANT ALTER ON nagios.* to 'centreon'@'localhost'; FLUSH PRIVILEGES;
Pour installer en utilisant un template pré-defini :
Lancer "bash install.sh -f tmpl/vardistrib/mon_template"
Par défaut, il existe des templates déjà configuré dans
tmpl/vardistrib. Ces fichiers vous permettrons de lancer
l'installation avec une majorité de variables pré-définis.
Le fichier tmpl/vardistrib/sample.tmpl pourra être utilisé
pour votre configuration.
L'installeur accepte aussi l'option "-v" qui permet d'activer certains
messages supplémentaires à destination du fichier de log.
Par défaut, le fichier de log se trouve dans le répetoire du même nom
à la base des sources.
---------------------------------------------------------------------------------------------------
ENGLISH :
---------
For install only :
Launch "./install.sh"
For update Centreon ( > 2.0) :
Launch "bash install.sh -u /directory/etc/centreon"
-u argument is the directy where you can find configuration
files "instCent*.conf".
For updating centreon 2.0.X to 2.1.X, please give Centreon MySQL user right for
modifying database schema. In order give access, launch the following commande line :
Here "nagios" is the name of NDO Database.
mysql> GRANT ALTER ON nagios.* to 'centreon'@'localhost'; FLUSH PRIVILEGES;
---------------------------------------------------------------------------------------------------
For more information :
- mail infos@centreon.com
- visit Centreon Website http://www.centreon.com
- visit Centreon forge http://forge.centreon.com
- visit Centreon forum http://forum.centreon.com
- visit Centreon Wiki http://doc.centreon.com
Thanks for using Centreon.
This diff is collapsed.
Click to expand it.
README
+
36
−
31
View file @
c320ed9e
Upgrade from 2.1.x
=====================
After Web upgrade
---------------------
Make sure to restart centstorage, hosts and/or services which contain unicode characters were renamed
# /etc/init.d/centstorage restart
Upgrade from 2.0.x
=====================
Before Web upgrade
---------------------
As MySQL root user, grant some additional privileges to user Centreon user
#~> mysql -u root [-p]
#mysql~> GRANT ALTER ON ndo.* TO 'centreon'@'localhost';
(ndo database, centreon user and host names could differ depending on your settings)
After Web upgrade
---------------------
1) Modify the logs retention period in Centreon interface : Administration > Options > Centstorage > Options > Logs retention duration
The retention duration must cover the oldest nagios log archive file in the folder nagios/var/archives/
2) then execute the following command lines in Centreon directory :
# ./bin/logAnalyser -a
# ./cron/archiveDayLog -r
3) reset the logs retention period to the previous value
More
=====================
Read "INSTALL" for more information.
\ No newline at end of file
===============================================================================
License
===============================================================================
Centreon is brought to you under GPLv2. For more infomation regarding this
license, read the LICENSE file or visit the following URL:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
===============================================================================
Installation
===============================================================================
Please note that Centreon can be installed from the sources or from our RPM
packages. Either way, make sure to read our installation documentation:
* http://documentation.centreon.com/docs/centreon/en/latest/
===============================================================================
Official links
===============================================================================
Below is a list of official links that may be useful to you:
* Official website: http://www.centreon.com
* Bug tracker: http://forge.centreon.com/projects/centreon
* Forum: http://forum.centreon.com
* Documentation: http://documentation.centreon.com
===============================================================================
Contact
===============================================================================
You can contact us at the following e-mail address:
* contact@centreon.com
You can also follow us on Twitter:
* https://twitter.com/Centreon
Thank you for choosing Centreon.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment