製品の起動・停止方法

本製品はOSの起動及び停止と連動して自動的に起動・停止されますが、手動による起動・停止を行いたい場合は、下記の手順に従って操作してください。

EDM マネージャーの手動起動・停止方法

起動方法

  1. 通信用モジュール

    # systemctl start mongod
    # systemctl start tomcat_8060
    # systemctl start tomcat_8080
    # systemctl start tomcat_8430
    # systemctl start ice-message-router
    # systemctl start eep-iot-event-hub
    
  2. EDM コアコンポーネント

    # systemctl start postgresql-14        (データベース)
    # systemctl start edm_messagestore      (メッセージストア)
    # systemctl start edm_inventory         (構成管理)
    # systemctl start edm_dist              (SWリリース管理)
    
  3. Web サーバー

    # systemctl start nginx
    

停止方法

  1. Web サーバー

    # systemctl stop nginx
    
  2. EDM コンポーネント

    # systemctl stop edm_inventory         (構成管理)
    # systemctl stop edm_dist              (SWリリース管理)
    # systemctl stop edm_messagestore      (メッセージストア)
    # systemctl stop postgresql-14        (データベース)
    
  3. 通信用モジュール

    # systemctl stop eep-iot-event-hub
    # systemctl stop ice-message-router
    # systemctl stop tomcat_8430
    # systemctl stop tomcat_8080
    # systemctl stop tomcat_8060
    # systemctl stop mongod   
    

EDMエージェントの手動起動・停止方法

起動方法

  • Linux OS の場合

    # systemctl start ice-core
    
  • Windows OS の場合

    # sc start ice-core
    

停止方法

  • Linux OS の場合

    # systemctl stop ice-core
    
  • Windows OS の場合

    # sc stop ice-core
    

EDMエージェント(プローブ)の手動起動・停止方法

起動方法

# net start edm_collectsrv
# net start edm_collectwmisrv
# sc start ice-core

停止方法

# sc stop ice-core
# net stop edm_collectwmisrv
# net stop edm_collectsrv