博客
关于我
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/

    你可能感兴趣的文章
    npm如何清空缓存并重新打包?
    查看>>
    npm学习(十一)之package-lock.json
    查看>>
    npm安装 出现 npm ERR! code ETIMEDOUT npm ERR! syscall connect npm ERR! errno ETIMEDOUT npm ERR! 解决方法
    查看>>
    npm安装crypto-js 如何安装crypto-js, python爬虫安装加解密插件 找不到模块crypto-js python报错解决丢失crypto-js模块
    查看>>
    npm安装教程
    查看>>
    npm报错Cannot find module ‘webpack‘ Require stack
    查看>>
    npm报错Failed at the node-sass@4.14.1 postinstall script
    查看>>
    npm报错fatal: Could not read from remote repository
    查看>>
    npm报错File to import not found or unreadable: @/assets/styles/global.scss.
    查看>>
    npm报错TypeError: this.getOptions is not a function
    查看>>
    npm报错unable to access ‘https://github.com/sohee-lee7/Squire.git/‘
    查看>>
    npm淘宝镜像过期npm ERR! request to https://registry.npm.taobao.org/vuex failed, reason: certificate has ex
    查看>>
    npm版本过高问题
    查看>>
    npm的“--force“和“--legacy-peer-deps“参数
    查看>>
    npm的安装和更新---npm工作笔记002
    查看>>
    npm的常用操作---npm工作笔记003
    查看>>
    npm的常用配置项---npm工作笔记004
    查看>>
    npm的问题:config global `--global`, `--local` are deprecated. Use `--location=global` instead 的解决办法
    查看>>
    npm编译报错You may need an additional loader to handle the result of these loaders
    查看>>
    npm设置淘宝镜像、升级等
    查看>>