-
Bug
-
Resolution: Cannot Reproduce
-
P2
-
None
-
1.3.0, 1.3.1, 1.3.1_04, 1.3.1_05, 1.4.0, 1.4.1
-
x86, sparc
-
linux, solaris_2.6, solaris_7, solaris_8, solaris_9
Customer is using Java 1.3.1_04 (furthermore JBoss and Tomcat)
% java -server -version
java version "1.3.1_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
Java HotSpot(TM) Server VM (build 1.3.1_04-b02, mixed mode)
% /usr/ucb/ps -axwww |grep java
25167 ? R 40:40
/b2c/libexec/jdk-sun/bin/../bin/sparc/native_threads/java -server -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.crimson.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.apache.crimson.jaxp.SAXParserFactoryImpl -XX:+UseLWPSynchronization -verbose:gc -Xms512m -Xmx512m -XX:NewSize=128m -XX:MaxNewSize=128m -XX:SurvivorRatio=10 -XX:MaxPermSize=128m -XX:+DisableExplicitGC -Xnoclassgc -Dfile.encoding=UTF-8 -classpath /b2c/local/PKG/jboss/bin/run.jar:/b2c/libexec/jdk-sun/lib/tools.jar:../lib/crimson.jar org.jboss.Main tomcat
JVM crashes under load with
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x6091c0 nid=0x8f runnable
#
A core was written:
-rw------- 10007/10007 588271688 Jul 31 11:08 2002 core_pid24097_36635739
% file core
core_pid24097_36635739: ELF 32-bit MSB core file SPARC Version 1, from 'java'
Name: gm110360 Date: 08/05/2002
FULL PRODUCT VERSION :
java version "1.3.1_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
Java HotSpot(TM) Client VM (build 1.3.1_04-b02, mixed mode)
FULL OPERATING SYSTEM VERSION :
SunOS 5.7 Generic_106541-06 sun4u sparc SUNW,Ultra-4
EXTRA RELEVANT SYSTEM CONFIGURATION :
Tomcat 4.01-rc1
Java Web Start 1.0.1
A DESCRIPTION OF THE PROBLEM :
the error occured twice:
- starting keystore, keystore was aborted
- I'm not sure if it causes this exception:
got within my application IOException "Broken pipe", cannot
send the response with a BufferedOutputStream.
(response.setContentLength is set)
ERROR MESSAGES/STACK TRACES THAT OCCUR :
All I get is:
# HotSpot Virtual Machine Error, Internal Error
# Error ID: 53484152454432554E54494D450E43505000EA 01
# Problematic Thread: prio=5 tid=0x193300 nid=0x1a runnable
REPRODUCIBILITY :
This bug can be reproduced rarely.
---------- BEGIN SOURCE ----------
this is the code where "broken pipe" appeares, but I'm not sure it has to do
with this bug because it's not reproduceable.
public void getJpg (HttpServletResponse res, String imgpath) {
res.setContentType("application/octet-stream");
res.setHeader("Cache-Control", "no-cache");
File sf = new File(imgpath);
res.setContentLength((int)sf.length());
FileInputStream fis ;
try {
fis = new FileInputStream(imgpath) ;
BufferedOutputStream out = new BufferedOutputStream
(res.getOutputStream ());
byte buff[] = new byte[80] ;
int len ;
while( (len = fis.read(buff,0,80)) != -1 ){
out.write(buff,0,len);
}
out.flush();
fis.close();
out.close();
}
catch (Exception e ){Log.println (Log.DIAG_ERROR, "EN: 0207 --
GetImagesServlet.getJpg(): " + e);}
}
---------- END SOURCE ----------
(Review ID: 160184)
======================================================================
Name: rmT116609 Date: 04/15/2003
FULL PRODUCT VERSION :
I used JDK and JRE Versions 1.2.2_07, 1.3.1_06 JDK 1.1.7 etc...
FULL OS VERSION :
SunOS parvath 5.7 Generic_106541-12 sun4u sparc SUNW,Ultra-250
A DESCRIPTION OF THE PROBLEM :
While installing Weblogic Server 7 in solaris 7 box it is terminating with the above-mentioned error ID some times the same terminationg with sigmentation error. But in another Solaris 7 machine it is working with out any additional effort.
Note: I tried increasing Swap space also
REPRODUCIBILITY :
This bug can be reproduced always.
(Review ID: 184122)
======================================================================
Name: rmT116609 Date: 05/21/2003
FULL PRODUCT VERSION :
apuawhsl# java -version
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OS VERSION :
SunOS apuawhsl 5.6 Generic_105181-23 sun4u sparc SUNW,Ultra-5_10
A DESCRIPTION OF THE PROBLEM :
<------------- WebLogic Platform Installer - WebLogic Platform 7.0.2.0 ------------->
Copying files..
0% 25% 50% 75% 100%
[------------|------------|------------|------------]
[***************************************************]
Copying JDK....
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x323a78 nid=0x81 runnable
#
Abort
** Error during execution, error code = 34304.
REPRODUCIBILITY :
This bug can be reproduced always.
(Review ID: 186122)
======================================================================
% java -server -version
java version "1.3.1_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
Java HotSpot(TM) Server VM (build 1.3.1_04-b02, mixed mode)
% /usr/ucb/ps -axwww |grep java
25167 ? R 40:40
/b2c/libexec/jdk-sun/bin/../bin/sparc/native_threads/java -server -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.crimson.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.apache.crimson.jaxp.SAXParserFactoryImpl -XX:+UseLWPSynchronization -verbose:gc -Xms512m -Xmx512m -XX:NewSize=128m -XX:MaxNewSize=128m -XX:SurvivorRatio=10 -XX:MaxPermSize=128m -XX:+DisableExplicitGC -Xnoclassgc -Dfile.encoding=UTF-8 -classpath /b2c/local/PKG/jboss/bin/run.jar:/b2c/libexec/jdk-sun/lib/tools.jar:../lib/crimson.jar org.jboss.Main tomcat
JVM crashes under load with
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x6091c0 nid=0x8f runnable
#
A core was written:
-rw------- 10007/10007 588271688 Jul 31 11:08 2002 core_pid24097_36635739
% file core
core_pid24097_36635739: ELF 32-bit MSB core file SPARC Version 1, from 'java'
Name: gm110360 Date: 08/05/2002
FULL PRODUCT VERSION :
java version "1.3.1_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
Java HotSpot(TM) Client VM (build 1.3.1_04-b02, mixed mode)
FULL OPERATING SYSTEM VERSION :
SunOS 5.7 Generic_106541-06 sun4u sparc SUNW,Ultra-4
EXTRA RELEVANT SYSTEM CONFIGURATION :
Tomcat 4.01-rc1
Java Web Start 1.0.1
A DESCRIPTION OF THE PROBLEM :
the error occured twice:
- starting keystore, keystore was aborted
- I'm not sure if it causes this exception:
got within my application IOException "Broken pipe", cannot
send the response with a BufferedOutputStream.
(response.setContentLength is set)
ERROR MESSAGES/STACK TRACES THAT OCCUR :
All I get is:
# HotSpot Virtual Machine Error, Internal Error
# Error ID: 53484152454432554E54494D450E43505000EA 01
# Problematic Thread: prio=5 tid=0x193300 nid=0x1a runnable
REPRODUCIBILITY :
This bug can be reproduced rarely.
---------- BEGIN SOURCE ----------
this is the code where "broken pipe" appeares, but I'm not sure it has to do
with this bug because it's not reproduceable.
public void getJpg (HttpServletResponse res, String imgpath) {
res.setContentType("application/octet-stream");
res.setHeader("Cache-Control", "no-cache");
File sf = new File(imgpath);
res.setContentLength((int)sf.length());
FileInputStream fis ;
try {
fis = new FileInputStream(imgpath) ;
BufferedOutputStream out = new BufferedOutputStream
(res.getOutputStream ());
byte buff[] = new byte[80] ;
int len ;
while( (len = fis.read(buff,0,80)) != -1 ){
out.write(buff,0,len);
}
out.flush();
fis.close();
out.close();
}
catch (Exception e ){Log.println (Log.DIAG_ERROR, "EN: 0207 --
GetImagesServlet.getJpg(): " + e);}
}
---------- END SOURCE ----------
(Review ID: 160184)
======================================================================
Name: rmT116609 Date: 04/15/2003
FULL PRODUCT VERSION :
I used JDK and JRE Versions 1.2.2_07, 1.3.1_06 JDK 1.1.7 etc...
FULL OS VERSION :
SunOS parvath 5.7 Generic_106541-12 sun4u sparc SUNW,Ultra-250
A DESCRIPTION OF THE PROBLEM :
While installing Weblogic Server 7 in solaris 7 box it is terminating with the above-mentioned error ID some times the same terminationg with sigmentation error. But in another Solaris 7 machine it is working with out any additional effort.
Note: I tried increasing Swap space also
REPRODUCIBILITY :
This bug can be reproduced always.
(Review ID: 184122)
======================================================================
Name: rmT116609 Date: 05/21/2003
FULL PRODUCT VERSION :
apuawhsl# java -version
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OS VERSION :
SunOS apuawhsl 5.6 Generic_105181-23 sun4u sparc SUNW,Ultra-5_10
A DESCRIPTION OF THE PROBLEM :
<------------- WebLogic Platform Installer - WebLogic Platform 7.0.2.0 ------------->
Copying files..
0% 25% 50% 75% 100%
[------------|------------|------------|------------]
[***************************************************]
Copying JDK....
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x323a78 nid=0x81 runnable
#
Abort
** Error during execution, error code = 34304.
REPRODUCIBILITY :
This bug can be reproduced always.
(Review ID: 186122)
======================================================================
- duplicates
-
JDK-4725213 JVM crashes with Hotspot Error ID : 4F530E43505002BD
- Closed
-
JDK-4725267 JVM crashes, Function name=(N/A)
- Closed
- relates to
-
JDK-4938804 [1.3.1_05] JVM crashes with Pro/INTRALINK with Internal Error
- Closed