0
0
RabbitMQdevops~10 mins

Cluster node types (disc, RAM) in RabbitMQ - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to start a RabbitMQ node as a RAM node.

RabbitMQ
rabbitmq-server -[1]
Drag options to blanks, or click blank then click option'
Adisc
Bram
Cstart
Dstop
Attempts:
3 left
💡 Hint
Common Mistakes
Using -disc instead of -ram
Omitting the node type option
Using unrelated commands like start or stop
2fill in blank
medium

Complete the command to join a RAM node to an existing cluster.

RabbitMQ
rabbitmqctl join_cluster --ram [1]
Drag options to blanks, or click blank then click option'
Areset
Bstart
Cstop
Dnode@hostname
Attempts:
3 left
💡 Hint
Common Mistakes
Using commands like start or stop instead of node name
Omitting the node name
Using reset which is unrelated here
3fill in blank
hard

Fix the error in the command to reset a RAM node before joining a cluster.

RabbitMQ
rabbitmqctl [1]
Drag options to blanks, or click blank then click option'
Areset
Bjoin_cluster
Cstop
Dstart
Attempts:
3 left
💡 Hint
Common Mistakes
Using start or stop instead of reset
Using join_cluster without resetting first
4fill in blank
hard

Fill both blanks to create a disc node and join it to a cluster.

RabbitMQ
rabbitmq-server -[1] & rabbitmqctl join_cluster [2]
Drag options to blanks, or click blank then click option'
Adisc
Bnode@host1
Cram
Dnode@host2
Attempts:
3 left
💡 Hint
Common Mistakes
Using -ram instead of -disc
Joining with wrong node name
5fill in blank
hard

Fill all three blanks to reset a RAM node, start it, and join a cluster.

RabbitMQ
rabbitmqctl [1] && rabbitmq-server -[2] & rabbitmqctl join_cluster --ram [3]
Drag options to blanks, or click blank then click option'
Areset
Bram
Cnode@cluster1
Ddisc
Attempts:
3 left
💡 Hint
Common Mistakes
Starting as disc node instead of RAM
Not resetting before joining
Using wrong cluster node name