重設 Edge 密碼

私有雲 v4.19.01 的邊緣

安裝完成後,您可以重設下列密碼:

以下各節將提供重設每個密碼的操作說明。

重設 OpenLDAP 密碼

重設 OpenLDAP 密碼的方式取決於您的設定。視您的 Edge 設定而定,OpenLDAP 的安裝方式可能如下:

  • 安裝在管理伺服器節點上的 OpenLDAP 執行個體。例如:在 2 個節點、5 個節點或 9 個節點邊緣的邊緣設定中。
  • 安裝在管理伺服器節點上的多個 OpenLDAP 執行個體,已設定 OpenLDAP 複製功能。例如,在 12 個節點邊緣設定中。
  • 在自己的節點上安裝多個 OpenLDAP 執行個體,已設定 OpenLDAP 複製功能。例如,在 13 個節點邊緣設定中。

針對安裝在管理伺服器上的單一 OpenLDAP 執行個體,執行下列操作:

  1. 在管理伺服器節點中執行下列指令,建立新的 OpenLDAP 密碼:
    /opt/apigee/apigee‑service/bin/apigee‑service apigee‑openldap 
      change‑ldap‑password ‑o OLD_PASSWORD ‑n NEW_PASSWORD
  2. 執行下列指令來儲存新密碼供管理伺服器存取:
    /opt/apigee/apigee‑service/bin/apigee‑service edge‑management‑server 
      store_ldap_credentials ‑p NEW_PASSWORD

    這個指令會重新啟動管理伺服器。

已安裝在管理伺服器節點的 OpenLDAP 節點的 OpenLDAP 複製設定中,按照上述兩個管理伺服器節點的步驟操作,以便更新密碼。

OpenLDAP 複製設定 (採用 OpenLDAP 執行於管理伺服器以外的節點) 中,請務必先變更 OpenLDAP 節點和兩個管理伺服器節點的密碼。

重設系統管理員密碼

重設系統管理員密碼時,您必須在下列兩個地方重設密碼:

  • 管理伺服器
  • UI

如何重設系統管理員密碼:

  1. 編輯您用來安裝 Edge UI 的無訊息設定檔,設定下列屬性:
    APIGEE_ADMINPW=NEW_PASSWORD
    SMTPHOST=smtp.gmail.com
    SMTPPORT=465
    SMTPUSER=foo@gmail.com
    SMTPPASSWORD=bar
    SMTPSSL=y
    SMTPMAILFROM="My Company <myco@company.com>"

    請注意,傳送新密碼時,您必須加入 SMTP 屬性,因為系統會重設使用者介面中的所有屬性。

  2. 在 UI 節點上,停止 Edge UI:
    /opt/apigee/apigee-service/bin/apigee-service edge-ui stop
  3. 透過 apigee-setup 公用程式,從設定檔重設 Edge UI 的密碼:
    /opt/apigee/apigee-setup/bin/setup.sh -p ui -f configFile
  4. (僅限 UI 上已啟用 TLS) 請參閱設定管理 UI 的 TLS 一文,在 Edge UI 上重新啟用 TLS。
  5. 在管理伺服器上,建立新的 XML 檔案。在這個檔案中,將使用者 ID 設為「admin」,然後採用以下格式定義密碼、名字、姓氏和電子郵件地址:
    <User id="admin">
      <Password><![CDATA[password]]></Password>
      <FirstName>first_name</FirstName>
      <LastName>last_name</LastName>
      <EmailId>email_address</EmailId>
    </User>
  6. 在管理伺服器上執行下列指令:
    curl ‑u "admin_email_address:admin_password" ‑H \ 
      "Content‑Type: application/xml" ‑H "Accept: application/json" ‑X POST \ 
      "http://localhost:8080/v1/users/admin_email_address" ‑d @your_data_file

    其中 your_data_file 是您在上一個步驟中建立的檔案。

    Edge 會在管理伺服器上更新管理員密碼。

  7. 刪除您建立的 XML 檔案。請勿以明文永久儲存密碼。

如果在有多個管理伺服器的 OpenLDAP 複製環境中,重設一個管理伺服器的密碼,系統就會自動更新其他管理伺服器。不過,您必須分別更新所有 Edge UI 節點。

重設機構使用者密碼

如要重設機構使用者的密碼,請使用 apigee-servce 公用程式叫用 apigee-setup,如以下範例所示:

