IBM Enterprise Records, 版本 5.1.+              

選擇性地新增 SSL 的支援(具有 SSL 重新導向的 CMA)

如果 IBM® Enterprise Records Web 應用程式自動配置了「儲存器管理程式鑑別 (CMA)」選項,且您想要搭配重新導向選項來使用 Secure Socket Layer (SSL),視應用程式伺服器而定,請執行下列程序,通過更新 web.xml 檔來啟用 IBM Enterprise Records Web 應用程式的 SSL。 完整 SSL 環境不需要這些步驟。

  1. WebSphere:修改 ier_install_path/RecordsManager/WEB-INF 目錄中的 web.xml 檔:
    1. 建立 web.xml 檔的備份副本。 預設檔案位置如下:
      ier_install_path/RecordsManager/WEB-INF/web.xml
    2. 複製 <security_constraint> 區段,如下一步所示,並將新複製的區段直接貼在原始區段之後。
    3. 變更新插入的 <security_constraint> 區段,如下所示(以粗體表示變更): 變更自:
      <security-constraint>
        	<web-resource-collection>
            <web-resource-name>action</web-resource-name>
            <description>Define the container secured resource</description>
            <url-pattern>/</url-pattern>
            <url-pattern>/*</url-pattern>
      		</web-resource-collection>
        	<auth-constraint>
            <role-name>All Authenticated</role-name>
        	</auth-constraint>
        	<user-data-constraint>
            <description>User data constraints</description>
            <transport-guarantee>NONE</transport-guarantee>
        	</user-data-constraint>
      </security-constraint>
      變更為:
      <security-constraint>
        <web-resource-collection>
          <web-resource-name>action</web-resource-name>
            <description>Define the container secured resource</description>
            <url-pattern>ContainerLogin.jsp</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <role-name>All Authenticated</role-name>
        </auth-constraint>
        <user-data-constraint>
            <description>User data constraints</description>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
      </security-constraint>
      這項變更也會移除第二次出現的這一行:
      <url-pattern>/*</url-pattern>
    4. 將變更儲存至 web.xml 檔案。
  2. WebLogic 和 JBoss:修改 <ier_install_path>/RecordsManager/WEB-INF 目錄中的 web.xml 檔:
    1. 建立 web.xml 檔的備份副本。 預設檔案位置如下:
      ier_install_path/RecordsManager/WEB-INF/web.xml
    2. <security_constraint> 區段中,變更參數如下,從
      <user-data-constraint>
          <description>User data constraints</description>
          <transport-guarantee>NONE</transport-guarantee>
      </user-data-constraint>
      變更為:
      <user-data-constraint>
          <description>User data constraints</description>
          <transport-guarantee>CONFIDENTIAL</transport-guarantee>
      </user-data-constraint>
    3. 將變更儲存至 web.xml 檔。


意見

前次更新: 2011 年 8 月


© Copyright IBM Corp. 2011.
此資訊中心採用 Eclipse 技術。(http://www.eclipse.org)