RabbitMQ Config

默认访问地址:http://localhost:15672/

要想修改内网访问:

 %APPDATA%RabbitMQ 目录下添加文件 rabbitmq.config

[
 {rabbit,
  [%%
  %% Network Connectivity
  %% ====================
  %%
  %% By default, RabbitMQ will listen on all interfaces, using
  %% the standard (reserved) AMQP port.
  %%
  {tcp_listeners, [5672]},
  {loopback_users, ["luyongqiang"]}
  ]}
].
原文地址:https://www.cnblogs.com/w2011/p/4792314.html