Skip to content
This repository has been archived by the owner on Feb 3, 2019. It is now read-only.

kanboard/plugin-rabbitmq

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

RabbitMQ Queue Driver

This plugin uses RabbitMQ to process background jobs for Kanboard.

Author

  • Frederic Guillot
  • License MIT

Requirements

  • Kanboard >= 1.0.29
  • PHP >= 5.3.3
  • RabbitMQ

Installation

You have the choice between 3 methods:

  1. Install the plugin from the Kanboard plugin manager in one click
  2. Download the zip file and decompress everything under the directory plugins/RabbitMQ
  3. Clone this repository into the folder plugins/RabbitMQ

Note: Plugin folder is case-sensitive.

Configuration

By default this plugin assume that RabbitMQ is running on localhost. To change the default values, define those parameters in your config file:

define('RABBITMQ_QUEUE', 'kanboard_queue');
define('RABBITMQ_EXCHANGE', 'kanboard_exchange');
define('RABBITMQ_HOSTNAME', '127.0.0.1');
define('RABBITMQ_PORT', 5672);
define('RABBITMQ_USERNAME', 'guest');
define('RABBITMQ_PASSWORD', 'guest');

You also need to run the Kanboard's worker:

/path/to/kanboard/cli worker

The worker must have the same permissions as the web application (same user). You should run the worker with a process manager like supervisord or similar.

About

[NOT MAINTAINED] Use RabbitMQ for background workers

Resources

License

Stars

Watchers

Forks

Packages

No packages published