set 3 plugins. Offline change; changes will take effect at broker restart.
时间: 2024-05-10 15:17:15 浏览: 210
To set 3 plugins offline for RabbitMQ, you can follow these steps:
1. Connect to the RabbitMQ server using a terminal or command prompt.
2. Stop the RabbitMQ service.
3. Edit the RabbitMQ configuration file located at /etc/rabbitmq/rabbitmq.conf or /usr/local/etc/rabbitmq/rabbitmq.conf, depending on your installation.
4. Add the following lines to the configuration file:
```
[
{rabbitmq_management, false},
{rabbitmq_amqp1_0, false},
{rabbitmq_stomp, false}
].
```
5. Save the configuration file.
6. Start the RabbitMQ service.
7. Verify that the plugins are disabled by accessing the RabbitMQ web interface or by running the command `rabbitmq-plugins list`.
Note: These changes will not take effect until the RabbitMQ service is restarted.
阅读全文