Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经配置了两个参数。
inet_dist_listen_min = X inet_dist_listen_max = Y
在配置文件中,我将配置文件复制到它应该在的位置。 有没有办法知道 RabbitMQ 或 ERL 接收到正确的参数?
谢谢。
注意:最终我使用嗅探器完成了它(在数据包中看到了 TCP 端口)并且知道它收到了它, 但是有没有更快的方法?
对于rabbitmq
rabbitmqctl environment
对于 erlang 环境参数
rabbitmqctl eval 'application:get_all_env(kernel).'
和
epmd -names
https://www.rabbitmq.com/parameters.html:
rabbitmqctl list_parameters {-p vhost}
不是你需要的吗?