AllegroGraphのQuick Start

Ubuntu に agraph-7.3.1-linuxamd64.64.tar.gz がダウンロードされたら,Quick Start の手順にしたがって圧縮ファイルを解凍し,ローカル・サーバーとして AllegroGraph をインストールし起動する。

以下の実例では
1)tar zxf <圧縮ファイル名> として圧縮ファイルを解凍し
2)新しくできた agraph-7.3.1 にある install-agraph スクリプトを実行してホームディレクトリ直下に
  ag ディレクトリを作成してそこに AllegroGraph をインストールし
3)インストールされた AllegroGraph を起動している.

インストール時にいろいろな設定値が質問されるが,以下の実例ではAllegroGraph の superuser 名とそのパスワードのみを独自設定し、それ以外はすべて Enter のみで規定値にしていることを注意しておく.

To run a command as administrator (user "root"), use "sudo ".
See "man sudo_root" for details.

seiji@seijiBiGPC:~$ ls
agraph-7.3.1-linuxamd64.64.tar.gz  agraph-7.3.1-linuxamd64.64.tar.gz:Zone.Identifier
seiji@seijiBiGPC:~$ tar zxf agraph-7.3.1-linuxamd64.64.tar.gz
seiji@seijiBiGPC:~$ ls
agraph-7.3.1  agraph-7.3.1-linuxamd64.64.tar.gz  agraph-7.3.1-linuxamd64.64.tar.gz:Zone.Identifier
seiji@seijiBiGPC:~$ agraph-7.3.1/install-agraph ~/ag

Welcome to the AllegroGraph configuration program.  This script will
help you establish a baseline AllegroGraph configuration.

You will be prompted for a few settings.  In most cases, you can hit return
to accept the default value.

Location of configuration file to create:
[/home/seiji/ag/lib/agraph.cfg]:
Directory to store data and settings:
[/home/seiji/ag/data]:
/home/seiji/ag/data does not exist.
Would you like me to create it?:
[y]:
Directory to store log files:
[/home/seiji/ag/log]:
/home/seiji/ag/log does not exist.
Would you like me to create it?:
[y]:
Location of file to write server process id:
[/home/seiji/ag/data/agraph.pid]:
Port:
[10035]:

Now you must set up an initial user account for AllegroGraph.  This
account will have "super user" privileges in AllegroGraph.

SuperUser account name:
[super]: seiji
SuperUser account password:
SuperUser account password (again):
Instance timeout seconds:
[604800]:

/home/seiji/ag/lib/agraph.cfg has been created.

If desired, you may modify the configuration.  When you are satisfied,
you may start the agraph service.

You can start AllegroGraph by running:
/home/seiji/ag/bin/agraph-control --config /home/seiji/ag/lib/agraph.cfg start

You can stop AllegroGraph by running:
/home/seiji/ag/bin/agraph-control --config /home/seiji/ag/lib/agraph.cfg stop
Removing staged installations from all hosts.
Installation complete.
seiji@seijiBiGPC:~$ ag/bin/agraph-control --config ag/lib/agraph.cfg start

AllegroGraph Server Edition 7.3.1 (rc1), built on December 06, 2022 10:29:22 GMT-0800
Copyright (c) 2005-2022 Franz Inc.  All Rights Reserved.
AllegroGraph contains patented and patent-pending technologies.
AllegroGraph build 8bfd74c2e

Current time: Sunday, May 14, 2023 07:44:09 PM

Daemonizing...
Server started normally:
Running with free license of 5,000,000 triples; no-expiration.
Access AGWebView at http://127.0.0.1:10035
seiji@seijiBiGPC:~$

最後に ag/bin/agraph-control –config ag/lib/agraph.cfg start を実行して,Daemonizing… / Server started normally: が印刷されれば,起動成功である.

Windows 環境に戻って任意のブラウザで http://localhost:10035 にアクセスしてみよう.AllegroGraph の最初の画面が見えるはずである.