sipp11
10 years ago
2 changed files with 37 additions and 1 deletions
@ -0,0 +1,36 @@
|
||||
--- |
||||
layout: post |
||||
title: "rabbitmq unable to start" |
||||
author: |
||||
display_name: sipp11 |
||||
login: sipp11 |
||||
email: sipp11@gmail.com |
||||
url: '' |
||||
author_login: sipp11 |
||||
author_email: sipp11@gmail.com |
||||
date: Aug 15, 2015 |
||||
tags: |
||||
- rabbitmq |
||||
- error |
||||
--- |
||||
|
||||
If `rabbitmq` cannot start and give you this following error. |
||||
|
||||
|
||||
BOOT FAILED |
||||
=========== |
||||
|
||||
Error description: |
||||
{could_not_start,rabbit, |
||||
{previous_upgrade_failed,{rabbit,start,[normal,[]]}}} |
||||
|
||||
|
||||
Then, there is something wrong in your queue messages. The easiest fix would be deleting all the existing queues. |
||||
|
||||
$ sudo rm -rvf /var/lib/rabbitmq/mnesia/* |
||||
|
||||
or on OSX (via brew) |
||||
|
||||
$ rm -rvf /usr/local/var/lib/rabbitmq/mnesia/* |
||||
|
||||
Start rabbitmq again :) it should run fine. |
Loading…
Reference in new issue