Complete the command to start a RabbitMQ node as a RAM node.
rabbitmq-server -[1]Using -ram starts the node as a RAM node, which keeps state in memory.
Complete the command to join a RAM node to an existing cluster.
rabbitmqctl join_cluster --ram [1]The join_cluster --ram command requires the name of the cluster node to join, like node@hostname.
Fix the error in the command to reset a RAM node before joining a cluster.
rabbitmqctl [1]The reset command clears the node state, which is required before joining a cluster.
Fill both blanks to create a disc node and join it to a cluster.
rabbitmq-server -[1] & rabbitmqctl join_cluster [2]
Starting with -disc creates a disc node. Then joining the cluster requires the cluster node name like node@host1.
Fill all three blanks to reset a RAM node, start it, and join a cluster.
rabbitmqctl [1] && rabbitmq-server -[2] & rabbitmqctl join_cluster --ram [3]
Reset clears the node state. Starting with -ram makes it a RAM node. Joining the cluster uses the cluster node name.