RabbitMQ ubuntu 在线安装

  1. ubuntu 20.04,换阿里源

cp /etc/apt/sources.list /etc/apt/sources-bk.list

vim /etc/apt/sources.list

将下面内容放到文件最上面,会先用上面的源去更新文件。这样就不用删下面以前的旧源了。

deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse

保存后再运行下面的内容。

2.更新包列表

sudo apt update

3.安装RabbitMQ

sudo apt install rabbitmq-server

4.启动RabbitMQ服务

sudo systemctl start rabbitmq-server

5.查看RabbitMQ状态

sudo systemctl status rabbitmq-server

6.(可选)启用RabbitMQ管理插件,以便能够通过Web界面管理RabbitMQ:

sudo rabbitmq-plugins enable rabbitmq_management

7.(可选)创建用户和设置权限(请替换your_usernameyour_password为你想要的用户名和密码):

sudo rabbitmqctl add_user your_username your_password

sudo rabbitmqctl set_user_tags your_username administrator

sudo rabbitmqctl set_permissions -p / your_username ".*" ".*" ".*"

相关推荐
希陌ximo30 分钟前
4090-L40-A6000
服务器
007php00741 分钟前
GoZero项目中解决`go.mod`和`go.sum`校验和不匹配问题的解决方案
java·服务器·开发语言·后端·python·golang·php
Damon小智1 小时前
Linux系统中解决端口占用问题
linux·运维·服务器·进程·端口占用
encoding-console1 小时前
centos挂载的基本步骤
linux·运维·centos·挂载
田振靓1 小时前
Ubuntu上安装Apache Spark
ubuntu·spark·apache
大哥喝阔落1 小时前
linux相关conda操作
linux·运维·conda
豆是浪个1 小时前
Linux(Centos 7.6)命令详解:pwd
linux·运维·服务器
数据的世界014 小时前
C#标识符和关键字
java·服务器·c#
-Harvey7 小时前
ubuntu为Docker配置代理
linux·ubuntu·docker
thehunters7 小时前
win10 ubuntu 使用Android ndk 问题:clang-14: Exec format error
android·linux·ubuntu