2013-07-03 1 views
0

IBM Websphere의 관리자 콘솔을 시작하려고하는데 서버를 시작하는 동안 오류가 발생합니다. 다음 명령을 사용하고 있습니다. 서버를 시작하십시오.IBM WebSphere Application Server의 관리 콘솔을 시작할 수 없습니다. 원인 : java.lang.OutOfMemoryError

C:\IBM\WebSphere\AppServer\profiles\AppSr2\bin>startServer.bat server1 
ADMU0116I: Tool information is being logged in file 
      C:\IBM\WebSphere\AppServer\profiles\AppSr2\logs\server1\startServer.log 
ADMU0128I: Starting tool with the AppSr2 profile 
ADMU3100I: Reading configuration for server: server1 
ADMU3200I: Server launched. Waiting for initialization status. 
ADMU3011E: Server launched but failed initialization. startServer.log, 
      SystemOut.log(or job log in zOS) and other log files under 
      C:\IBM\WebSphere\AppServer\profiles\AppSr2\logs\server1 should 
      contain failure information. When i looked into log files error is java.lang.OutOfMemoryError. How do i come out of this situation? 

답변

0

JVM 힙의 초기 크기를 늘려보십시오. 이것은 WAS_HOME\profiles\PROFILE_NAME\config\cells\CELL_NAME\nodes\NODE_NAME\servers\SERVER에 위치한 server.xml에서 할 수 있습니다. 당신은 요소 <jvmEntries>을 수정하고 조정 또는 속성 initialHeapSize을 추가해야합니다 : 적절한 값은 사용자 환경에 따라 달라집니다

<jvmEntries initialHeapSize="1024"> 

.

+0

나는 당신이 이미 언급 한 속성을 보았다고 생각합니다 ..... mahesh

+0

OutOfMemoryError가 발생하면 WAS는 일반적으로 힙 덤프를 생성합니다. 프로파일 디렉토리에서 heapdump와 같은 파일명으로 찾을 수 있습니다. . .phd. 어떤 양의 메모리가 표시됩니까? – fnt

+0

.phd 파일을 여는 방법은 무엇입니까? 메모장에서 그것은 이진 내용을 보여주고 있습니다. – mahesh