共计 2998 个字符,预计需要花费 8 分钟才能阅读完成。
RabbitMQ 常用命令
rabbitmqctl 命令
http://www.rabbitmq.com/man/rabbitmqctl.1.man.html#
1). 服务器启动与关闭
启动: rabbitmq-server –detached
关闭:rabbitmqctl stop
若单机有多个实例,则在 rabbitmqctlh 后加–n 指定名称
2). 插件管理
开启某个插件:rabbitmq-pluginsenable xxx
关闭某个插件:rabbitmq-pluginsdisablexxx
注意:重启服务器后生效。
3).virtual_host 管理
新建 virtual_host: rabbitmqctladd_vhost xxx
撤销 virtual_host:rabbitmqctl delete_vhost xxx
4). 用户管理
新建用户:rabbitmqctl add_user xxxpwd
删除用户: rabbitmqctl delete_user xxx
改密码: rabbimqctlchange_password {username} {newpassword}
设置用户角色:rabbitmqctlset_user_tags {username} {tag …}
Tag 可以为 administrator,monitoring, management
5). 权限管理
权限设置:set_permissions [-pvhostpath] {user} {conf} {write} {read}
Vhostpath
Vhost 路径
user
用户名
Conf
一个正则表达式 match 哪些配置资源能够被该用户访问。
Write
一个正则表达式 match 哪些配置资源能够被该用户读。
Read
一个正则表达式 match 哪些配置资源能够被该用户访问。
6). 获取服务器状态信息
服务器状态:rabbitmqctl status
队列信息:rabbitmqctl list_queues[-p vhostpath] [queueinfoitem …]
Queueinfoitem 可以为:name,durable,auto_delete,arguments,messages_ready,messages_unacknowledged,messages,consumers,memory
Exchange 信息:rabbitmqctllist_exchanges[-p vhostpath] [exchangeinfoitem …]
Exchangeinfoitem 有:name,type,durable,auto_delete,internal,arguments.
Binding 信息:rabbitmqctllist_bindings[-p vhostpath] [bindinginfoitem …]
Bindinginfoitem 有:source_name,source_kind,destination_name,destination_kind,routing_key,arguments
Connection 信息:rabbitmqctllist_connections [connectioninfoitem …]
Connectioninfoitem 有:recv_oct,recv_cnt,send_oct,send_cnt,send_pend 等。
Channel 信息:rabbitmqctl list_channels[channelinfoitem …]
Channelinfoitem 有 consumer_count,messages_unacknowledged,messages_uncommitted,acks_uncommitted,messages_unconfirmed,prefetch_count,client_flow_blocked
rabbimq-plugins
http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html
系统命令
卸载
#rpm -qa|grep rabbitmq
rabbitmq-server-3.6.1-1.noarch
#rpm -e –nodeps rabbitmq-server-3.6.1-1.noarch
#rpm -qa|grep erlang
esl-erlang-18.3-1.x86_64
#rpm -e –nodeps esl-erlang-18.3-1.x86_64
服务
#service rabbitmq-server start – 后台方式运行
#service rabbitmq-server stop – 停止运行
#service rabbitmq-server status – 查看状态
插件安装
进入插件安装目录{rabbitmq-server}/plugins/(可以查看一下当前已存在的插件)
cd /usr/lib/rabbitmq/lib/rabbitmq_server-3.6.2/plugins
下载需要的插件(插件下载页面 http://www.rabbitmq.com/community-plugins.html)
如下载插件 rabbitmq_delayed_message_exchange
wget https://bintray.com/rabbitmq/community-plugins/download_file?file_path=rabbitmq_delayed_message_exchange-0.0.1.ez
(如果下载的文件名称不规则就手动重命名一下如:rabbitmq_delayed_message_exchange-0.0.1.ez)
启用插件
rabbitmq-plugins enable rabbitmq_delayed_message_exchange
CentOS 5.6 安装 RabbitMQ http://www.linuxidc.com/Linux/2013-02/79508.htm
RabbitMQ 客户端 C ++ 安装详细记录 http://www.linuxidc.com/Linux/2012-02/53521.htm
用 Python 尝试 RabbitMQ http://www.linuxidc.com/Linux/2011-12/50653.htm
RabbitMQ 集群环境生产实例部署 http://www.linuxidc.com/Linux/2012-10/72720.htm
Ubuntu 下 PHP + RabbitMQ 使用 http://www.linuxidc.com/Linux/2010-07/27309.htm
在 CentOS 上安装 RabbitMQ 流程 http://www.linuxidc.com/Linux/2011-12/49610.htm
RabbitMQ 概念及环境搭建 http://www.linuxidc.com/Linux/2014-12/110449.htm
RabbitMQ 入门教程 http://www.linuxidc.com/Linux/2015-02/113983.htm
RabbitMQ 的详细介绍:请点这里
RabbitMQ 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-10/136493.htm