zoukankan      html  css  js  c++  java
  • 原系统中有AD FS , CRM Server ,迁移ADFS 到另一台电脑 , CRM Server用443端口出错

    http://cognettacloud.com/?p=617(转)

    When implementing ADFS to support Internet Facing Deployments (IFD) for CRM 2011 Claims Based Authentication, many administrators will experience an ADFS 503 error when trying the endpoint for both internal CRM and auth within a browser. The error message is usually 503, service not available. A simple IISreset might do the trick but for these cases it will not.

    Previously, the undocumented fix was to use the handlers/FederationMetadata.ashx URL instead of the complete https://internalcrm.domain.com/FederationMetadata/2007–06/FederationMetadata.xml.

    The issue behind why the 503 occurs, is because the URL was previously reserved in the Access Control List (ACL). Because of how the URL’s are reserved (before instead of after installation) and change of bindings and ports will leave the reserve URL already in place for /FederationMetadata/2007-06 etc.

    From the CRM Server (or ADFS for external trust), using an adminstrative command prompt, issue the following command:

    netsh http show urlacl (note: you can also use the > to pipe the output to a text file etc)

    You are looking for the reservations made by ADFS:

    Now delete the old URL reserveration by entering the following command:

    netsh http delete urlacl url=https://+:443/FederationMetadata/2007-06

    The URL has been deleted, you will need to reconfigure Claims Based but clicking on the wizard in the deployment manger again, re-stepping through the same steps (next,next,next etc). Now try the URL again and the ADFS 503 error will be gone!

    Special thanks to Dan Francis @ Microsoft for contiuning to share ADFS tips together. Enjoy.

  • 相关阅读:
    objective-C nil,Nil,NULL 和NSNull的小结
    Calendar控件点击下个月按钮后,本月标记的各个具体天的样式都取消
    如何让Button的Text垂直居中显示
    html基础总结2
    html基础总结1
    html基础总结
    微信空白页获取用户openid
    网址
    网站式更新后台代码
    JavaScriptSerializer引用
  • 原文地址:https://www.cnblogs.com/janmson/p/3108811.html
Copyright © 2011-2022 走看看