• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Paul Clapham
  • Tim Cooke
  • Ron McLeod
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Junilu Lacar
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Stephan van Hulst
  • Peter Rooke
  • Mikalai Zaikin
Bartenders:
  • Himai Minh

EXCEPTION_ACCESS_VIOLATION

 
Ranch Hand
Posts: 100
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Below error occurs in my Tomcat. Also when I run Tomcat as service, system error out as 'Access is denied'

# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x100045c7, pid=1072, tid=3044
#
# JRE version: 6.0_31-b05
# Java VM: Java HotSpot(TM) Client VM (20.6-b01 mixed mode, sharing windows-x86 )
# Problematic frame:
# C [tcnative-1.dll+0x45c7]
 
Ranch Hand
Posts: 144
MySQL Database Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It basically crashing with segfault in the JVM code. ExceptionCode=0xc0000005 means segfault. I would suggest upgrading JVM to latest version.

Hope this helps.
 
Saloon Keeper
Posts: 26877
192
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Zeeshan Sheikh wrote:It basically crashing with segfault in the JVM code. ExceptionCode=0xc0000005 means segfault. I would suggest upgrading JVM to latest version.

Hope this helps.



Or sometimes a version that's only slightly older, if the latest and greatest version isn't an option.

This error is always due to a bug in the JVM (or in native classes), never in Java code itself, and fortunately, bugs like this tend to move around, so any randomly-selected alternative JVM version will usually make it go away. Pretty much any JVM will have something that will crash it, but as long as that something isn't one of the somethings you need, it all works out.
 
I'm all tasted up for a BLT! This tiny ad wants a monte cristo!
Thread Boost feature
https://coderanch.com/t/674455/Thread-Boost-feature
reply
    Bookmark Topic Watch Topic
  • New Topic