반응형
jconsole 등 툴에서 원격으로 JMX 통해서 모니터링하고자 할 때,
JBoss 기동 시에 JVM에서 원격 접속을 허용한다는 옵션을 아래와 같이 설정해주어야 한다.
아래 예제는 "192.168.1.78" 서버의 "9010"이라는 포트로 jconsole 등 과 같은 툴에서 원격으로 접속할 수 있는 것이다.
-Djboss.bind.address.management=192.168.1.78
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=9990
-Dcom.sun.management.jmxremote.local.only=false
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
'WAS > JBoss' 카테고리의 다른 글
[Tips] 심볼릭링크 사용 시 404 오류 발생 시 (0) | 2016.05.12 |
---|---|
[Tips] x-powered-by 헤더 정보 없애기 (보안상 이슈) (0) | 2016.05.10 |
[개요] 운영모드 - Standalone vs. Domain mode (0) | 2016.04.12 |
[Tips] 세션 타임아웃(Session Timeout) 설정 방법 (0) | 2016.04.08 |
[TroubleShooting] 애플리케이션에서 Log4J 로그가 출력이 안되는 경우 (0) | 2016.03.31 |