IBM® Enterprise
Records 웹
애플리케이션이 CMA(Container Manager Authentication) 옵션을 사용하여
자동으로 구성된 경우 경로 재지정 옵션에서 SSL(Secure Socket Layer)을
사용하십시오.
이 태스크 정보
애플리케이션 서버에 따라 다음 프로시저를 통해
web.xml 파일을 업데이트하여
IBM Enterprise
Records
웹 애플리케이션에서 SSL이 사용 가능하도록 설정합니다. 다음 단계가 전체 SSL 환경에
필요하지는 않습니다.
프로시저
SSL을 사용 가능하도록 설정하려면 다음을 수행하십시오.
- WebSphere: ier_install_path/RecordsManager/WEB-INF
디렉토리에서 web.xml 파일을 수정하십시오.
- web.xml 파일의 백업 사본을 만드십시오. 기본 파일 위치는 다음과 같습니다.
ier_install_path/RecordsManager/WEB-INF/web.xml
- 다음 단계에 표시된 대로 <security_constraint> 절을
복사하고 원본 다음에 바로 새로 복사된 절을
붙여넣으십시오.
- 새로 삽입된 <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>
- 변경사항을 web.xml 파일에 저장하십시오.
- WebLogic 및 JBoss: <ier_install_path>/RecordsManager/WEB-INF
디렉토리에서 web.xml 파일을 수정하십시오.
- web.xml 파일의 백업 사본을 만드십시오. 기본 파일 위치는 다음과 같습니다.
ier_install_path/RecordsManager/WEB-INF/web.xml
- <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>
- 변경사항을 web.xml 파일에 저장하십시오.