zoukankan      html  css  js  c++  java
  • Configure the test environment to trust the connection RSAT with Dynamics 365

    Configure the test environment to trust the connection

    If your AOS allows for Remote Desktop connections

    After creating the certificate, configure AOS to trust the test automation connection. On a multi-AOS environment, repeat the following steps for all AOS machines.

    1. Open a Remote Desktop connection to the AOS machine.

    2. Open IIS and find AOSService in the list of sites.

      Find AOS in IIS.

    3. Right-click AOSService, then select Explore.

    4. Open and find the file wif.config.

      Open wif.config.

    5. Update the wif.config file by adding a new authority entry, as shown in the following example. Use 127.0.0.1 for the authority name and paste your certificate thumbprint.

      XML
      <issuerNameRegistry type="Microsoft.Dynamics.AX.Security.SharedUtility.AxIssuerNameRegistry, Microsoft.Dynamics.AX.Security.SharedUtility">
          <authority name="CN=127.0.0.1">
              <keys>
                  <add thumbprint="ccbc124d0a119xxxxxxxxxxxxxxxxxxxx841e797" />
              </keys>
                  <validIssuers>
                      <add name="CN=127.0.0.1" />
                  </validIssuers>
          </authority>
      

    If you have no Remote Desktop access to the server

    In cases where your Remote Desktop Protocol (RDP) access is removed, such as Microsoft-managed or self-service type sandboxes, Microsoft will generate the certificate for your environment and have it pre-configured. Follow these steps to retrieve the RSAT certificate and use it using the LCS user interface. For automation, there is information on the Fetch an environment's RSAT certificate in a zip file API reference page.

    1. Under Maintain on your environment details page in Lifecycle Services you'll see two new options.

      • Download RSAT certificate
      • Regenerate RSAT certificate

    Download and regenerate RSAT certificate options.

    Use the Download button to retrieve the certificate bundle as a .zip file.

    1. You'll receive a warning that a clear-text password will be displayed on your screen. You will need the password in subsequent steps. Select Yes to continue.

    2. Copy the clear-text password for later use. You'll see the .zip file has been downloaded. Inside the .zip file is a certificate (.cer) and a personal information exchange (.pfx) file. Unzip the file.

    3. Install the certificate in the local machine's trusted root store:

      • Double-click the certificate (.cer) to open it, and then select Install Certificate.
      • Select local machine, and then browse to the Trusted Root Certification Authorities store to install it in the trusted root store.
    4. Install the pfx file in the local machine's personal store:

      • Double-click the personal information exchange (.pfx) file to open it, and select Local Machine.
      • Enter the password saved in step 2, and browse to the Personal store.
    5. Double-click the certificate file to open it. Browse to the Details tab, and scroll down until you see the Thumbprint section. Select Thumbprint, and note the ID in the text box. Select or paste this thumbprint in RSAT settings. Thumbprint settings.

    You can now run your tests against the environment using this certificate. The certificate will be autorotated by Microsoft before it expires, at which time you will need to download a new version of this certificate starting from step 1 above. For self-service environments, this will be rotated every 60 days during a downtime window that is closest to the expiry. These downtime windows include customer initiated package deployment, and database movement operations that target the environment.

     

  • 相关阅读:
    最短路问题
    树的最小支配集,最小点覆盖与最大独立集
    最近公共祖先(LCA)
    图的生成树
    图的遍历
    图的存储结构
    博客园总算支持Markdown了
    关于VMware(虚拟机) 出现错误时处理办法
    Docker 部署 _实现每日情话 定时推送(apscheduler)
    tkinter + 爬虫 实现影视在线资源系统
  • 原文地址:https://www.cnblogs.com/lingdanglfw/p/15636843.html
Copyright © 2011-2022 走看看