From 18546b4f43b9c927c4c91529dd912c7368b941bf Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Wed, 28 Mar 2018 12:13:35 +0100 Subject: Fix RabbitMQ service installation and initialization RabbitMQ service added in [1] is not correctly installed and initialized: - There is an error during the installation process ("\" character missing). - In the installation script, the service needs to be started first. - In the container installation, the service needs to be started via supervisor. [1]https://gerrit.opnfv.org/gerrit/#/c/53597/ JIRA: YARDSTICK-1103 Change-Id: Iade3d6ce4b522e6f576af71b7afe5559081f7929 Signed-off-by: Rodolfo Alonso Hernandez --- docker/supervisor.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docker') diff --git a/docker/supervisor.sh b/docker/supervisor.sh index b67de2212..1e54b4164 100755 --- a/docker/supervisor.sh +++ b/docker/supervisor.sh @@ -24,3 +24,6 @@ directory = /etc/yardstick command = uwsgi -i yardstick.ini EOF fi + +[program:rabbitmq] +command = service rabbitmq-server restart -- cgit 1.2.3-korg