zoukankan      html  css  js  c++  java
  • 在本地安装RabbitMQ Server教程以及可能遇到的问题及解决办法

    1. Download latest erlang OTP platform from :
    erlang:http://www.erlang.org/download.html
    (The latest version otp_win64_21.0.1.exe has been uploaded to GIT repository)

    2. Download latest RabbitMQ Server installer from :
    rabbitmq:http://www.rabbitmq.com/download.html
    (The latest version rabbitmq-server-3.7.7.exe has been uploaded to GIT repository)

    3. Install Erlang OTP into D:Softwareerl10.0.1, and add a new system variable: ERLANG_HOME=D:Softwareerl10.0.1

    4. Install RabbitMQ Server into D:SoftwareRabbitMQServer abbitmq_server-3.7.7, and add a new system variable: RABBITMQ_SERVER=D:SoftwareRabbitMQServer abbitmq_server-3.7.7
    (Notice: Do not install the RabbitMQ Server into the path which contains space, like "C:Program File...", otherwise it will cause error.)

    5. Run cmd.exe as Administrator.
    (Crutial)

    6. Set the HOMEDRIVE variable to C disk instead of others(like x,u,...)
    SET HOMEDRIVE=C:

    7. Execute the following commands:
    rabbitmq-plugins.bat enable rabbitmq_management
    rabbitmq-service.bat stop
    rabbitmq-service.bat install
    rabbitmq-service.bat start

    8. Enter http://localhost:15672 in the Web Browser and if you see the RabbitMQ homepage, the install is successful.

  • 相关阅读:
    BZOJ3672/UOJ7 [Noi2014]购票
    POJ3718 Facer's Chocolate Dream
    BZOJ1453:[WC]Dface双面棋盘
    BZOJ2957:楼房重建
    AtCoder Grand Contest 009 D:Uninity
    BZOJ2877:[NOI2012]魔幻棋盘
    BZOJ3065:带插入区间K小值
    BZOJ3489:A simple rmq problem
    浅谈主席树
    AtCoder Regular Contest 080 E:Young Maids
  • 原文地址:https://www.cnblogs.com/bolddream/p/Local_RabbitMQ.html
Copyright © 2011-2022 走看看