Changeset 930 for trunk/Monitoring


Ignore:
Timestamp:
08/21/13 12:12:02 (11 years ago)
Author:
jripsl
Message:
  • add installation comments.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Monitoring/Broker/README

    r866 r930  
    1 - installation (as root) 
     1- Broker installation procedure (as root) 
     2        - check if EPEL repository is configured, if not, do steps below 
     3                - for CENTOS 6 
     4                  (from http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/) 
     5                        - wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm 
     6                        - rpm -ivh epel-release-6-8.noarch.rpm 
    27        - RabbitMQ server 
     8                yum install nc 
    39                yum install erlang.x86_64 
    410                yum install libxslt-devel.x86_64 
     
    1925                make 
    2026                make install 
    21         - console admin tools (http://www.rabbitmq.com/management-cli.html) 
     27        - optional console admin tools (http://www.rabbitmq.com/management-cli.html) 
    2228                - wget http://hg.rabbitmq.com/rabbitmq-management/raw-file/rabbitmq_v3_0_2/bin/rabbitmqadmin 
    2329                - mv -i rabbitmqadmin /usr/sbin 
     
    4753        - to stop the daemon, use one of those 
    4854                - kill -TERM $(pidof epmd) 
    49                 - rabbitmqctl stop 
     55                - ./rabbitmqctl stop 
     56                        - note 
     57                                - it's normal to have the erlang process below running after stop (it's an erlang generic registry stuff) 
     58                                        - 31691 ?        S      0:00 /usr/lib64/erlang/erts-5.8.5/bin/epmd -daemon 
     59- test 
     60        - connectivity test 
     61                - telnet localhost 5672 
     62                - telnet cstest-broker.ipsl.jussieu.fr 5672 
    5063- operation 
    5164        - to print RabbitMQ status, use 
    52                 - rabbitmqctl report 
     65                - ./rabbitmqctl report 
    5366        - to print RabbitMQ queues, use: 
    54                 - rabbitmqadmin list queues 
    55                 - rabbitmqctl list_queues 
     67                - ./rabbitmqctl list_queues 
     68                - optional 
     69                        - ./rabbitmqadmin list queues 
Note: See TracChangeset for help on using the changeset viewer.