Add CentOS rabbitmq instructions.

This commit is contained in:
Ben Sturmfels 2020-04-29 09:07:01 +10:00
parent 62a565e13b
commit 35494ed66c
No known key found for this signature in database
GPG Key ID: 023C05E2C9C068F0
2 changed files with 7 additions and 6 deletions

View File

@ -36,16 +36,13 @@ python3-webtest \
# Fedora only
which
# RUN apt-get install -y \
# RUN dnf -y install \
# gstreamer1.0-libav \
# gstreamer1.0-plugins-bad \
# gstreamer1.0-plugins-base \
# gstreamer1.0-plugins-good \
# gstreamer1.0-plugins-ugly \
# libsndfile1-dev \
# python3-gst-1.0 \
# python3-numpy \
# python3-scipy
# RUN apt-get install -y \
# gir1.2-gst-plugins-base-1.0 \

View File

@ -92,7 +92,7 @@ server and RabbitMQ to store the media processing queue::
sudo apt install nginx-light rabbitmq-server
# Fedora and co.
dnf install nginx rabbitmq
sudo dnf install nginx rabbitmq-server
.. note::
@ -100,7 +100,11 @@ server and RabbitMQ to store the media processing queue::
co. because rabbitmq-server might be not included in official
repositories. That looks like this for CentOS::
dnf install centos-release-rabbitmq-38.noarc
sudo dnf config-manager --set-enabled centos-rabbitmq-38
sudo dnf config-manager --set-enabled PowerTools
sudo dnf install rabbitmq-server
sudo systemctl enable rabbitmq-server.service
# TODO: Celery repeatedly disconnects from RabbitMQ.
As an alternative, you can try installing redis-server and
configure it as celery broker.