/opt/apigee/apigee-service/bin/apigee-service apigee-setup reset_user_password
  [-h]
  [-u USER_EMAIL]
  [-p USER_PWD]
  [-a ADMIN_EMAIL]
  [-P APIGEE_ADMINPW]
  [-f configFile]

例如:

/opt/apigee/apigee‑service/bin/apigee‑service apigee‑setup reset_user_password 
  ‑u user@myCo.com ‑p Foo12345 ‑a admin@myCo.com ‑P adminPword
cp ~/Documents/tmp/hybrid_root/apigeectl_beta2_a00ae58_linux_64/README.md 
  ~/Documents/utilities/README.md

以下示範與「-f」選項搭配使用的設定檔範例:

USER_NAME=user@myCo.com
USER_PWD="Foo12345"
APIGEE_ADMINPW=ADMIN_PASSWORD

您也可以使用 Update user API 來變更使用者密碼。

SysAdmin 和機構使用者密碼規則

請在這個部分為 API 管理使用者強制執行指定的密碼長度和強度。設定會使用一系列預先設定 (且不重複的編號) 規則運算式來檢查密碼內容 (例如大寫、小寫、數字和特殊字元)。將這些設定寫入 /opt/apigee/customer/application/management-server.properties 檔案。如果該檔案不存在,請建立一個。

編輯 management-server.properties 後,重新啟動管理伺服器:

/opt/apigee/apigee-service/bin/apigee-service edge-management-server restart

然後您可以將不同的規則運算式組合分組,藉此設定密碼強度評分。舉例來說,您可以判定至少有一個大寫與一個小寫英文字母的密碼獲得「3」強度評分,但密碼至少要有一個小寫英文字母和一個數字,可獲得較高的評分「4」。

屬性 說明
conf_security_password.validation.minimum.password.length=8
conf_security_password.validation.default.rating=2
conf_security_password.validation.minimum.rating.required=3

用於判斷有效密碼的整體特性。密碼強度的預設最低評分為 3 (請參考下表)。

請注意,password.validation.default.rating=2 低於規定的最低評分,這表示如果輸入的密碼不符合您設定的規則,則該密碼將為 2 評分,因此為無效 (低於 3 個下限)。

以下為識別密碼特性的規則運算式,請注意,每個值都有編號。例如,password.validation.regex.5=... 是運算式編號 5。您將在檔案的後續部分中使用這些數字,設定用來決定整體密碼強度的不同組合。

conf_security_password.validation.regex.1=^(.)\\1+$

1:所有字元都重複

conf_security_password.validation.regex.2=^.*[a-z]+.*$

2:至少有一個小寫字母

conf_security_password.validation.regex.3=^.*[A-Z]+.*$

3:至少 1 個大寫字母

conf_security_password.validation.regex.4=^.*[0-9]+.*$

4:至少 1 個數字

conf_security_password.validation.regex.5=^.*[^a-zA-z0-9]+.*$

5:至少一個特殊字元 (不含底線 _)

conf_security_password.validation.regex.6=^.*[_]+.*$

6:至少一個底線

conf_security_password.validation.regex.7=^.*[a-z]{2,}.*$

7:超過一個小寫字母

conf_security_password.validation.regex.8=^.*[A-Z]{2,}.*$

8:超過一個大寫字母

conf_security_password.validation.regex.9=^.*[0-9]{2,}.*$

9:多位數

conf_security_password.validation.regex.10=^.*[^a-zA-z0-9]{2,}.*$

10:多個特殊字元 (不含底線)

conf_security_password.validation.regex.11=^.*[_]{2,}.*$

11:超過 1 個底線

下列規則會根據密碼內容決定密碼強度。 每項規則都包含前一節中的一或多個規則運算式,並為規則指派強度數值。密碼的數值強度會與這個檔案頂端的 conf_security_password.validation.minimum.rating.required 數字進行比較,藉此判斷密碼是否有效。

conf_security_password.validation.rule.1=1,AND,0
conf_security_password.validation.rule.2=2,3,4,AND,4
conf_security_password.validation.rule.3=2,9,AND,4
conf_security_password.validation.rule.4=3,9,AND,4
conf_security_password.validation.rule.5=5,6,OR,4
conf_security_password.validation.rule.6=3,2,AND,3
conf_security_password.validation.rule.7=2,9,AND,3
conf_security_password.validation.rule.8=3,9,AND,3

