ERROR:

Concurrent program error-ed out with below error,

Failed to write core dump. Core dumps have been disabled. To enable core dumping, try “ulimit -c unlimited” before starting Java again

 

SOLUTION:

[root@ ~]# ulimit -c -l
core file size (blocks, -c) 0
max locked memory (kbytes, -l) 64

Here ulimit core file size is 0 so change it to unlimited.


[root@ ~]# ulimit -c unlimited
[root@~]# ulimit -c -l
core file size (blocks, -c) unlimited
max locked memory (kbytes, -l) 64

Recent Posts

Start typing and press Enter to search