Visitas: 3
Necesitaba tener MongoDB 4 en Debian Buster, así que manos a la obra.
Obs:
- Utilizo Debian Buster de 64 bits.
Entramos a la terminal y tecleamos lo siguiente:
cd ~ wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add - sudo apt-get install gnupg wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add - echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/4.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list sudo apt update sudo apt install -y mongodb-org sudo apt clean && sudo apt autoclean
Verificamos la versión que hemos instalado:
mongo -version
Sale por pantalla:
MongoDB shell version v4.2.6 git version: 20364840b8f1af16917e4c23c1b5f5efd8b352f8 OpenSSL version: OpenSSL 1.1.1d 10 Sep 2019 allocator: tcmalloc modules: none build environment: distmod: debian10 distarch: x86_64 target_arch: x86_64
Iniciamos el servicio de mongo:
sudo systemctl start mongod
Verificamos el estado del servicio:
sudo systemctl status mongod
Sale por pantalla:
● mongod.service - MongoDB Database Server Loaded: loaded (/lib/systemd/system/mongod.service; disabled; vendor preset: enabled) Active: active (running) since Thu 2020-05-21 16:47:03 -04; 3s ago Docs: https://docs.mongodb.org/manual Main PID: 6031 (mongod) Memory: 78.3M CGroup: /system.slice/mongod.service └─6031 /usr/bin/mongod --config /etc/mongod.conf may 21 16:47:03 riotChatServer systemd[1]: Started MongoDB Database Server.
Activamos mongo para cuando se inicia el sistema se active el servicio:
sudo systemctl enable mongod
Sale por pantalla:
Created symlink /etc/systemd/system/multi-user.target.wants/mongod.service → /lib/systemd/system/mongod.service.
Imagen destacada: Wikipedia
Fuente: MongoDB