Skip To Content

GeoEvent Server のインストール

ArcGIS GeoEvent Server のインストール手順は次のとおりです。

インストールには、次の前提条件があります。

  1. インストール メディアを使用している場合、コンテンツはすでに <media_drive>:/GeoEvent/ にあるため、この手順は省略して、以下のステップ 2 に進むことができます。

    GeoEvent Server パッケージの *.tar.gz ファイルをダウンロードした場合、ファイルを解凍します。

    For example: $ tar -zxvf ArcGIS_GeoEvent_*.tar.gz
  2. (オプション) GeoEvent Simulator を使用する予定の場合、これは Windows でのみ動作するため、GeoEventSimulator.exe ファイルを Windows コンピューターにコピーする必要があります。このファイルは、次のいずれかの場所にあります。
    • インストール メディアを使用している場合: <media_drive>:/GeoEvent/Support/
    • 英語版のパッケージ ファイルをダウンロードした場合: ./ArcGISGeoEvent/Support/
    • 英語版以外のパッケージ ファイルをダウンロードした場合: ./ArcGISGeoEvent_<LANGUAGE>/Support/
  3. Setup.sh を実行して、GeoEvent Server をインストールします。
    $ ./ArcGISGeoEvent/Setup.sh
    For non-English setups: $ ./ArcGISGeoEvent_<LANGUAGE>/Setup.sh
  4. GeoEvent Server ソフトウェア認証ツールを実行して、ArcGIS Server をライセンス認証します。
    $ <arcgis-server-install-location>/tools/authorizeSoftware
    For example: $ ~/arcgis/server/tools/authorizeSoftware
  5. 以下の該当する手順に従って、オペレーティング システムで起動する GeoEvent Server を構成します。
    備考:

    sudo が参照されている場合、代わりに root でログインしてコマンドを実行できます。

    $ sudo su root OR 
    $ su root OR
    $ su
    • RHEL 7.x 以上:
    1. Linux Daemon をインストールします。
      $ sudo cp <arcgis-server-install-location>/GeoEvent/gateway/etc/service/geoeventGateway.service /etc/systemd/system For example: $ sudo cp ~/arcgis/server/GeoEvent/gateway/etc/service/geoeventGateway.service /etc/systemd/system
      $ sudo cp <arcgis-server-install-location>/GeoEvent/etc/service/geoevent.service /etc/systemd/system 
      For example: $ sudo cp ~/arcgis/server/GeoEvent/etc/service/geoevent.service /etc/systemd/system
    2. コンピューターを再起動すると、GeoEvent Server および Gateway デーモンが自動的に開始されます。
      $ sudo systemctl enable geoeventGateway.service
      $ sudo systemctl enable geoevent.service
    3. GeoEvent Server および Gateway デーモンを開始します。
      $ sudo systemctl start geoeventGateway.service
      $ sudo systemctl start geoevent.service
    4. (オプション) GeoEvent Server および Gateway デーモンを停止します。
      $ sudo systemctl stop geoeventGateway.service
      $ sudo systemctl stop geoevent.service
    5. (オプション) GeoEvent Server および Gateway デーモンのステータスを確認します。
      $ systemctl status geoeventGateway.service
      $ systemctl status geoevent.service
    • RHEL 6.x:
    1. Linux Daemon をインストールします。
      $ cd <arcgis-server-install-location>/GeoEvent/bin For example: $ cd ~/arcgis/server/GeoEvent/bin
      $ sudo ln -s <arcgis-server-install-location>/GeoEvent/gateway/bin/ArcGISGeoEventGateway-service /etc/init.d/
      For example: $ sudo ln -s ~/arcgis/server/GeoEvent/gateway/bin/ArcGISGeoEventGateway-service /etc/init.d/
      $ sudo ln -s <arcgis-server-install-location>/GeoEvent/bin/ArcGISGeoEvent-service /etc/init.d/
      For example: $ sudo ln -s ~/arcgis/server/GeoEvent/bin/ArcGISGeoEvent-service /etc/init.d/
      $ sudo chkconfig --add ArcGISGeoEventGateway-service
      $ sudo chkconfig --add ArcGISGeoEvent-service
    2. コンピューターを再起動すると、GeoEvent Server および Gateway デーモンが自動的に開始されます。
      $ sudo chkconfig ArcGISGeoEventGateway-service on
      $ sudo chkconfig ArcGISGeoEvent-service on
    3. GeoEvent Server および Gateway デーモンを開始します。
      $ service ArcGISGeoEventGateway-service start
      $ service ArcGISGeoEvent-service start
    4. (オプション) GeoEvent Server および Gateway デーモンを停止します。
      $ service ArcGISGeoEventGateway-service stop
      $ service ArcGISGeoEvent-service stop
    5. (オプション) GeoEvent Server および Gateway デーモンのステータスを確認します。
      $ service ArcGISGeoEventGateway-service status
      $ service ArcGISGeoEvent-service status
    • SUSE
    1. Linux Daemon をインストールします。
      $ cd <arcgis-server-install-location>/GeoEvent/bin For example: $ cd ~/arcgis/server/GeoEvent/bin
      Switch to root user:
      $ su
      $ ln -s <arcgis-server-install-location>/GeoEvent/gateway/bin/ArcGISGeoEventGateway-service /etc/init.d/
      For example: $ ln -s ~/arcgis/server/GeoEvent/gateway/bin/ArcGISGeoEvent-service /etc/init.d/
      $ ln -s <arcgis-server-install-location>/GeoEvent/bin/ArcGISGeoEvent-service /etc/init.d/
      For example: $ ln -s ~/arcgis/server/GeoEvent/bin/ArcGISGeoEvent-service /etc/init.d/
      $ insserv ArcGISGeoEventGateway-service
      $ chkconfig ArcGISGeoEventGateway-service
      $ insserv ArcGISGeoEvent-service
      $ chkconfig ArcGISGeoEvent-service
    2. コンピューターを再起動すると、GeoEvent Server および Gateway デーモンが自動的に開始されます。
      Still as root user:
      $ chkconfig ArcGISGeoEventGateway-service on
      End the root user session
      Still as root user:
      $ chkconfig ArcGISGeoEvent-service on
      End the root user session
    3. GeoEvent Server および Gateway デーモンを開始します。
      $ /etc/init.d/ArcGISGeoEventGateway-service start
      $ /etc/init.d/ArcGISGeoEvent-service start
    4. (オプション) GeoEvent Server および Gateway デーモンを停止します。
      $ /etc/init.d/ArcGISGeoEventGateway-service stop
      $ /etc/init.d/ArcGISGeoEvent-service stop
    5. (オプション) GeoEvent Server および Gateway デーモンのステータスを確認します。
      $ /etc/init.d/ArcGISGeoEventGateway-service status
      $ /etc/init.d/ArcGISGeoEvent-service status
    • Ubuntu Server 16.04.x LTS 以上:
    1. Linux Daemon をインストールします。
      $ sudo cp <arcgis-server-install-location>/GeoEvent/gateway/etc/service/geoeventGateway.service /etc/systemd/system For example: $ sudo cp ~/arcgis/server/GeoEvent/gateway/etc/service/geoeventGateway.service /etc/systemd/system
      $ sudo cp <arcgis-server-install-location>/GeoEvent/etc/service/geoevent.service /etc/systemd/system 
      For example: $ sudo cp ~/arcgis/server/GeoEvent/etc/service/geoevent.service /etc/systemd/system
    2. コンピューターを再起動すると、GeoEvent Server および Gateway デーモンが自動的に開始されます。
      $ sudo systemctl enable geoeventGateway.service
      $ sudo systemctl enable geoevent.service
    3. GeoEvent Server および Gateway デーモンを開始します。
      $ sudo systemctl start geoeventGateway.service
      $ sudo systemctl start geoevent.service
    4. (オプション) GeoEvent Server および Gateway デーモンを停止します。
      $ sudo systemctl stop geoeventGateway.service
      $ sudo systemctl stop geoevent.service
    5. (オプション) GeoEvent Server および Gateway デーモンのステータスを確認します。
      $ systemctl status geoeventGateway.service
      $ systemctl status geoevent.service
    • Ubuntu Server 12.04.x LTS:
    1. Linux Daemon をインストールします。
      $ cd <arcgis-server-install-location>/GeoEvent/bin For example: $ cd /arcgis/server/GeoEvent/bin
      $ sudo ln -s <arcgis-server-install-location>/GeoEvent/gateway/etc/service/ArcGISGeoEventGateway-service /etc/init.d/
      For example: $ sudo ln -s /arcgis/server/GeoEvent/gateway/etc/service/ArcGISGeoEventGateway-service /etc/init.d/
      $ sudo ln -s <arcgis-server-install-location>/GeoEvent/bin/ArcGISGeoEvent-service /etc/init.d/
      For example: $ sudo ln -s /arcgis/server/GeoEvent/bin/ArcGISGeoEvent-service /etc/init.d/
    2. コンピューターを再起動すると、GeoEvent Server および Gateway デーモンが自動的に開始されます。
      $ sudo update-rc.d ArcGISGeoEventGateway-service defaults
      $ sudo update-rc.d ArcGISGeoEvent-service defaults
    3. GeoEvent Server および Gateway デーモンを開始します。
      $ service ArcGISGeoEventGateway-service start
      $ service ArcGISGeoEvent-service start
    4. (オプション) GeoEvent Server および Gateway デーモンを停止します。
      $ service ArcGISGeoEventGateway-service stop
      $ service ArcGISGeoEvent-service stop
    5. (オプション) GeoEvent Server および Gateway デーモンのステータスを確認します。
      $ service ArcGISGeoEventGateway-service status
      $ service ArcGISGeoEvent-service status

オプション: Internet Explorer によって信頼された自己署名 GeoEvent Server 証明書としてマークする」に進みます。