반응형
tomcat9은 톰캣7, 8 버전과는 다르게 별도로 라이브러리를 추가할 필요가 없다.
톰캣 실행시 옵션을 추가하면 된다.
톰캣 9 문서
https://tomcat.apache.org/tomcat-9.0-doc/monitoring.html
tomcat9 VM args 옵션 (별도의 인증없을때)
-Dcom.sun.management.jmxremote.port=10001
-Dcom.sun.management.jmxremote.rmi.port=10002
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
인텔리 J에서 tomcat runner 플러그인으로 톰캣 설정을 하게 되면
VM args항목에 위의 내용을 추가하면 된다.
Jconsole 연결 화면
127.0.0.1:10001(jmxremote.port)
tomcat7이나 tomcat8설정은 아래 페이지 참고
https://www.lesstif.com/java/apache-tomcat-jmx-monitoring-20776824.html
반응형
'java' 카테고리의 다른 글
spring boot 구동시 로깅 레벨 변경 (0) | 2024.09.25 |
---|---|
intellij console log 에서 jsp 컴파일 에러 확인 (0) | 2024.07.22 |
springboot jar파일 외부에서 properties 적용 (0) | 2024.04.15 |
jpa에서 mysql8 예약어로 된 컬럼 사용시 옵션 설정 (0) | 2024.02.05 |
gradlew 프록시 서버 설정 (0) | 2024.02.01 |