zoukankan      html  css  js  c++  java
  • win7安装RabbitMQ

    1、下载并安装erlang

    http://www.erlang.org/downloads
    

    2、下载并安装RabbitMQ

    http://www.rabbitmq.com/install-windows.html
    

     注意:将RabbitMQ安装在erlang的lib文件夹下,不然会报错!找不到路径。

    还有就是 services 选项 取消勾选!

    3、打开cmd,切换到RabbitMQ的sbin文件夹下,执行:

    C:Program Fileserl9.0lib
    abbitmq_server-3.6.10sbin>rabbitmqctl.bat stat
    Status of node rabbit@office
    [{pid,20728},
     {running_applications,
         [{rabbit,"RabbitMQ","3.6.10"},
          {os_mon,"CPO  CXC 138 46","2.4.2"},
          {ranch,"Socket acceptor pool for TCP protocols.","1.3.0"},
          {ssl,"Erlang/OTP SSL application","8.2"},
          {public_key,"Public key infrastructure","1.4.1"},
          {asn1,"The Erlang ASN1 compiler version 5.0","5.0"},
          {mnesia,"MNESIA  CXC 138 12","4.15"},
          {crypto,"CRYPTO","4.0"},
          {rabbit_common,
              "Modules shared by rabbitmq-server and rabbitmq-erlang-client",
              "3.6.10"},
          {compiler,"ERTS  CXC 138 10","7.1"},
          {xmerl,"XML parser","1.3.15"},
          {syntax_tools,"Syntax tools","2.1.2"},
          {sasl,"SASL  CXC 138 11","3.0.4"},
          {stdlib,"ERTS  CXC 138 10","3.4"},
          {kernel,"ERTS  CXC 138 10","5.3"}]},
     {os,{win32,nt}},
     {erlang_version,
         "Erlang/OTP 20 [erts-9.0] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads
     {memory,
         [{total,56711632},
          {connection_readers,0},
          {connection_writers,0},
          {connection_channels,0},
          {connection_other,0},
          {queue_procs,2744},
          {queue_slave_procs,0},
          {plugins,0},
          {other_proc,23833640},
          {mnesia,61776},
          {metrics,184984},
          {mgmt_db,0},
          {msg_index,44048},
          {other_ets,1805664},
          {binary,86464},
          {code,21388830},
          {atom,891849},
          {other_system,8593809}]},
     {alarms,[]},
     {listeners,[{clustering,25672,"::"},{amqp,5672,"::"},{amqp,5672,"0.0.0.0"}]
     {vm_memory_high_watermark,0.4},
     {vm_memory_limit,3403792384},
     {disk_free_limit,50000000},
     {disk_free,181096128512},
     {file_descriptors,
         [{total_limit,8092},
          {total_used,2},
          {sockets_limit,7280},
          {sockets_used,0}]},
     {processes,[{limit,1048576},{used,175}]},
     {run_queue,0},
     {uptime,795},
     {kernel,{net_ticktime,60}}]
    

     4、安装模块pika

    pip install pika
    
  • 相关阅读:
    玩转git分支
    python元组、列表的异同总结
    IOS推送通知測试工具PushMeBaby
    Target runtime Apache Tomcat v6.0 is not defined.错误解决方法
    Jmeter变量参数化及函数应用
    在Jmeter中使用自定义编写的Java测试代码
    使用LoadRunner监控Apache的步骤 (转)
    mysql-This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决
    Web服务器性能/压力测试工具http_load、webbench、ab、Siege使用教程
    JVM调优总结-调优方法
  • 原文地址:https://www.cnblogs.com/leomei91/p/7151451.html
Copyright © 2011-2022 走看看