每項規則都有編號。舉例來說,password.validation.rule.3=... 是規則編號 3。

每項規則使用下列格式 (位於等號右側):

regex-index-list,[AND|OR],rating

regex-index-list 是規則運算式的清單 (依照上一節中的數字計算),以及 AND|OR 運算子 (亦即考慮全部或任何列出的運算式)。

rating 是每項規則的強度評分。

舉例來說,規則 5 表示只要密碼至少有一個特殊字元,「或」一個底線獲得強度評分為 4。檔案頂端有 password.validation.minimum.rating.required=3 時,評分為 4 分的密碼才有效。

conf_security_rbac.password.validation.enabled=true

如果已啟用單一登入 (SSO),請將角色型存取權控管密碼驗證設為 false。預設值為 true。

重設 Cassandra 密碼

根據預設,Cassandra 出貨時會停用驗證功能。如果啟用驗證功能,系統會使用名為「cassandra」的預先定義使用者,並提供密碼為「cassandra」。您可以使用這個帳戶、為這個帳戶設定其他密碼,或是建立新的 Cassandra 使用者。使用 Cassandra CREATE/ALTER/DROP USER 陳述式新增、移除及修改使用者。

如要瞭解如何啟用 Cassandra 驗證,請參閱啟用 Cassandra 驗證

如要重設 Cassandra 密碼,您必須:

  • 在任何 Cassandra 節點上設定密碼,該密碼就會廣播到環環中的所有 Cassandra 節點
  • 使用新密碼更新每個節點上的管理伺服器、訊息處理器、路由器、Qpid 伺服器和 Postgres 伺服器

詳情請參閱 http://www.datastax.com/documentation/cql/3.0/cql/cql_reference/cqlCommandsTOC.html

如何重設 Cassandra 密碼:

  1. 使用 cqlsh 工具和預設憑證登入任一 Cassandra 節點。您只需要變更一個 Cassandra 節點的密碼,該節點就會廣播到環環中的所有 Cassandra 節點:
    /opt/apigee/apigee-cassandra/bin/cqlsh cassIP 9042 -u cassandra -p cassandra

    在此情況下:

    • cassIP 是 Cassandra 節點的 IP 位址。
    • 9042 是 Cassandra 通訊埠。
    • 預設使用者為 cassandra
    • 預設密碼為 cassandra。如果之前變更過密碼,請使用目前的密碼。
  2. cqlsh> 提示中執行下列指令,以更新密碼:
    ALTER USER cassandra WITH PASSWORD 'NEW_PASSWORD';

    如果新密碼含有單引號字元,請在該密碼前面加上一個半形引號字元來逸出。

  3. 退出 cqlsh 工具:
    exit
  4. 在 Management Server 節點中,執行下列指令:
    /opt/apigee/apigee-service/bin/apigee-service edge-management-server store_cassandra_credentials -u CASS_USERNAME -p CASS_PASSWORD

    您也可以選擇將檔案傳遞到包含新使用者名稱和密碼的指令:

    apigee-service edge-management-server store_cassandra_credentials -f configFile

    其中 configFile 包含下列內容:

    CASS_USERNAME=CASS_USERNAME
    CASS_PASSWORD=CASS_PASSWROD

    這個指令會自動重新啟動管理伺服器。

  5. 重複步驟 4:
    • 所有訊息處理器
    • 所有路由器
    • 所有 Qpid 伺服器 (edge-qpid-server)
    • Postgres 伺服器 (edge-postgres-server)

Cassandra 密碼現已變更。

重設 PostgreSQL 密碼

根據預設,PostgreSQL 資料庫定義了兩位使用者:「postgres」和「apigee」。雙方的預設密碼皆為「postgres」。請使用以下程序變更預設密碼。

