'WebSphere'에 해당되는 글 8건

  1. 2016.10.20 jar check
  2. 2013.09.04 WebSphere heap size 설정 xml
  3. 2012.09.19 war 아래의 심볼릭 링크 연결 안될때
  4. 2011.12.14 JVM heap dump 생성하기
  5. 2011.10.25 JVM Out of Memory 덤프 분석

jar check

WebSphere 2016. 10. 20. 18:20

WebSpher 에서 사용중인 ojdbc driver 파일(ojdbc*.jar) 확인


1.

 - jennifer/Agent/tunning/jarcheck.jsp 파일을 EAR 에 복사

 - jarcheck.jsp 를 호출

    박스에 [구현 클래스 이름] 입력 후 FIND

    * ojdbc driver 의 구현 클래스 이름 확인은 JDBC > JDBC 프로바이더 > Oracle JDBC Driver       에서 확인


2.

 - 제니퍼 > 장애진단 > 유틸리티 > 클래스/Jar검색 > [AppServer 선택] > [구현 클리스 이름] > 찾기

'WebSphere' 카테고리의 다른 글

WebSphere heap size 설정 xml  (0) 2013.09.04
war 아래의 심볼릭 링크 연결 안될때  (0) 2012.09.19
JVM heap dump 생성하기  (0) 2011.12.14
JVM Out of Memory 덤프 분석  (0) 2011.10.25
WebSphere 서버 ssl 구성시 잘 안될때.  (0) 2009.11.30
Posted by efrit
,

profiles/AppSrv01/config/cells/<hostname>Cell01/nodes/<hostname>Node01/servers/<AppServer Name>/server.xml


<jvmEntries xmi:id="JavaVirtualMachine1111111111" verboseModeClass="false" verboseModeGarbageCollection="false" verboseModeJNI="false" initialHeapSize="1024" maximumHeapSize="1024" ..........>

'WebSphere' 카테고리의 다른 글

jar check  (0) 2016.10.20
war 아래의 심볼릭 링크 연결 안될때  (0) 2012.09.19
JVM heap dump 생성하기  (0) 2011.12.14
JVM Out of Memory 덤프 분석  (0) 2011.10.25
WebSphere 서버 ssl 구성시 잘 안될때.  (0) 2009.11.30
Posted by efrit
,

 war 아래의 심볼릭링크가 연결 안되는경우 조치방법



Application Server > "ServerName" > 웹컨테이너 > 사용자정의 특성  에서 아래 내용 추가


  이름 : com.ibm.ws.webcontainer.TolerateSymbolicLinks

  값 : true


설정후 해당 Application Server 재시작

'WebSphere' 카테고리의 다른 글

jar check  (0) 2016.10.20
WebSphere heap size 설정 xml  (0) 2013.09.04
JVM heap dump 생성하기  (0) 2011.12.14
JVM Out of Memory 덤프 분석  (0) 2011.10.25
WebSphere 서버 ssl 구성시 잘 안될때.  (0) 2009.11.30
Posted by efrit
,
1. 수동생성

 -Xdump:java+heap+system+snap:events=user

 ● Unix/Linux
     kill -3
 ● Win
     Windbg - dump /f [file]

http://www.websphere.pe.kr/xe/?mid=was_ps&page=3&document_srl=31434
http://www-01.ibm.com/support/docview.wss?uid=swg21242497
http://www.websphere.pe.kr/xe/?mid=was_ps&page=2&listStyle=webzine&document_srl=90049 

▶ wasadmin 에서 수동 덤프생성
  <wsadmin> set objectName [$AdminControl queryNames WebSphere:type=JVM,process=<servername>,node=<nodename>,*]
  <wsadmin> $AdminControl invoke $objectName generateHeapDump

http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftprf_generatingheapdumps.html

2. JVM 재시작시 덤프 생성
 -Xdump:java+heap+system+snap:events=vmstop
Posted by efrit
,
KMS Out of Memory 문제로 분석 의뢰 했더니 일반 옵션에 Xmxcl25000 추가해보자는 답변.
java 1.5 는 Class loader 기본값이 8192, Class loader 수 증가 

http://www-01.ibm.com/support/docview.wss?uid=swg21249897

Posted by efrit
,