automation-suite
2023.10
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
UiPath logo, featuring letters U and I in white
EKS/AKS の Automation Suite のインストール ガイド
Last updated 2024年11月21日

Test Automation SQL の接続文字列は無視されます

説明

SQL 接続文字列を クラスターの orchestrator.testautomation セクション 構成ファイルの場合、 uipathctl バイナリは接続を無視します 文字列に置き換え、代わりに [ orchestrator ] セクションの下の を使用します。 として 次のサンプルは、無視される接続文字列が sql_connection_str パラメーター:
"orchestrator": {
  "testautomation": {
    "enabled": true,
    "sql_connection_str": "Server=tcp:new-sql-server-name,1433;Initial Catalog=new-db;Persist Security Info=False;User Id=test;Password='************';MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Max Pool Size=100;"
  }
}"orchestrator": {
  "testautomation": {
    "enabled": true,
    "sql_connection_str": "Server=tcp:new-sql-server-name,1433;Initial Catalog=new-db;Persist Security Info=False;User Id=test;Password='************';MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Max Pool Size=100;"
  }
}

解決策

この問題に対処するには、次の手順を実行します。
  1. sql_connection_str パラメーターの値として指定した SQL 接続文字列を Base64 エンコードします。
    echo -n "<sql_connection_str under orchestrator.testautomation in cluster config file>" | base64 -decho -n "<sql_connection_str under orchestrator.testautomation in cluster config file>" | base64 -d
  2. 次のコマンドを実行して、 orchestrator-secrets シークレットを編集します。
    kubectl edit secret orchestrator-secrets -n uipathkubectl edit secret orchestrator-secrets -n uipath
  3. シークレットで、 sqlConnectionStringTA パラメーターの値を Base64 でエンコードされた接続文字列の値で更新します。
  4. 接続文字列が正常に更新されたかどうかを確認します 価値:
    kubectl get secret orchestrator-secrets -n uipath -o jsonpath="{.data.sqlConnectionStringTA}" |  base64 --decodekubectl get secret orchestrator-secrets -n uipath -o jsonpath="{.data.sqlConnectionStringTA}" |  base64 --decode
  5. ArgoCD アプリの UI で Orchestrator の [ 詳細] >> [パラメーター] > [値] > [更新] の値>内に移動します

  6. 次のサンプルに示すように、[ connectionStrings ] セクションで、 TestAutomation パラメーターの値を接続文字列のプレーンテキストの値で更新します。
    connectionStrings:
      TestAutomation: <Plain-text value of sql_connection_str under orchestrator.testautomation in cluster config file>connectionStrings:
      TestAutomation: <Plain-text value of sql_connection_str under orchestrator.testautomation in cluster config file>
  • 説明
  • 解決策

このページは役に立ちましたか?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
Uipath Logo White
信頼とセキュリティ
© 2005-2024 UiPath. All rights reserved.