내 rpi 3에 최신 버전의 MongoDB를 설치하고 싶지만 apt-get install
버전이 2.4입니다.
최신 버전을 설치하는 방법은 무엇입니까?
답변1
64비트 운영체제가 필요하므로 먼저 SD 카드에 복사하세요.
그런 다음 설치할 수 있습니다 (3.2) 저장소에서
apt show mongodb-server 2>/dev/null | grep Version
Version: 1:3.2.11-2+deb9u1
또는 설치(3.6) 소스에서;
apt install git python-pip
mkdir /opt/mongodb
cd /opt/mongodb
wget http://prdownloads.sourceforge.net/scons/scons-3.0.1.tar.gz
tar -xzf scons-3.0.1.tar.gz
cd scons-3.0.1
python setup.py install
cd ../
git clone --depth 1 https://github.com/mongodb/mongo.git --branch v3.6
cd mongo
pip install -r buildscripts/requirements.txt
scons-3.0.1 core MONGO_VERSION=3.6.0-$(git rev-parse --short HEAD)
scons-3.0.1 install