一、环境
Windows11 + WSL(Ubuntu 24.04.1)
二、思路
1 用Windows中的Ubuntu安装RabbitMQ,贴近Linux的线上环境;
2 RabbitMQ用erlang语言编写的,先安装erlang的运行环境;
2 用Linux的apt-get命令安装,解决软件依赖的问题,省去官网下载步骤;
4 配置Ubuntu国内镜像,避免安装时连接国外网站慢的问题;
三、步骤
1 设置国内镜像
有设置镜像,则跳过。
1.1 查看Ubuntu版本
cat /etc/issue
1.2 获取镜像地址
本例用清华的镜像(其他类似):
ubuntu | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
选择对应的Ubuntu版本(noble版本),得到镜像地址如下(上图列出了atp镜像的保存文件soures.list):
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ noble main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ noble main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ noble-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ noble-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ noble-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.t