https://github.com/linkdd/glpi2amqp
Connector between GLPI and AMQP
https://github.com/linkdd/glpi2amqp
Last synced: 9 months ago
JSON representation
Connector between GLPI and AMQP
- Host: GitHub
- URL: https://github.com/linkdd/glpi2amqp
- Owner: linkdd
- Created: 2013-07-11T12:13:08.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-08T09:55:30.000Z (almost 13 years ago)
- Last Synced: 2025-02-14T17:57:49.578Z (about 1 year ago)
- Language: PHP
- Size: 5.29 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# glpi2amqp
Connector between GLPI ( http://www.glpi-project.org ) and AMQP.
Send events on AMQP sockets when tickets are added, updated, deleted, ...
Some data are sent regularly on the AMQP socket (via the internal Cron of GLPI).
# Requirements
Follow the instruction on [this page](http://www.php.net/manual/en/amqp.setup.php)
to install the PECL AMQP extension.
Do not forget to add ``extension=amqp.so`` in your ``php.ini``.
# Installation
In the GLPI root directory :
# cd plugins
# git clone https://github.com/linkdd/glpi2amqp.git amqp
# cd amqp
# php5 front/install.php
Then, in the plugins configuration of GLPI, install and activate the plugin.
Now, you have to edit the crontab of your apache user (on Debian : ``www-data``) :
# crontab -u www-data -e
*/1 * * * * /usr/bin/php5 /var/www/glpi/plugins/amqp/front/cron.php &>/dev/null
Do not forget to replace ``/var/www/glpi`` by the path to your GLPI root directory.