變更所有 Postgres 主要節點的密碼。如果您之前在主要/待命模式下設定了兩個 Postgres 伺服器,則只需要變更主要節點上的密碼。詳情請參閱設定 Postgres 的主要待命複製功能一文。

  1. 在 Master Postgres 節點上,將目錄變更為 /opt/apigee/apigee-postgresql/pgsql/bin
  2. 設定 PostgreSQL「postgres」使用者密碼:
    1. 使用以下指令登入 PostgreSQL 資料庫:
      psql -h localhost -d apigee -U postgres
    2. 系統顯示提示時,輸入現有的「postgres」使用者密碼,例如「postgres」。
    3. 在 PostgreSQL 命令提示字元中,輸入下列指令以變更預設密碼:
      ALTER USER postgres WITH PASSWORD 'new_password';

      成功時,PostgreSQL 回應以下內容:

      ALTER ROLE
    4. 使用下列指令退出 PostgreSQL 資料庫:
      \q
  3. 設定 PostgreSQL「apigee」使用者密碼:
    1. 使用以下指令登入 PostgreSQL 資料庫:
      psql -h localhost -d apigee -U apigee
    2. 系統顯示提示時,輸入「apigee」使用者密碼,並加上「postgres」。
    3. 在 PostgreSQL 命令提示字元中,輸入下列指令以變更預設密碼:
      ALTER USER apigee WITH PASSWORD 'new_password';
    4. 使用下列指令退出 PostgreSQL 資料庫:
      \q

    您可以將「postgres」和「apigee」使用者的密碼設為相同值或不同的值。

  4. 設定 APIGEE_HOME
    export APIGEE_HOME=/opt/apigee/edge-postgres-server
  5. 加密新密碼:
    sh /opt/apigee/edge-postgres-server/utils/scripts/utilities/passwordgen.sh new_password

    這個指令會傳回已加密的密碼。加密密碼的開頭為「:」字元,但不包含「:」。舉例來說,「apigee1234」的加密密碼為:

    Encrypted string:WheaR8U4OeMEM11erxA3Cw==
  6. 使用新的加密密碼來更新「postgres」和「apigee」使用者的密碼。
    1. 在管理伺服器上,將目錄變更為 /opt/apigee/customer/application
    2. 編輯 management-server.properties 檔案以設定下列屬性。如果這個檔案不存在,請建立檔案。
    3. 確認檔案為「apigee」的擁有者:
      chown apigee:apigee management-server.properties
  7. 使用新的加密密碼更新所有 Postgres 伺服器和 Qpid Server 節點。
    1. 在 Postgres Server 或 Qpid Server 節點上,變更為下列目錄:
      /opt/apigee/customer/application
    2. 開啟下列檔案進行編輯:
      • postgres-server.properties
      • qpid-server.properties

      如果這些檔案不存在,請自行建立。

    3. 在檔案中加入下列屬性:
      • conf_pg-agent_password=newEncryptedPasswordForPostgresUser
      • conf_pg-ingest_password=newEncryptedPasswordForPostgresUser
      • conf_query-service_pgDefaultPwd=newEncryptedPasswordForPostgresUser
      • conf_query-service_dwDefaultPwd=newEncryptedPasswordForPostgresUser
      • conf_analytics_aries.pg.password=newEncryptedPasswordForPostgresUser
    4. 確認檔案為「apigee」使用者擁有:
      chown apigee:apigee postgres-server.properties
      chown apigee:apigee qpid-server.properties
  8. 更新單一登入 (SSO) 元件 (如果已啟用單一登入):
    1. 連線至或登入執行 apigee-sso 元件的節點。也稱為「SSO 伺服器」

      在 AIO 或 3 節點安裝作業中,這個節點與管理伺服器相同。

      如果您有多個節點執行 apigee-sso 元件,則必須在每個節點上執行這些步驟。

    2. 開啟下列檔案進行編輯:
      /opt/apigee/customer/application/sso.properties 

      如果檔案不存在,請建立一個。

    3. 在檔案中新增下列程式碼:
      conf_uaa_database_password=new_password_in_plain_text

      例如:

      conf_uaa_database_password=apigee1234
    4. 執行下列指令,將設定變更套用至 apigee-sso 元件:
      /opt/apigee/apigee-service/bin/apigee-service apigee-sso configure
    5. 為每個單一登入 (SSO) 伺服器重複執行上述步驟。
  9. 依照下列順序重新啟動下列元件:
    1. PostgreSQL 資料庫:
      /opt/apigee/apigee-service/bin/apigee-service apigee-postgresql restart
    2. Qpid 伺服器:
      /opt/apigee/apigee-service/bin/apigee-service edge-qpid-server restart
    3. Postgres 伺服器:
      /opt/apigee/apigee-service/bin/apigee-service edge-postgres-server restart
    4. 管理伺服器:
      /opt/apigee/apigee-service/bin/apigee-service edge-management-server restart
    5. SSO 伺服器:
      /opt/apigee/apigee-service/bin/apigee-service apigee-sso restart