File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ this is perfect for experimenting locally.
4848.Running the broker and performance tool with the host network driver
4949----
5050# run the broker
51- docker run -it --rm --name rabbitmq --network host rabbitmq:3.9-rc
51+ docker run -it --rm --name rabbitmq --network host rabbitmq:3.9
5252# open another terminal and enable the stream plugin
5353docker exec rabbitmq rabbitmq-plugins enable rabbitmq_stream
5454# run the performance tool
@@ -73,9 +73,7 @@ can be done by defining a network and running the containers in this network.
7373# create a network
7474docker network create stream-perf-test
7575# run the broker
76- docker run -it --rm --network stream-perf-test --name rabbitmq \
77- -e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbit loopback_users "none"' \
78- rabbitmq:3.9-rc
76+ docker run -it --rm --network stream-perf-test --name rabbitmq rabbitmq:3.9
7977# open another terminal and enable the stream plugin
8078docker exec rabbitmq rabbitmq-plugins enable rabbitmq_stream
8179# run the performance tool
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ The following command creates a one-time Docker container to run RabbitMQ:
2626.Running the stream plugin with Docker
2727----
2828docker run -it --rm --name rabbitmq -p 5552:5552 \
29- -e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost -rabbit loopback_users "none" ' \
30- rabbitmq:3.9-rc
29+ -e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost' \
30+ rabbitmq:3.9
3131----
3232
3333The previous command exposes only the stream port (5552), you can expose
@@ -36,8 +36,8 @@ ports for other protocols:
3636.Exposing the AMQP 0.9.1 and management ports:
3737----
3838docker run -it --rm --name rabbitmq -p 5552:5552 -p 5672:5672 -p 15672:15672 \
39- -e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost -rabbit loopback_users "none" ' \
40- rabbitmq:3.9-rc- management
39+ -e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost' \
40+ rabbitmq:3.9-management
4141----
4242
4343Refer to the official https://hub.docker.com/_/rabbitmq[RabbitMQ Docker image web page]
@@ -58,7 +58,7 @@ this is perfect for experimenting locally.
5858
5959.Running RabbitMQ Stream with the host network driver
6060----
61- docker run -it --rm --name rabbitmq --network host rabbitmq:3.9-rc
61+ docker run -it --rm --name rabbitmq --network host rabbitmq:3.9
6262----
6363
6464Once the container is started, **the stream plugin must be enabled**:
You can’t perform that action at this time.
0 commit comments