GNU/Linux >> Linux Esercitazione >  >> Cent OS

Come installare OrientDB su CentOS 7

In questo tutorial, ti mostreremo come installare OrientDB sul tuo CentOS 7. Per chi non lo sapesse, OrientDB ha un database NoSQL multimodello che supporta database di documenti con un grafico che è un'applicazione basata su java e può essere eseguito su qualsiasi sistema operativo che supporti la replica multi-master e un facile ridimensionamento orizzontale.

Questo articolo presuppone che tu abbia almeno una conoscenza di base di Linux, sappia come usare la shell e, soprattutto, che ospiti il ​​tuo sito sul tuo VPS. L'installazione è abbastanza semplice e presuppone che tu sono in esecuzione nell'account root, in caso contrario potrebbe essere necessario aggiungere 'sudo ' ai comandi per ottenere i privilegi di root. Ti mostrerò l'installazione passo passo del sistema di gestione del database NoSQL open source di OrientDB su un server CentOS 7.

Installa OrientDB su CentOS 7

Passaggio 1. Innanzitutto, iniziamo assicurandoci che il tuo sistema sia aggiornato.

yum clean all
yum -y update

Passaggio 2. Installazione di OrientDB.

Prima di tutto, crea un nuovo utente per eseguire OrientDB:

adduser orientdb -d /opt/orientdb

Ora puoi scaricare l'archivio binario OrientDB eseguendo il comando seguente:

cd /opt/orientdb/
wget https://orientdb.com/download.php?file=orientdb-community-importers-2.2.29.tar.gz -O /opt/orientdb/orientdb.tar.gz

Una volta scaricato il pacchetto, decomprimeremo e sposteremo la cartella estratta in /opt/orientdb :

tar -xf orientdb.tar.gz
mv orientdb-community*/* .

Rendi l'utente OrientDB proprietario dei file estratti:

chown -R orientdb:orientdb /opt/orientdb

Passaggio 3. Avvio del server OrientDB.

OrientDB fornisce uno script di installazione per avviare il server. Passa all'utente OrientDB:

su - orientdb
sudo bin/server.sh

OrientDB ora dovrebbe richiedere la password di root con un messaggio come quello qui sotto:

+---------------------------------------------------------------+
|                WARNING: FIRST RUN CONFIGURATION               |
+---------------------------------------------------------------+
| This is the first time the server is running. Please type a   |
| password of your choice for the 'root' user or leave it blank |
| to auto-generate it.                                          |
|                                                               |
| To avoid this message set the environment variable or JVM     |
| setting ORIENTDB_ROOT_PASSWORD to the root password to use.   |
+---------------------------------------------------------------+

Passaggio 4. Configura il demone OrientDB.

Crea un nuovo systemd servizio per gestire facilmente l'avvio e l'arresto di OrientDB:

nano /etc/systemd/system/orientdb.service

Incolla il seguente contenuto:

[Unit]
Description=OrientDB service
After=network.target

[Service]
Type=simple
ExecStart=/opt/orientdb/bin/server.sh
User=orientdb
Group=orientdb
Restart=always
RestartSec=9
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=orientdb

[Install]
WantedBy=multi-user.target

Ricarica systemd servizio demone:

systemctl daemon-reload

Avvia OrientDB e abilita l'avvio all'avvio:

systemctl start orientdb
systemctl enable orientdb

Congratulazioni! Hai installato correttamente OrientDB. Grazie per aver utilizzato questo tutorial per l'installazione della gestione del database NoSQL open source OrientDB sul tuo sistema CentOS 7. Per ulteriore aiuto o informazioni utili, ti consigliamo di controllare il Sito web OrientDB.


Cent OS
  1. Come installare PHP 7, 7.2 e 7.3 su CentOS 7

  2. Come installare Java 11 e 12 su CentOS 7

  3. Come installare Wine 4.0 su CentOS 7

  4. Come installare Vim 8.2 su CentOS 7

  5. Come installare VirtualBox su CentOS 7

Come installare Ruby su CentOS 7

Come installare PostgreSQL su CentOS 7

Come installare Go su CentOS 7

Come installare Python 3 su CentOS 7

Come installare R su CentOS 7

Come installare R su CentOS 8