| Author |
Message |
< RabbitMQ mailing list ~ Can't run rabbitmq-server... Install issue? |
| Guest |
Posted: Tue Oct 20, 2009 1:25 am |
|
|
|
Guest
|
I seem to have quite an adventure getting rabbitmq-server running on my snow
leopard machine.
Macports failed to install erlang, due to some bizarre compilation errors,
so I installed it from source. It also failed to install rabbitmq-server,
so I tried to install it manually. I it appears to have install erlangs
libs to /usr/local/lib/erlang/lib/, so that it where I put the
rabbitmq-server-1.7.0 directory. But when I run the server, it's not happy:
---
$ /usr/local/lib/erlang/lib/rabbitmq-server-1.7.0/scripts/rabbitmq-server
{"init terminating in
do_boot",{undef,[{rabbit,start,[]},{init,start_it,1},{init,start_em,1}]}}
Crash dump was written to: erl_crash.dump
init terminating in do_boot ()
---
The crash log is no less than 12,000 lines and I have no idea what to make
of it. I can run "erl" just fine, and I get the erlang prompt (I think):
---
$ erl
Erlang R13B02 (erts-5.7.3) [source] [smp:2:2] [rq:2] [async-threads:0]
[kernel-poll:false]
Eshell V5.7.3 (abort with ^G)
1>
---
So I have no idea what is going on here. I have put the crashdump up here:
http://gist.github.com/213893
In case someone smarter than I can make heads or tails of it. I would
really appreciate any tips here and what noobie mistake I made here.
Thank you to anyone who can help me out.
--
View this message in context: http://www.nabble.com/Can%27t-run-rabbitmq-server...-Install-issue--tp25967988p25967988.html
Sent from the RabbitMQ mailing list archive at Nabble.com.
_______________________________________________
rabbitmq-discuss mailing list
rabbitmq-discuss@lists.rabbitmq.com
http://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss
Post received from mailinglist |
|
|
| Back to top |
|
| Guest |
Posted: Tue Oct 20, 2009 1:31 am |
|
|
|
Guest
|
Did you make rabbit?
cd rabbitmq-server && make ?
Ari
On Oct 19, 2009, at 6:24 PM, Squeegy wrote:
>
> I seem to have quite an adventure getting rabbitmq-server running on
> my snow
> leopard machine.
>
> Macports failed to install erlang, due to some bizarre compilation
> errors,
> so I installed it from source. It also failed to install rabbitmq-
> server,
> so I tried to install it manually. I it appears to have install
> erlangs
> libs to /usr/local/lib/erlang/lib/, so that it where I put the
> rabbitmq-server-1.7.0 directory. But when I run the server, it's
> not happy:
>
> ---
> $ /usr/local/lib/erlang/lib/rabbitmq-server-1.7.0/scripts/rabbitmq-
> server
> {"init terminating in
> do_boot",{undef,[{rabbit,start,[]},{init,start_it,1},{init,start_em,
> 1}]}}
>
> Crash dump was written to: erl_crash.dump
> init terminating in do_boot ()
> ---
>
> The crash log is no less than 12,000 lines and I have no idea what
> to make
> of it. I can run "erl" just fine, and I get the erlang prompt (I
> think):
>
> ---
> $ erl
> Erlang R13B02 (erts-5.7.3) [source] [smp:2:2] [rq:2] [async-threads:0]
> [kernel-poll:false]
>
> Eshell V5.7.3 (abort with ^G)
> 1>
> ---
>
> So I have no idea what is going on here. I have put the crashdump
> up here:
> http://gist.github.com/213893
>
> In case someone smarter than I can make heads or tails of it. I
> would
> really appreciate any tips here and what noobie mistake I made here.
>
> Thank you to anyone who can help me out.
> --
> View this message in context: http://www.nabble.com/Can%27t-run-rabbitmq-server...-Install-issue--tp25967988p25967988.html
> Sent from the RabbitMQ mailing list archive at Nabble.com.
>
>
> _______________________________________________
> rabbitmq-discuss mailing list
> rabbitmq-discuss@lists.rabbitmq.com
> http://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss
_______________________________________________
rabbitmq-discuss mailing list
rabbitmq-discuss@lists.rabbitmq.com
http://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss
Post received from mailinglist |
|
|
| Back to top |
|
| Guest |
Posted: Tue Oct 20, 2009 1:40 am |
|
|
|
Guest
|
|
| Back to top |
|
| Guest |
Posted: Tue Oct 20, 2009 5:09 am |
|
|
|
Guest
|
Alex,
Alex Wayne wrote:
> In my defense the installation instruction don't mention rabbit actually
> has to be compiled at
> all: http://www.rabbitmq.com/install.html#install-generic-unix
> It says:
>
> 1. Install erlang
> 2. unpack rabbitmq tarball and place with other erlang libs
> 3. Customize script/rabbitmq-server environment variables
Actually, the instructions (at the above URL and in the INSTALL file
inside the tarball) say
# Install a recent version of Erlang.
# Download rabbitmq-server-generic-unix-version.tar.gz, where version is
the version of RabbitMQ Server you want to install.
# Contained in the tarball is a directory named rabbitmq_server-version.
You should extract this into somewhere appropriate for application
binaries on your system.
# Within the sbin directory is a shell script rabbitmq-server which may
need customisation for your installation. [...]
> Not actually knowing erlang at all I had no idea this was a even a
> compiled language at all. It seems that a step 2.5 "run a make command
> in the rabbitmq-server_version directory", would have saved me a headache.
The rabbitmq-server-generic-unix-version.tar.gz mentioned above,
available from http://www.rabbitmq.com/server.html, is pre-compiled. So
no compile steps are necessary. And there is no Makefile in that tar.
Did you perhaps download the *source* tarball? In that case the clue is
in the name and the build instructions at
http://www.rabbitmq.com/build-server.html tell you what to do.
As an aside, there is no need for rabbit to be put in a "place with
other erlang libs" - that used to be the case prior to 1.7.0 but is no
longer true (and the docs reflect that).
Regards,
Matthias.
_______________________________________________
rabbitmq-discuss mailing list
rabbitmq-discuss@lists.rabbitmq.com
http://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss
Post received from mailinglist |
|
|
| Back to top |
|
| Guest |
Posted: Tue Oct 20, 2009 4:55 pm |
|
|
|
Guest
|
| Yeah it appears I was confused on a few facts gathered from readme's and googling. |
|
|
| Back to top |
|
| wuji |
Posted: Mon Aug 20, 2012 8:28 am |
|
|
|
User
Joined: 10 Aug 2012
Posts: 654
|
age the way of her mother, Judy Loe, 65."I much much replica designer *beep* much prefer how my mother looks to the people I
here [in Los Angeles] with wind-tunnel face," Beckinsale, who turns turns imitation designer *beep* turns 39 at the end of this month, tells the
edition of Glamour magazine."I feel like beauty is a gift gift jordan 6 olympic gift that you have for a while, and you enjoy
hell out of it while you have it," she tells tells cheap designer *beep* tells the August issue. "And if you're lucky enough to
a daughter and you give it to her, you enjoy enjoy cheap Ralph Lauren enjoy the fact she has it. My mother was always
very beautiful -- she still is, in her sixties."Beckinsale also also [h3]jordan 6[/h3] also lashed out against the pressure put on new celebrity
to bounce back after their pregnancies."There's an obsessional hatred of of cheap polo ralph lauren of normal human processes. Pregnancy changes a woman's body and
It isn't normal to not look like you've had a a cheap designer *beep* a baby immediately after you've had a baby."Fortunately for Beckinsale, |
|
|
| Back to top |
|
|
|
All times are GMT
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum
|
|
|