設定 Qpid Broker-J

本文件說明如何針對以下項目,設定及覆寫 Edge for Private Cloud 的 apigee-qpidd 元件。在本及較新版本的 Private Cloud 中 Qpid 元件包含 Java 型代理程式 (Broker-J)。如要進一步瞭解 Broker-J,請參閱 Apache Qpid Broker-J

Qpid 管理控制台簡介

您可以透過 Qpid 網路管理控制台。討論主題 使用主控台監控 中的 Qpid 佇列和訊息 監控 Apache Qpid Broker-J

在後續章節中,我們會說明如何 如要管理 Qpid 管理控制台設定,您可以編輯屬性檔案 (又稱設定或 CwC 的程式碼)。

在安裝期間設定 Qpid 管理控制台憑證

如何在安裝過程中設定 Qpid 管理控制台憑證:

  1. 開啟安裝拓撲的 Edge 設定檔。請參閱邊緣設定檔
  2. 設定使用者名稱和密碼憑證變數:
    # silent.conf
    QPID_MGMT_USERNAME=USERNAME
    QPID_MGMT_PASSWORD=PASSWORD
  3. 執行設定指令碼:
    /opt/apigee/apigee-setup/bin/setup.sh -p qs -f configFile

修改 Qpid 管理控制台憑證

如何在安裝後修改 Qpid 管理控制台憑證:

  1. 建立暫存檔案並設定下列變數。(您也可以使用原本的 設定檔)。
    # silent.conf
    QPID_MGMT_USERNAME=USERNAME
    QPID_MGMT_PASSWORD=PASSWORD
  2. 執行下列指令:
    apigee-service apigee-qpidd set_management_credentials -f CONFIG_FILE
  3. 重新啟動 Qpid 代理程式:
    apigee-service apigee-qpidd restart
  4. 在每個 Qpid 節點重複上述步驟,一次一個。

覆寫預設的 Qpid 代理程式設定

  1. 建立或編輯下列檔案
    APIGEE_ROOT/customer/application/qpidd.properties
  2. 視需要新增、移除或修改設定。以下範例修改了 管理憑證和預設入口網站號碼:
    # Example for modifying management credentials and port.
    
    conf_qpidd_qpid.authenticationproviders.users.name=username
    conf_qpidd_qpid.authenticationproviders.users.password=pass123
    
    # Example for setting the management portal port. Default is 8090.
      
    conf_qpidd_qpid.ports.http_port=10001
  3. 儲存變更,並確保檔案為 apigee 使用者所擁有且可讀取:
    chown apigee:apigee APIGEE_ROOT/customer/application/qpidd.properties
  4. 重新啟動 qpidd 程序:
    apigee-service apigee-qpidd restart