Paso 1: Agregar el repositorio de paquetes MongoDB
Ejecutar los siguientes comandos para agregar la clave oficial del repositorio.
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
Después de agregar la clave del repositorio a Ubuntu, ejecutar los siguientes comandos
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
Paso 2: Instalar MongoDB en Ubuntu
Ahora que el repositorio y la clave se han agregado, ejecutar los siguientes comandos
sudo apt update sudo apt install -y mongodb-org
Paso 3: Administrar MongoDB
Después de instalar MongoDB, los siguientes comandos se pueden usar para detener, iniciar y permitir que MongoDB se inicie automáticamente cuando se inicie el sistema.
sudo systemctl stop mongod.service sudo systemctl start mongod.service sudo systemctl enable mongod.service
De forma predeterminada, MongoDB escucha en el puerto 27017 .. después de la instalación, el servidor local debería poder comunicarse con MongoDB .. para verificar si MongoDB se está ejecutando y está activo, ejecute los siguientes comandos:
sudo systemctl status mongod
Debería ver algo como las líneas a continuación:
usuario@ubuntu1604:~$ sudo systemctl status mongod
● mongod.service - High-performance, schema-free document-oriented database
Loaded: loaded (/lib/systemd/system/mongod.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2018-01-27 08:53:42 CST; 13min ago
Docs: https://docs.mongodb.org/manual
Main PID: 2383 (mongod)
Tasks: 23
Memory: 60.7M
CPU: 2.613s
CGroup: /system.slice/mongod.service
└─2383 /usr/bin/mongod --config /etc/mongod.conf
Jan 27 08:53:42 ubuntu1604 systemd[1]: Started High-performance, schema-free document-oriented database.
Jan 27 09:05:49 ubuntu1604 systemd[1]: Started High-performance, schema-free document-oriented database.
Comentarios
Publicar un comentario