반응형
JBoss EAP간 서비스를 하기 위해 http 또는 https로 통신을 하려고 하는데 접속 오류가 발생합니다.
JBoss EAP간 연계 서비스를 하기 위해서는 아래와 같이 standalone.xml 또는 standalone-ha.xml 파일에 다음 사항을 추가하여 서비스하면 됩니다.
<server name="default-server">
<http-listener name="default" socket-binding="http" redirect-sockert="https" enable-http2="true"/>
<https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true"/>
<host name="default-host" alias="localhost">
<location name="/" handler="welcome-content"/>
<http-invoker security-realm="ApplicationRealm"/>
<filter-ref name="secret-checker" predicate="equals(%p,${jboss.ajp.port:8009})"/>
</host>
</server>
반응형
'IT 이야기 > JBoss EAP' 카테고리의 다른 글
[JBoss EAP7] 파일 업로드 시 10MB 이상 등록하기 (0) | 2020.09.11 |
---|---|
[JBoss EAP] 서비스 중인 node의 jboss-cli.sh 접속이 안될 때 (0) | 2020.09.11 |
[Error_Log] java.lang.IllegalStateException: Cannot create a session after the response has been committed (0) | 2020.05.01 |
JBoss EAP Thread Pool 설정 (0) | 2020.04.30 |
[Error_Log] java.lang.NullPointerException (0) | 2020.04.28 |
댓글