INSTALLATION

git clone

git clone -b default-queue https://github.com/dotkernel/queue.git

Prepare config/autoload files

  • duplicate local.php.dist as local.php, then fill in the database credentials and set the $baseUrl
  • duplicate log.local.dist as log.local
  • duplicate messenger.local.php.dist as messenger.local.php
  • duplicate swoole.local.php.dist as swoole.local.php

Run Composer

composer install --no-dev

Create services (daemon)

  • Edit the files from /daemon folder and set proper paths
  • copy them in /etc/systemd/system/
sudo cp /home/dotkernel/queue/daemon\swoole.service
sudo cp /home/dotkernel/queue/daemon\messenger.service

Start the daemon

sudo systemctl daemon-reload
sudo systemctl enable swoole.service
sudo systemctl start swoole.service
sudo systemctl status  swoole.service

Testing the installation

Send a request from your local machine

echo "Hello" | socat -T1 - TCP:SERVER-IP:8556`