달력

32024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

원 출처 : http://blog.naver.com/hifrand/150016344742 


Lambda Probe logoLambda Probe for Apache Tomcat



이미 아는분들이 있을지도 모르지만...

국내에 아직 소개가 않된것 같아 람바다 프로브를 소개한다.

항상 먼저 툴을 만져보고 소개한다는 것은 기분좋은 일이다...

 

톰캣의 기본모니터링 툴이 워낙 좋다보니 --;; 여타 마땅한 모니터링 툴이

없어 뒤지다가.... 드디어...

춤추는 프로브를 찾았다 ㅋㅋ 스타가 생각난다 후후


여하튼 내용은 GPL을 따르고... 5.*대 이상에서 돌아가고...

설치는  WAR파일로 원빵에 설치가 후와 <-- 가장 마음에 든다 ㅍㅍ


그리고 톰캣의 권한을 설정하면 된다.

화면 잘 돌아간다.....

다각도의 모니터링 화면의 구성과 ...

무지 쉽다는것이 장점이다.


상용툴과 비교해도 결코 뒤지지 않는 멋진놈이다.

오늘의 자바헌터는 성공적이다. ^^

모두 같이 톰캣을 람바다를 추시기를 ~~



Welcome to the home of Lambda Probe (formerly known as Tomcat Probe) - the ultimate tool for monitoring and management of Apache Tomcat instance in real time. Lambda Probe will help you to visualise real time information about Apache Tomcat instance via easy to use and friendly web interface. For more information please visit the overview section.


Looking for Tomcat Probe? Read on...

To cut the long story short Tomcat Probe has changed its name to Lambda Probe. This is only a name change, Lambda Probe is the same code, same GPL license and it is the same person developing it :). Frankly there were two reasons for changing the name: one is to stay well clear of possible trademark infringement claims and the second one is that I simply could not come up with more or less decent logo for the former name. Yes, I'm being honest here! discuss...


Latest release

UI improvements, bugxies, ability to view IP address of the session, ability to view servlets, filters, desployment descriptor and many more

LambdaProbe 1.7b, BINARIES please see the CHANGELOG
Released on 28 Nov 2006 Size ~7Mb

Featured screenshots

They say a picture worth a thouthand words... Well, here are some of the screenshots of what you get when you download the latest release of Lambda Probe. You can find a whole lot more pictures in the screenshot section of this site.

Cluster stats Tailing log file

Tomcat compatibility

Lambda Probe is designed for Apache Tomcat and only Apache Tomcat. It will not work with any other application server. Lambda Probe has been tested with Java 1.4 and Java 1.5 and I found it to be working perfectly on both. It is also compatible with Tomcat5 versions 5.0.x and 5.5.x. Unfortunately it is not compatible with older versions such as 4.1.x and 3.3 because of lack of EL support in JSP 1.2.

'JAVA > WAS' 카테고리의 다른 글

Tomcat Authentication and Authorization Sequences  (0) 2010.02.11
아파치 + 톰캣 연동후 8009 커넥터 조정  (0) 2007.02.22
PermGen Space  (0) 2007.02.13
아파치 튜닝 정리  (0) 2007.01.19
[펌]아파치 + 톰캣 연동  (0) 2006.09.25
Posted by tornado
|
출처 : http://coffeenix.net/bbs/viewtopic.php?t=1186&view=previous



올리기올려짐: 2006.7.21 금, 4:11 pm    주제: Re: 아파치와 톰캣 연동을 햇는데요?? (톰캣 튜닝) 인용과 함께 답변

tomcat도 아파치 튜닝처럼 운영하면서 최적의 설정값을 찾아내야 합니다.
apache의 80포트로는 접속이 잘 안되는데, tomcat이 사용하는 8080 포트로는 해당 페이지가 잘 열리는지 살펴보세요.
아주 예전에 이런 경험이 있어 설정 변경을 했습니다.

다음은 TOMCAT 홈/conf/server.xml 의 일부 default 설정입니다.
(2004.중순 tomcat 5.0.x의 기준입니다. 오래됐네요. ^^)

코드:

    <Connector port="8080"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8443" acceptCount="100"
               debug="0" connectionTimeout="20000"
               disableUploadTimeout="true" />

    <Connector port="8009"
               enableLookups="false" redirectPort="8443" debug="0"
               protocol="AJP/1.3" />


위에서 8080으로 쓰이는 connector의 thread 설정 튜닝과
8009포트를 사용하는 AJP connector의 KeepAlive on/off와 Min/Max process 개수 등의 설정이 필요합니다.
thread 설정을 약간 늘려보시구요, AJP connector의 maxKeepAliveRequests는 off로 하고 process개수를 변경해보세요.
80은 접속이 잘 안되고, 8080은 된다면 다음 설정이 효과가 있을겁니다. 설정값은 님이 직접 튜닝하시구요.

코드:

    <Connector port="8080"
               maxThreads="300" minSpareThreads="75" maxSpareThreads="150"
               enableLookups="false" redirectPort="8443" acceptCount="250"
               debug="0" connectionTimeout="20000"
               disableUploadTimeout="true" />

    <Connector port="8009"
               enableLookups="false" redirectPort="8443" debug="0"
               maxKeepAliveRequests="-1" minProcessors="150" maxProcessors="500"
               protocol="AJP/1.3" />

'JAVA > WAS' 카테고리의 다른 글

Tomcat Authentication and Authorization Sequences  (0) 2010.02.11
[펌] Lambda Probe 톰캣 모니터링툴 ^^ 멋진놈이다.  (2) 2007.04.06
PermGen Space  (0) 2007.02.13
아파치 튜닝 정리  (0) 2007.01.19
[펌]아파치 + 톰캣 연동  (0) 2006.09.25
Posted by tornado
|