91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Ubuntu16.04上安裝OrientDB

發布時間:2022-01-21 14:33:02 來源:億速云 閱讀:160 作者:iii 欄目:開發技術

這篇文章主要講解了“怎么在Ubuntu16.04上安裝OrientDB”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么在Ubuntu16.04上安裝OrientDB”吧!

OrientDB是屬于NoSQL系列數據庫管理系統,OrientDB是第二代分布式數據庫具有靈活性的文檔在一個產品與Apache 2許可證的開放源代碼。

下載 OrientDB

我們可以從最新的服務端上通過輸入下面的指令來下載最新版本的 OrientDB。

  1. $ wget -O orientdb-community-2.2.22.tar.gz http://orientdb.com/download.php?file=orientdb-community-2.2.22.tar.gz&os=linux

這里下載的是一個包含預編譯二進制文件的壓縮包,所以我們可以使用 tar 指令來操作解壓它:

  1. $ tar -zxf orientdb-community-2.2.22.tar.gz

將從中提取出來的文件夾整體移動到 /opt

  1. # mv orientdb-community-2.2.22 /opt/orientdb

啟動 OrientDB 服務器

啟動 OrientDB 服務器需要運行 orientdb/bin/ 目錄下的 shell 腳本:

  1. # /opt/orientdb/bin/server.sh

如果你是第一次開啟 OrientDB 服務器,安裝程序還會顯示一些提示信息,以及提醒你設置 OrientDB 的 root 用戶密碼:

  1. +---------------------------------------------------------------+

  2. | WARNING: FIRST RUN CONFIGURATION |

  3. +---------------------------------------------------------------+

  4. | This is the first time the server is running. Please type a |

  5. | password of your choice for the 'root' user or leave it blank |

  6. | to auto-generate it. |

  7. | |

  8. | To avoid this message set the environment variable or JVM |

  9. | setting ORIENTDB_ROOT_PASSWORD to the root password to use. |

  10. +---------------------------------------------------------------+

  11. Root password [BLANK=auto generate it]: ********

  12. Please confirm the root password: ********

在完成這些后,OrientDB 數據庫服務器將成功啟動:

  1. INFO OrientDB Server is active v2.2.22 (build fb2b7d321ea8a5a5b18a82237049804aace9e3de). [OServer]

從現在開始,我們需要用第二個終端來與 OrientDB 服務器進行交互。

若要強制停止 OrientDB 執行 Ctrl+C 即可。

配置守護進程

此時,我們可以認為 OrientDB 僅僅是一串 shell 腳本,可以用編輯器打開 /opt/orientdb/bin/orientdb.sh

  1. # $EDITOR /opt/orientdb/bin/orientdb.sh

在它的首段,我們可以看到:

  1. #!/bin/sh

  2. # OrientDB service script

  3. #

  4. # Copyright (c) OrientDB LTD (http://orientdb.com/)

  5. # chkconfig: 2345 20 80

  6. # description: OrientDb init script

  7. # processname: orientdb.sh

  8. # You have to SET the OrientDB installation directory here

  9. ORIENTDB_DIR="YOUR_ORIENTDB_INSTALLATION_PATH"

  10. ORIENTDB_USER="USER_YOU_WANT_ORIENTDB_RUN_WITH"

我們需要配置ORIENTDB_DIR 以及 ORIENTDB_USER.

然后創建一個用戶,例如我們創建一個名為 orientdb 的用戶,我們需要輸入下面的指令:

  1. # useradd -r orientdb -s /sbin/nologin

orientdb 就是我們在 ORIENTDB_USER 處輸入的用戶。

再更改 /opt/orientdb 目錄的所有權:

  1. # chown -R orientdb:orientdb /opt/orientdb

改變服務器配置文件的權限:

  1. # chmod 640 /opt/orientdb/config/orientdb-server-config.xml

下載系統守護進程服務

OrientDB 的壓縮包包含一個服務文件 /opt/orientdb/bin/orientdb.service。我們將其復制到 /etc/systemd/system 文件夾下:

  1. # cp /opt/orientdb/bin/orientdb.service /etc/systemd/system

編輯該服務文件:

  1. # $EDITOR /etc/systemd/system/orientdb.service

其中 [service] 內容塊看起來應該是這樣的:

  1. [Service]

  2. User=ORIENTDB_USER

  3. Group=ORIENTDB_GROUP

  4. ExecStart=$ORIENTDB_HOME/bin/server.sh

將其改成如下樣式:

  1. [Service]

  2. User=orientdb

  3. Group=orientdb

  4. ExecStart=/opt/orientdb/bin/server.sh

保存并退出。

重新加載系統守護進程:

  1. # systemctl daemon-reload

啟動 OrientDB 并使其開機自啟動:

  1. # systemctl start orientdb

  2. # systemctl enable orientdb

確認 OrientDB 的狀態:

  1. # systemctl status orientdb

上述指令應該會輸出:

  1. ● orientdb.service - OrientDB Server

  2. Loaded: loaded (/etc/systemd/system/orientdb.service; disabled; vendor preset: enabled)

  3. Active: active (running) ...

感謝各位的閱讀,以上就是“怎么在Ubuntu16.04上安裝OrientDB”的內容了,經過本文的學習后,相信大家對怎么在Ubuntu16.04上安裝OrientDB這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙州县| 邢台市| 万宁市| 黑水县| 北碚区| 二连浩特市| 兴宁市| 巴林左旗| 曲麻莱县| 拉萨市| 多伦县| 辉县市| 东乡族自治县| 塔城市| 徐汇区| 普定县| 明光市| 瑞安市| 胶州市| 庆安县| 伊吾县| 静海县| 南京市| 康保县| 龙胜| 韩城市| 南乐县| 利津县| 邢台市| 富源县| 石河子市| 冕宁县| 宝山区| 洪江市| 博客| 深水埗区| 湄潭县| 米泉市| 金山区| 长泰县| 彭州市|