英文:
Where can I find documentation about the options that can be set in rabbitmq.conf?
问题
我在Kubernetes集群中运行RabbitMQ,并使用配置文件来配置一些设置:
/etc/rabbitmq/rabbitmq.conf
目前唯一的选项是:
management.path_prefix = /prefix
我想为队列中的消息添加生存时间,但无法在rabbitmq.conf中找到如何设置的方法。
英文:
I run RabbitMQ in a Kubernetes cluster and use a configuration file to configure some settings:
> /etc/rabbitmq/rabbitmq.conf
Right now the only option is:
> management.path_prefix = /prefix
I want to add a time-to-live for the messages in the queue, but can't find how to do so via rabbitmq.conf.
答案1
得分: 1
这里可以找到大部分在 rabbitmq.conf
中定义的配置参数。
英文:
Here you can find most of the configuration parameters defined in rabbitmq.conf
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论