15672 cannot be accessed after rabbitmq installation

The docker deployment rabbitmq installation is complete and cannot access 15672

  • view network

    netstat -an|grep 5672
    

    No 115672 port

  • Check if the console plugin is enabled

    docker exec -it rabbitmq1 bash
    # 查看打开的插件 
    rabbitmq-plugins list
    # 启动控制台插件
    rabbitmq-plugins enable rabbitmq_managerment
    # 查看打开的插件 
    rabbitmq-plugins list
    

Access to the console http://xxx:15672 again is normal

Guess you like

Origin blog.csdn.net/ximaiyao1984/article/details/132228942