Ubuntu 21.10にArangoDB3.8.4をインストールする

環境情報
# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=21.10
DISTRIB_CODENAME=impish
DISTRIB_DESCRIPTION="Ubuntu 21.10″

インストールの方法
1.ArangoDBの最新バージョンを確認します
https://www.arangodb.com/download-major/ubuntu/

2.必要なパッケージをインストールします
# sudo apt install curl apt-transport-https

3.GPGキーをダウンロードします

# curl -OL https://download.arangodb.com/arangodb38/DEBIAN/Release.key

4.システムにGPGキーを追加します

# sudo apt-key add - < Release.key

5.リポジトリを追加します

# echo 'deb https://download.arangodb.com/arangodb38/DEBIAN/ /' | sudo tee /etc/apt/sources.list.d/arangodb.list
deb https://download.arangodb.com/arangodb38/DEBIAN/ /

6.パッケージをアップデート
# sudo apt update

7.ArangoDBをインストールします
# sudo apt install arangodb3=3.8.4-1

「arrangodb3を設定します」画面が表示されます。
「password for the ArangoDb"root" user:」欄にパスワードを入力します
「Repeat passwrd for the ArangoDb “root" user:」欄に確認パスワードを入力します
「Automatically upgrade database files」->「はい」を押下します。

Database files are up-to-date.
Created symlink /etc/systemd/system/multi-user.target.wants/arangodb3.service → /lib/systemd/system/arangodb3.service.
man-db (2.9.4-2) のトリガを処理しています …

8. ArangoDBのステータスを確認します
# sudo systemctl status arangodb3
● arangodb3.service – ArangoDB database server
Loaded: loaded (/lib/systemd/system/arangodb3.service; enabled; vendor pre>
Active: active (running) since Sat 2021-12-11 04:40:00 PST; 33min ago

9.Firewallを設定します
8529ポートを開放します
# sudo ufw allow 8529
ルールをアップデートしました
ルールをアップデートしました(v6)

# ufw enable
Command may disrupt existing ssh connections. Proceed with operation (y|n)? y
ファイアウォールはアクティブかつシステムの起動時に有効化されます。
# sudo ufw reload
ファイアウォールを再読込しました
# sudo ufw status

10.ArangoDBにアクセス
サーバーアドレス:8529 にアクセスします

Ubuntu 21.10

Posted by arkgame