linux 在Raspberry PI 4上安装Mongodb的问题(牛眼)

qfe3c7zg  于 2023-05-06  发布在  Linux
关注(0)|答案(1)|浏览(200)

我尝试在Debian GNU/Linux 11(bullseye)的Raspberry PI 4中安装mongodb,遇到以下错误:

N: Skipping acquire of configured file 'main/binary-armhf/Packages' as repository 'http://repo.mongodb.org/apt/debian bullseye/mongodb-org/6.0 InRelease' doesn't support architecture 'armhf'

以前我安装在乌藨子PI与假人老兄和它的工作.但是当我尝试在Debian牛眼上执行相同的步骤时,出现了上面的错误。我试图通过搜索论坛来找到修复方法,并试图了解发生了什么,但我找不到解决方案。
我已经做了这些步骤

wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -

echo "deb http://repo.mongodb.org/apt/debian bullseye/mongodb-org/6.0 main" | sudo tee 
/etc/apt/sources.list.d/mongodb-org-6.0.list

sudo apt-get update

sudo apt-get install -y mongodb-org

为了给予你更多的信息,这些是乌藨子的特点:
cat /etc/os-release:

PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

uname --all:

Linux server1 5.15.61-v8+ #1579 SMP PREEMPT Fri Aug 26 11:16:44 BST 2022 aarch64 GNU/Linux
wxclj1h5

wxclj1h51#

MongoDB在撰写本文时尚未正式支持Raspberry Pi。我已经交叉编译了最新的源代码,并将二进制文件发布在Github here上。如果你遇到问题,你可以在回购上提出问题。

相关问题