2010-04-12 4 views
1

Jboss 4.2에서 .keystore를 설정하려고했습니다. service.getName() : 인해 제이보스 커뮤니티에서이 문서를 http://community.jboss.org/wiki/sslsetupjboss 4.2에서 SSL을 구성하는 중 오류가 발생 했습니까?

하지만 제이 보스 콘솔이 오류 LifecycleException 생성 "jboss.web을"; 프로토콜 핸들러를 시작하지 못했습니다 :

java.io.FileNotFoundException: C:\Documents and Settings\mebada\.keystore (The system cannot find the file specified) 

심지어 내가 server.xml의

<Connector className = "org.apache.coyote.tomcat4.CoyoteConnector" 
address="${jboss.bind.address}" port = "8443" protocol="HTTP/1.1" SSLEnabled="true" scheme = "https" 
secure = "true"> 
<Factory className = "org.apache.coyote.tomcat4.CoyoteServerSocketFactory" 
    keystoreFile="D:/Projects/Demo/jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/conf/server.keystore" 
    keystorePass="tc-ssl" 
    protocol = "TLS"></Factory> 

도움에 키 스토어의 위치를 ​​지정?

미리 감사드립니다.

+0

참조 로버트 훅의 의견, 기사 아래 2009 오후 10시 24분 :

나는이 태그를 사용했다. – EJP

답변

1

위의 태그는 유효하지 않습니다. 년 2 월 23

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" 
    scheme="https" secure="false" strategy="ms" address="${jboss.bind.address}" 
    keystoreFile="${jboss.server.home.dir}/conf/server.keystore" 
    keystorePass="tc-ssl" sslProtocol="TLS" 
    truststorePass="tc-ssl" 
    acceptAnyCert="true" clientAuth="want" /> 
관련 문제