博客
关于我
Ubuntu20安装RabbitMQ记录
阅读量:307 次
发布时间:2019-03-03

本文共 756 字,大约阅读时间需要 2 分钟。

1. 下载资源

在开始安装 RabbitMQ之前,需要从官方网站下载对应的安装包。您可以通过以下链接获取最新版本:[RabbitMQ Server 安装包下载](https://www.rabbitmq.com/which-erlang.html)。

2. 开始安装

安装 RabbitMQ 涉及多个步骤,以下将详细指导您完成安装过程。 安装前,请确保您的系统环境已经准备就绪。

安装 erlang

安装 Erlang 是 RabbitMQ 安装的前提条件之一。建议使用以下命令安装:

apt install erlang-nox

安装完成后,继续配置 RabbitMQ 服务器。

解决配置错误

在安装过程中,您可能会遇到以下错误:

  • configure: error: No curses library functions found

    错误原因:缺少必要的库文件。解决方法是安装相关依赖:

    apt install libncurses5-dev

    安装完成后,重新运行配置命令。

  • configure: WARNING: wxWidgets must be installed on your system.

    错误原因:系统未安装 wxWidgets 软件。请按照以下步骤安装:

    apt install wx-common

    安装完成后,确保 wxWidgets 版本为 2.8.4 或以上。

  • 安装 RabbitMQ 服务器

    安装完成 Erlang 和 wxWidgets 后,按照以下步骤安装 RabbitMQ 服务器:

    apt install rabbit-server

    安装完成后,按照 RabbitMQ 官方文档继续配置和运行服务器。

    请注意,安装完成后建议进行测试,确保 RabbitMQ 服务器正常运行。

    转载地址:http://gagl.baihongyu.com/

    你可能感兴趣的文章
    POJ 2892 Tunnel Warfare(树状数组+二分)
    查看>>
    poj 2965 The Pilots Brothers' refrigerator-1
    查看>>
    poj 3026( Borg Maze BFS + Prim)
    查看>>
    POJ 3041 - 最大二分匹配
    查看>>
    POJ 3041 Asteroids(二分匹配模板题)
    查看>>
    Qt笔记——标准文件对话框QFileDialog
    查看>>
    poj 3083 Children of the Candy Corn
    查看>>
    POJ 3083 Children of the Candy Corn 解题报告
    查看>>
    POJ 3253 Fence Repair C++ STL multiset 可解 (同51nod 1117 聪明的木匠)
    查看>>
    Qt笔记——控件总结
    查看>>
    poj 3262 Protecting the Flowers 贪心
    查看>>
    poj 3264(简单线段树)
    查看>>
    Qt笔记——布局管理三件套分割窗口、停靠窗口和堆栈窗口
    查看>>
    poj 3277 线段树
    查看>>
    POJ 3349 Snowflake Snow Snowflakes
    查看>>
    POJ 3411 DFS
    查看>>
    poj 3422 Kaka's Matrix Travels (费用流 + 拆点)
    查看>>
    Qt笔记——官方文档全局定义(二)Functions函数
    查看>>
    POJ 3468 A Simple Problem with Integers
    查看>>
    poj 3468 A Simple Problem with Integers 降维线段树
    查看>>