Linuxの下でRabbitMQのインストールは機械をスタートさせます

3021 ワード

Linuxの下でRabbitMQのインストールは機械をスタートさせます


公式サイト

  • RabbitMQとerlangをダウンロードします.rabbitmq-server-3.6.6-1.el7.noarch.rpmとerlang-19..4-1.el7.centos.x86_64.rpmは私がダウンロードしたバージョンです.

  • インストール

    [root@localhost ~]# rpm -ivh --nodeps erlang-19.0.4-1.el7.centos.x86_64.rpm 
    
    [root@localhost ~]# yum install -y rabbitmq-server-3.6.6-1.el7.noarch.rpm 
    
    

    コンフィギュレーション


    開始

    [root@localhost ~]# service rabbitmq-server start
    
    

    ユーザーを作成し、アカウントadminパスワードadmin

    [root@localhost ~]# rabbitmqctl add_user admin admin
    Creating user "admin"
    

    adminユーザーに管理者権限を付与

    [root@localhost ~]# rabbitmqctl set_user_tags admin administrator
    Setting tags for user "admin" to [administrator]
    [root@localhost ~]#
    

    WEB管理の有効化

    [root@localhost ~]# rabbitmq-plugins enable rabbitmq_management
    The following plugins have been enabled:
        amqp_client
        cowlib
        cowboy
        rabbitmq_web_dispatch
        rabbitmq_management_agent
        rabbitmq_management
    Applying plugin configuration to rabbit@localhost... started 6 plugins.
    [root@localhost ~]#
    

    起動

    [root@localhost ~]# chkconfig rabbitmq-server on
    Note: Forwarding request to 'systemctl enable rabbitmq-server.service'.
    Created symlink from /etc/systemd/system/multi-user.target.wants/rabbitmq-server.service to /usr/lib/systemd/system/rabbitmq-server.service.
    [root@localhost ~]#
    

    JackDan9 Thinking