我想在我的 Ubuntu 18.04 上安装 rabbitmq。我一直在关注官方文档。但是,我的安装尚未完成,因为我卡在了这一步:sudo apt-get install rabbitmq-server -y --fix-missing
因为我遇到一个错误:未满足的依赖关系。
我尝试安装 libssl,然后安装 erlang-crypto,但没有成功。我还aptitude
尝试使用 安装了erlang-crypto
,但它也没有安装任何软件包。
我正在运行的命令是:
sudo apt-get install -y erlang-base \
erlang-asn1 erlang-crypto erlang-eldap erlang-ftp erlang-inets \
erlang-mnesia erlang-os-mon erlang-parsetools erlang-public-key \
erlang-runtime-tools erlang-snmp erlang-ssl \
erlang-syntax-tools erlang-tftp erlang-tools erlang-xmerl
我收到一条失败消息:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
erlang-crypto : Depends: libssl1.1 (>= 1.1.1) but it is not installable
E: Unable to correct problems, you have held broken packages.
该libssl
包不可用,但我已成功安装libssl-dev
。
我希望完整安装 RabbitMQ 并且它成功运行。