//서버 인증서 생성
openssl genrsa -des3 -out server.cakey.pem
openssl req -new -x509 -key server.cakey.pem -out root.crt
openssl genrsa -out server.key
openssl req -new -key server.key -out server.csr
//서명
openssl x509 -req -in server.csr -days 365 -sha1 -CAcreateserial -CA root.crt -CAkey server.cakey.pem -out server.crt
//클라이언트 인증서
openssl genrsa -out client.key
openssl req -new -key client.key -out client.csr
//서명
openssl x509 -req -in client.csr -days 365 -sha1 -CAcreateserial -CA root.crt -CAkey server.cakey.pem -out client.crt
web.xml 파일이 있습니다. 이 파일을 열어서 session이라고 검색해 보십시오. <session-config> <session-timeout>360</session-timeout> </session-config> 위 단락을 찾을 수 있습니다. session-timeout 시간 360이 바로 자동로그아웃 세션 시간입니다. 단위는 분이고요. 30분으로 하고 싶으시면 30으로 바꿔서 저장해주시면 되는 것이죠~ Tomcat 내에서 Session Timeout 를 설정하는 우선 순위가 존재 한다. session.setMaxInactiveInterval() 프로그램내에서 time out 를 설정했을 경우 Web application 내의 WEB-INF/web.xml Tomcat 내의 conf/web.xml 실제로 Tomcat(conf/web.xml)내에 Default 로 설정되어 있는 것은 다음과 같다. < HttpSession 메서드 > getCreationTime() - 세션 생성 시간 getLastAccessedTime() - 마지막 요청 시간 setMaxInactiveInterval() - 최대허용시간 설정 (초) getMaxInactiveInterval() - 최대허용시간 invalidate() - 세션 제거 < 타임아웃 설정하기 > - 일정 시간 동안 요청이 없으면 세션을 제거한다 1. DD에서 전체 세션 타임아웃 설정 web.xml 1. DD에서 전체 세션 타임아웃 설정 web.xml <web-app ... > <servlet> ...
댓글
댓글 쓰기