Installazione di CentOS sistema MongoDB 8
Il seguente tutorial descrive come installare MongoDB sistema CentOS 8.
Il tutto è semplice e si riduce a pochi semplici comandi wykonanaia.
In voci precedenti abbiamo descritto il processo di installazione per Ubuntu 18.04 che è sotto questa voce.
Per cominciare, creiamo un repository:
1 | nano /etc/yum.repos.d/mongodb.repo |
il suo contenuto:
1 2 3 4 5 6 | [mongodb-org-4.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/development/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-4.2.asc |
Salvare il file e installare lo stesso servizio di kodonujemy:
1 | dnf install mongodb-org |
Eseguire e aggiungere a autostart:
1 2 | systemctl start mongod systemctl enable mongod |
Controllare lo stato dei servizi:
1 | systemctl status mongod |
risultato:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ? mongod.service - MongoDB Database Server Loaded: loaded (/usr/lib/systemd/system/mongod.service; enabled; vendor preset: disabled) Active: active (running) since Mon 2020-01-03 03:59:12 EDT; 5min ago Docs: https://docs.mongodb.org/manual Process: 737 ExecStart=/usr/bin/mongod $OPTIONS (code=exited, status=0/SUCCESS) Process: 735 ExecStartPre=/usr/bin/chmod 0755 /var/run/mongodb (code=exited, status=0/SUCCESS) Process: 732 ExecStartPre=/usr/bin/chown mongod:mongod /var/run/mongodb (code=exited, status=0/SUCCESS) Process: 726 ExecStartPre=/usr/bin/mkdir -p /var/run/mongodb (code=exited, status=0/SUCCESS) Main PID: 914 (mongod) Memory: 216.1M CGroup: /system.slice/mongod.service ??914 /usr/bin/mongod --auth -f /etc/mongod.conf Oct 28 03:58:14 centos8 systemd[1]: Starting MongoDB Database Server... Oct 28 03:58:28 centos8 mongod[737]: about to fork child process, waiting until server is ready for connections. Oct 28 03:58:28 centos8 mongod[737]: forked process: 914 Oct 28 03:59:12 centos8 mongod[737]: child process started successfully, parent exiting Oct 28 03:59:12 centos8 systemd[1]: Started MongoDB Database Server. |
MongoDB da raggiungere usando il comando:
1 | mongo |
Creazione di un MongoDB amministrativa utente
si arriva a comando MongoDB :
1 | mongo |
Poi ci spostiamo il database chiamato admin
1 | use admin |
Emettiamo un comando per creare utente:
1 2 3 4 5 6 7 | db.createUser( { user: "mongodadmin", pwd: "password123", roles: [ { role: "userAdminAnyDatabase", db: "admin" } ] } ) |
password123 zmieniamy oczywiście na nasze tajne hasło 😉
Dovremmo ottenere il risultato:
1 2 3 4 5 6 7 8 9 | Successfully added user: { "user" : "mongodadmin", "roles" : [ { "role" : "userAdminAnyDatabase", "db" : "admin" } ] } |
Controlla il tuo ordine:
1 | show users |
risultato:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | { "_id" : "admin.mongodadmin", "userId" : UUID("f6e908db-e393-44a9-8c77-0fdb1c2baa0e"), "user" : "mongodadmin", "db" : "admin", "roles" : [ { "role" : "userAdminAnyDatabase", "db" : "admin" } ], "mechanisms" : [ "SCRAM-SHA-1", "SCRAM-SHA-256" ] } |
Configurare l'autenticazione MongoDB
Per default MongoDB consente a tutti gli utenti l'accesso alla shell MongoDB e comandi arbitrari eseguire. Si raccomanda pertanto di configurare l'autenticazione MongoDB, per impedire ad altri utenti di eseguire comandi senza le autorizzazioni necessarie.
In primo luogo è necessario abilitare l'autenticazione per MongoDB, modificando il file
1 | nano /lib/systemd/system/mongod.service |
E così abbiamo impostato la seguente riga:
1 | Environment="OPTIONS= --auth -f /etc/mongod.conf" |
servizi di ricarica:
1 2 | systemctl --system daemon-reload systemctl restart mongod |
Ora cerchiamo di entrare senza permesso:
1 2 3 | mongo use admin show users |
Vedremo un errore
1 2 3 4 5 6 | 2019-10-28T04:13:15.346-0400 E QUERY [js] uncaught exception: Error: command usersInfo requires authentication : _getErrorWithCode@src/mongo/shell/utils.js:25:13 DB.prototype.getUsers@src/mongo/shell/db.js:1638:15 shellHelper.show@src/mongo/shell/utils.js:883:9 shellHelper@src/mongo/shell/utils.js:790:15 @(shellhelp2):1:1 |
Ora registriamo in modo corretto privilegi:
1 2 | db.auth('mongodadmin', 'password123') show users |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | You should see the admin user with their roles in the following output: { "_id" : "admin.mongodadmin", "userId" : UUID("f6e908db-e393-44a9-8c77-0fdb1c2baa0e"), "user" : "mongodadmin", "db" : "admin", "roles" : [ { "role" : "userAdminAnyDatabase", "db" : "admin" } ], "mechanisms" : [ "SCRAM-SHA-1", "SCRAM-SHA-256" ] } |