RabbitMQを使用してmcollectiveをセットアップしようとしています。指示に従って、rabbit_stompプラグインを有効にしてから、ポートを6163に設定しました。
[ {rabbit_stomp, [{tcp_listeners, [{"127.0.0.1",6163}]} ]} ].
ただし、再起動した後でも、そのポートに設定したくないようです。
tcp 0 0 0.0.0.0:54949 0.0.0.0:* LISTEN 13439/beam.smp
tcp 0 0 :::5672 :::* LISTEN 13439/beam.smp
tcp 0 0 :::61613 :::* LISTEN 13439/beam.smp
webを見ると、上記のコードが適切な手順のように思われるので、私が見逃しているのは何ですか。
私は以下を実行しています:
[root@trp08-01 rabbitmq]# rpm -qi rabbitmq-server
Name : rabbitmq-server Relocations: (not relocatable)
Version : 2.8.1 Vendor: (none)
Release : 1 Build Date: Thu 22 Mar 2012 10:52:25 AM EDT
Install Date: Sat 28 Apr 2012 04:33:31 PM EDT Build Host: release-debian.localdomain
Group : Development/Libraries Source RPM: rabbitmq-server-2.8.1-1.src.rpm
Size : 3320919 License: MPLv1.1
Signature : DSA/SHA1, Thu 22 Mar 2012 10:55:48 AM EDT, Key ID f7b8cea6056e8e56
URL : http://www.rabbitmq.com/
Summary : The RabbitMQ server
Description :
RabbitMQ is an implementation of AMQP, the emerging standard for high
performance enterprise messaging. The RabbitMQ server is a robust and
scalable implementation of an AMQP broker.
[root@trp08-01 rabbitmq]# rpm -qi erlang
Name : erlang Relocations: (not relocatable)
Version : R14B Vendor: Fedora Project
Release : 03.3.el5 Build Date: Sun 07 Aug 2011 06:21:28 AM EDT
Install Date: Fri 27 Apr 2012 10:50:55 AM EDT Build Host: x86-11.phx2.fedoraproject.org
Group : Development/Languages Source RPM: erlang-R14B-03.3.el5.src.rpm
Size : 31472 License: ERPL
Signature : (none)
Packager : Fedora Project
URL : http://www.erlang.org
Summary : General-purpose programming language and runtime environment
Description :
Erlang is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance. Erlang is used in several large telecommunication
CentOS5.5の場合
気にしないで。ドキュメントをもっと詳しく読むことを学ぶ必要があります。
http://www.rabbitmq.com/stomp.html
私はrabbitmq_stompのスペルを間違えました。修正:
[
{rabbitmq_stomp, [{tcp_listeners, [{"127.0.0.1", 6163},
{"::1", 6163}]}]}
].
興味深いことに、ProPuppetの本にはrabbit_stompとしても含まれていました。書籍が公開された後のプラグインの更新なのか、書籍自体のエラーなのかわかりません。