Projekt

MongoDB 5 unter Ubuntu 21.10 installieren und Datenbank anlegen und remote erreichbar machen

image_print

MongoDB ist eine open-source Dokumenten-Datenbank, MongoDB ist eine sog. NoSQL Datenbank und eignet sich für die Speicherung großer Datenmengen (big data), Daten können direkt in sog. Collections gespeichert werden, es muss zuvor keine Schemata oder Tabellen/Relationen oder erstellt werden.

Abhängigkeiten installieren:

apt update

apt install dirmngr gnupg apt-transport-https ca-certificates software-properties-common

MongoDB GPG Key installieren, Repository hinzufügen:

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

add-apt-repository 'deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse' 

Packet Datenbank updaten:

apt-get update

MongoDB installieren:

apt install mongodb-org

MongoDB Service starten und nach Reboot automatisch starten, Status prüfen

systemctl start mongod
systemctl enable mongod
systemctl status mongod

MongoDB Shell öffnen

mongo

mit Datenbank verbinden und User „mongoAdmin“ anlegen

use admin
db.createUser(
   {
     user: "mongoAdmin",
     pwd: "dbPassword",
     roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
   }
 )

mongo shell beenden und testweise mit admin user verbinden:

quit()
mongo -u mongoAdmin -p --authenticationDatabase admin

User anzeigen:

show users

> show users
{
  "_id" : "admin.mongoAdmin",
  "userId" : UUID("3e3f639a-de55-4693-bce9-e9788bf2967e"),
  "user" : "mongoAdmin",
  "db" : "admin",
  "roles" : [
    {
      "role" : "userAdminAnyDatabase",
      "db" : "admin"
    }
  ],
  "mechanisms" : [
    "SCRAM-SHA-1",
    "SCRAM-SHA-256"
  ]
}

MongoDB von außer sprich remote verfügbar machen:

nano /etc/mongod.conf

IP Adresse des Servers bei „bindIp“ angeben:

Zugriff mit Datenbank-Verwaltungstool MongoDB Compass testen:

Collections sprich Daten anzeigen lassen:

Quelle: https://wiki.crowncloud.net/?How_to_Install_MongoDB_5_on_Ubuntu_21_10

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert