RabbitMQ 入门教程

embedded/2025/1/13 7:51:22/

概述

RabbitMQ 是一个开源的消息代理和队列服务器,它实现了 AMQP (Advanced Message Queuing Protocol) 1.0 标准。RabbitMQ 可以在多语言环境中作为中间件处理应用程序之间的消息传递。

本教程将带你从零开始学习如何使用 RabbitMQ 进行消息的发布与订阅。

环境准备

1. 安装 RabbitMQ

- [官方文档](https://www.rabbitmq.com/download.html) 提供了多种平台的安装指南。

2. 安装 Erlang

- RabbitMQ 基于 Erlang 开发,需要先安装 Erlang。

3. 安装客户端库

- 选择一种编程语言并安装相应的客户端库(例如 Python、Java)。

第一步:启动 RabbitMQ 服务

```bash

rabbitmq-server

```

第二步:创建用户和权限

```bash

rabbitmqctl add_user guest guest

rabbitmqctl set_permissions -p / guest ".*" ".*" ".*"

```

第三步:访问管理控制台

- 访问 http://localhost:15672/ (默认用户名和密码都是 `guest`)

基础概念

- Exchange (交换器): 决定消息发送到哪里。

- Queue (队列): 存储消息的地方。

- Binding: Exchange 和 Queue 之间的连接。

- Routing Key: Exchange 使用它来决定消息发送给哪个 Queue。

示例:Hello World

1. 发布者 (Publisher)

Python 代码

```python

import pika

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))

channel = connection.channel()

channel.queue_declare(queue='hello')

channel.basic_publish(exchange='',

routing_key='hello',

body='Hello World!')

print(" [x] Sent 'Hello World!'")

connection.close()

```

2. 消费者 (Consumer)

Python 代码

```python

import pika

def callback(ch, method, properties, body):

print(" [x] Received %r" % body)

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))

channel = connection.channel()

channel.queue_declare(queue='hello')

channel.basic_consume(queue='hello',

on_message_callback=callback,

auto_ack=True)

print(' [*] Waiting for messages. To exit press CTRL+C')

channel.start_consuming()

```

示例:工作队列

1. 发送任务

Python 代码

```python

import pika

import sys

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))

channel = connection.channel()

channel.queue_declare(queue='task_queue', durable=True)

message = ' '.join(sys.argv[1:]) or "Hello World!"

channel.basic_publish(

exchange='',

routing_key='task_queue',

body=message,

properties=pika.BasicProperties(

delivery_mode=2, # make message persistent

))

print(" [x] Sent %r" % message)

connection.close()

```

2. 处理任务

Python 代码

```python

import pika

import time

def callback(ch, method, properties, body):

print(" [x] Received %r" % body)

time.sleep(body.count(b'.'))

print(" [x] Done")

ch.basic_ack(delivery_tag=method.delivery_tag)

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))

channel = connection.channel()

channel.queue_declare(queue='task_queue', durable=True)

print(' [*] Waiting for messages. To exit press CTRL+C')

channel.basic_qos(prefetch_count=1)

channel.basic_consume(queue='task_queue', on_message_callback=callback)

channel.start_consuming()

```

示例:发布/订阅模式

1. 发布消息

Python 代码

```python

import pika

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))

channel = connection.channel()

channel.exchange_declare(exchange='logs', exchange_type='fanout')

message = "Info: Hello from the publisher"

channel.basic_publish(exchange='logs', routing_key='', body=message)

print(" [x] Sent %r" % message)

connection.close()

```

2. 订阅消息

Python 代码

```python

import pika

import sys

def callback(ch, method, properties, body):

print(" [x] %r" % body)

connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))

channel = connection.channel()

channel.exchange_declare(exchange='logs', exchange_type='fanout')

result = channel.queue_declare(queue='', exclusive=True)

queue_name = result.method.queue

channel.queue_bind(exchange='logs', queue=queue_name)

print(' [*] Waiting for logs. To exit press CTRL+C')

channel.basic_consume(

queue=queue_name, on_message_callback=callback, auto_ack=True)

channel.start_consuming()


http://www.ppmy.cn/embedded/101550.html

相关文章

Ant Design Vue修改表格样式

原效果: 修改背景色和字体,包括表头和表体,要分开设置: :deep .ant-table-thead>tr>th {background: rgba(255, 255, 255, 0);//去掉表头背景color: rgb(100, 181, 220);font-weight: bold;border: none;//去掉表头边框}:d…

使用Fyne构建Go语言OpenAI API中转测试工具

前言 在这篇博客中,我们将介绍如何使用Go语言和Fyne框架构建一个简易的API工具。该工具允许用户输入API URL和API Key,通过简易的GUI与API进行交互,获取账单信息、模型列表并测试模型。本项目展示了一些实用的Go编程技巧和Fyne的使用方法。 …

【数据结构-前缀异或和】力扣1177. 构建回文串检测

给你一个字符串 s,请你对 s 的子串进行检测。 每次检测,待检子串都可以表示为 queries[i] [left, right, k]。我们可以 重新排列 子串 s[left], …, s[right],并从中选择 最多 k 项替换成任何小写英文字母。 如果在上述检测过程中&#xf…

10080-0-监测文件夹并解压压缩包-支持zip-rar-7z压缩包的解压-不支持子文件夹/密码/多层嵌套压缩包解压-UI

程序功使用环境▶适用的系统环境说明:win7以上64位win系统注意:win32位系统/mac系统需要额外定制▶使用期限:无需注册、不绑电脑、无时间限制▶如何安装:不需要安装程序功能说明▶支持的文件格式:.zip, .rar, .7z▶【以…

JAVA基础面试题总结(十二)——JVM(上)

Java内存区域详解 如果没有特殊说明,都是针对的是 HotSpot 虚拟机。 本文基于《深入理解 Java 虚拟机:JVM 高级特性与最佳实践》进行总结补充 常见面试题: 介绍下 Java 内存区域(运行时数据区) JDK1.7 JDK1.8 线程…

[hostapd]conf配置ht

https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf “IEEE 802.11n related configuration” 修改配置文件ht_capab字段 函数hostapd_config_ht_capab() /* HT Capabilities Info field within HT Capabilities element */ #define HT_CAP_INFO_LDPC_CODING_CAP ((u16)…

信息打点-Web架构篇域名语言中间件数据库系统源码获取

知识点: 1、打点-Web架构-语言&中间件&数据库&系统等 2、打点-Web源码-CMS开源&闭源售卖&自主研发等 CMS:网站程序源码是可以通过搜索引擎搜索到并且下载的; 闭源售卖:不是一个开源的,要么从内…

Swift中的可选类型:揭开Optional的神秘面纱

标题:Swift中的可选类型:揭开Optional的神秘面纱 Swift语言以其安全性和现代性著称,而可选类型(Optional)是Swift中一个非常重要的特性,它允许开发者以一种非常优雅的方式处理可能不存在的值。本文将深入探…