├── build.xml ├── build ├── built-jar.properties └── classes │ ├── ChatCSS.css │ ├── ChatImage.png │ ├── LoginWindow$1.class │ ├── LoginWindow$2.class │ ├── LoginWindow.class │ ├── Server$1.class │ ├── Server$2.class │ ├── Server$3.class │ ├── Server.class │ ├── ServerClient.class │ ├── ServerMain.class │ └── UniqueIdentifier.class ├── dist ├── Chat Application.html ├── Chat Application.jnlp ├── Simple Chat Application.jar ├── run105336200 │ ├── Chat Application.html │ ├── Chat Application.jnlp │ ├── Simple Chat Application.jar │ └── web-files │ │ ├── dtjava.js │ │ ├── error.png │ │ ├── get_java.png │ │ ├── get_javafx.png │ │ ├── javafx-chrome.png │ │ ├── javafx-loading-100x100.gif │ │ ├── javafx-loading-25x25.gif │ │ ├── upgrade_java.png │ │ └── upgrade_javafx.png └── web-files │ ├── dtjava.js │ ├── error.png │ ├── get_java.png │ ├── get_javafx.png │ ├── javafx-chrome.png │ ├── javafx-loading-100x100.gif │ ├── javafx-loading-25x25.gif │ ├── upgrade_java.png │ └── upgrade_javafx.png ├── hs_err_pid16114.log ├── hs_err_pid16120.log ├── hs_err_pid2238.log ├── hs_err_pid2249.log ├── hs_err_pid2281.log ├── hs_err_pid2286.log ├── hs_err_pid2294.log ├── hs_err_pid2454.log ├── hs_err_pid28136.log ├── hs_err_pid28144.log ├── hs_err_pid8108.log ├── hs_err_pid8120.log ├── manifest.mf ├── nbproject ├── build-impl.xml ├── configs │ ├── Run_as_WebStart.properties │ └── Run_in_Browser.properties ├── genfiles.properties ├── jfx-impl.xml ├── private │ ├── configs │ │ ├── Run_as_WebStart.properties │ │ └── Run_in_Browser.properties │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml └── src ├── ChatCSS.css ├── ChatImage.png ├── LoginWindow.java ├── Server$1.class ├── Server$2.class ├── Server$3.class ├── Server.class ├── Server.java ├── ServerClient.class ├── ServerClient.java ├── ServerMain.class ├── ServerMain.java ├── UniqueIdentifier.class └── UniqueIdentifier.java /build.xml: -------------------------------------------------------------------------------- 1 | 2 | Builds, tests, and runs the project Simple Chat Application. 3 | 4 | 53 | 54 | -------------------------------------------------------------------------------- /build/built-jar.properties: -------------------------------------------------------------------------------- 1 | #Sat, 17 Dec 2016 14:35:29 +0545 2 | 3 | 4 | /home/ashmeet/Chat\ Application= 5 | -------------------------------------------------------------------------------- /build/classes/ChatCSS.css: -------------------------------------------------------------------------------- 1 | .conosle{ 2 | -fx-font-color:#e70707; 3 | -fx-text-fill: #e70707; 4 | } -------------------------------------------------------------------------------- /build/classes/ChatImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/ChatImage.png -------------------------------------------------------------------------------- /build/classes/LoginWindow$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/LoginWindow$1.class -------------------------------------------------------------------------------- /build/classes/LoginWindow$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/LoginWindow$2.class -------------------------------------------------------------------------------- /build/classes/LoginWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/LoginWindow.class -------------------------------------------------------------------------------- /build/classes/Server$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/Server$1.class -------------------------------------------------------------------------------- /build/classes/Server$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/Server$2.class -------------------------------------------------------------------------------- /build/classes/Server$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/Server$3.class -------------------------------------------------------------------------------- /build/classes/Server.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/Server.class -------------------------------------------------------------------------------- /build/classes/ServerClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/ServerClient.class -------------------------------------------------------------------------------- /build/classes/ServerMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/ServerMain.class -------------------------------------------------------------------------------- /build/classes/UniqueIdentifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/build/classes/UniqueIdentifier.class -------------------------------------------------------------------------------- /dist/Chat Application.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 38 | 39 | 40 |

Test page for Chat Application

41 | Webstart: click to launch this app as webstart


42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /dist/Chat Application.jnlp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Chat Application 5 | ashmeet 6 | null 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /dist/Simple Chat Application.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/Simple Chat Application.jar -------------------------------------------------------------------------------- /dist/run105336200/Chat Application.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 38 | 39 | 40 |

Test page for Chat Application

41 | Webstart: click to launch this app as webstart


42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /dist/run105336200/Chat Application.jnlp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Chat Application 5 | ashmeet 6 | null 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /dist/run105336200/Simple Chat Application.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/Simple Chat Application.jar -------------------------------------------------------------------------------- /dist/run105336200/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/error.png -------------------------------------------------------------------------------- /dist/run105336200/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/get_java.png -------------------------------------------------------------------------------- /dist/run105336200/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/get_javafx.png -------------------------------------------------------------------------------- /dist/run105336200/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /dist/run105336200/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /dist/run105336200/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /dist/run105336200/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/upgrade_java.png -------------------------------------------------------------------------------- /dist/run105336200/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/run105336200/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /dist/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/error.png -------------------------------------------------------------------------------- /dist/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/get_java.png -------------------------------------------------------------------------------- /dist/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/get_javafx.png -------------------------------------------------------------------------------- /dist/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /dist/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /dist/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /dist/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/upgrade_java.png -------------------------------------------------------------------------------- /dist/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/dist/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /hs_err_pid16114.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=16114, tid=0x00007f0b9569a700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x00007f0b8c009800): JavaThread "Unknown thread" [_thread_in_vm, id=16118, stack(0x00007f0b9559a000,0x00007f0b9569b000)] 28 | 29 | Stack: [0x00007f0b9559a000,0x00007f0b9569b000], sp=0x00007f0b956995f0, free space=1021k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libpthread.so.0+0x76fa] start_thread+0xca 43 | 44 | 45 | --------------- P R O C E S S --------------- 46 | 47 | Java Threads: ( => current thread ) 48 | 49 | Other Threads: 50 | 51 | =>0x00007f0b8c009800 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=16118, stack(0x00007f0b9559a000,0x00007f0b9569b000)] 52 | 53 | VM state:not at safepoint (not fully initialized) 54 | 55 | VM Mutex/Monitor currently owned by a thread: None 56 | 57 | GC Heap History (0 events): 58 | No events 59 | 60 | Deoptimization events (0 events): 61 | No events 62 | 63 | Internal exceptions (0 events): 64 | No events 65 | 66 | Events (0 events): 67 | No events 68 | 69 | 70 | Dynamic libraries: 71 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 72 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 73 | 02397000-023b8000 rw-p 00000000 00:00 0 [heap] 74 | a3800000-a7700000 rw-p 00000000 00:00 0 75 | a7700000-e1300000 ---p 00000000 00:00 0 76 | e1300000-e3200000 rw-p 00000000 00:00 0 77 | e3200000-100000000 ---p 00000000 00:00 0 78 | 7f0b7d000000-7f0b7d270000 rwxp 00000000 00:00 0 79 | 7f0b7d270000-7f0b8c000000 ---p 00000000 00:00 0 80 | 7f0b8c000000-7f0b8c039000 rw-p 00000000 00:00 0 81 | 7f0b8c039000-7f0b90000000 ---p 00000000 00:00 0 82 | 7f0b91ae3000-7f0b91d6a000 rw-p 00000000 00:00 0 83 | 7f0b91d6a000-7f0b91d6b000 ---p 00000000 00:00 0 84 | 7f0b91d6b000-7f0b91e8b000 rw-p 00000000 00:00 0 85 | 7f0b91e8b000-7f0b92059000 ---p 00000000 00:00 0 86 | 7f0b92059000-7f0b92079000 rw-p 00000000 00:00 0 87 | 7f0b92079000-7f0b92246000 ---p 00000000 00:00 0 88 | 7f0b92246000-7f0b92256000 rw-p 00000000 00:00 0 89 | 7f0b92256000-7f0b9233d000 ---p 00000000 00:00 0 90 | 7f0b9233d000-7f0b92348000 rw-p 00000000 00:00 0 91 | 7f0b92348000-7f0b926fe000 ---p 00000000 00:00 0 92 | 7f0b926fe000-7f0b92718000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7f0b92718000-7f0b92918000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7f0b92918000-7f0b92919000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7f0b92919000-7f0b92924000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7f0b92924000-7f0b92b23000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7f0b92b23000-7f0b92b24000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7f0b92b24000-7f0b92b25000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7f0b92b25000-7f0b92b2b000 rw-p 00000000 00:00 0 100 | 7f0b92b2b000-7f0b92b36000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7f0b92b36000-7f0b92d35000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7f0b92d35000-7f0b92d36000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7f0b92d36000-7f0b92d37000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7f0b92d37000-7f0b92d4d000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7f0b92d4d000-7f0b92f4c000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7f0b92f4c000-7f0b92f4d000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7f0b92f4d000-7f0b92f4e000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7f0b92f4e000-7f0b92f50000 rw-p 00000000 00:00 0 109 | 7f0b92f50000-7f0b92f58000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7f0b92f58000-7f0b93157000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7f0b93157000-7f0b93158000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7f0b93158000-7f0b93159000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7f0b93159000-7f0b93184000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7f0b93184000-7f0b93383000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7f0b93383000-7f0b93385000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7f0b93385000-7f0b93392000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7f0b93392000-7f0b93591000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7f0b93591000-7f0b93593000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7f0b93593000-7f0b9359a000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7f0b9359a000-7f0b93799000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7f0b93799000-7f0b9379a000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7f0b9379a000-7f0b9379b000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7f0b9379b000-7f0b938a3000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7f0b938a3000-7f0b93aa2000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7f0b93aa2000-7f0b93aa3000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7f0b93aa3000-7f0b93aa4000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7f0b93aa4000-7f0b94771000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7f0b94771000-7f0b94970000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7f0b94970000-7f0b94a49000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7f0b94a49000-7f0b94a94000 rw-p 00000000 00:00 0 131 | 7f0b94a94000-7f0b94c54000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7f0b94c54000-7f0b94e53000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7f0b94e53000-7f0b94e57000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7f0b94e57000-7f0b94e59000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7f0b94e59000-7f0b94e5d000 rw-p 00000000 00:00 0 136 | 7f0b94e5d000-7f0b94e60000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7f0b94e60000-7f0b9505f000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7f0b9505f000-7f0b95060000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7f0b95060000-7f0b95061000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7f0b95061000-7f0b95076000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7f0b95076000-7f0b95276000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7f0b95276000-7f0b95277000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7f0b95277000-7f0b9528f000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7f0b9528f000-7f0b9548e000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7f0b9548e000-7f0b9548f000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7f0b9548f000-7f0b95490000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7f0b95490000-7f0b95494000 rw-p 00000000 00:00 0 148 | 7f0b95494000-7f0b954ba000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7f0b9559a000-7f0b9559d000 ---p 00000000 00:00 0 150 | 7f0b9559d000-7f0b9569f000 rw-p 00000000 00:00 0 151 | 7f0b956ad000-7f0b956b5000 rw-s 00000000 08:03 2491197 /tmp/hsperfdata_ashmeet/16114 152 | 7f0b956b5000-7f0b956b6000 rw-p 00000000 00:00 0 153 | 7f0b956b6000-7f0b956b7000 r--p 00000000 00:00 0 154 | 7f0b956b7000-7f0b956b9000 rw-p 00000000 00:00 0 155 | 7f0b956b9000-7f0b956ba000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7f0b956ba000-7f0b956bb000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7f0b956bb000-7f0b956bc000 rw-p 00000000 00:00 0 158 | 7ffc1abc3000-7ffc1abe4000 rw-p 00000000 00:00 0 [stack] 159 | 7ffc1abf3000-7ffc1abf5000 r--p 00000000 00:00 0 [vvar] 160 | 7ffc1abf5000-7ffc1abf7000 r-xp 00000000 00:00 0 [vdso] 161 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 162 | 163 | VM Arguments: 164 | java_command: 165 | java_class_path (initial): . 166 | Launcher Type: SUN_STANDARD 167 | 168 | Environment Variables: 169 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 170 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 171 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 172 | SHELL=/bin/bash 173 | DISPLAY=:0 174 | 175 | Signal Handlers: 176 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 177 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 183 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 184 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 185 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | 189 | 190 | --------------- S Y S T E M --------------- 191 | 192 | OS:DISTRIB_ID=Ubuntu 193 | DISTRIB_RELEASE=16.04 194 | DISTRIB_CODENAME=xenial 195 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 196 | 197 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 198 | libc:glibc 2.23 NPTL 2.23 199 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 200 | load average:1.87 2.11 0.99 201 | 202 | /proc/meminfo: 203 | MemTotal: 6056748 kB 204 | MemFree: 2330676 kB 205 | MemAvailable: 3068020 kB 206 | Buffers: 74672 kB 207 | Cached: 1164884 kB 208 | SwapCached: 0 kB 209 | Active: 2565548 kB 210 | Inactive: 691552 kB 211 | Active(anon): 2019940 kB 212 | Inactive(anon): 326756 kB 213 | Active(file): 545608 kB 214 | Inactive(file): 364796 kB 215 | Unevictable: 32 kB 216 | Mlocked: 32 kB 217 | SwapTotal: 0 kB 218 | SwapFree: 0 kB 219 | Dirty: 96 kB 220 | Writeback: 0 kB 221 | AnonPages: 2017644 kB 222 | Mapped: 285376 kB 223 | Shmem: 329144 kB 224 | Slab: 166428 kB 225 | SReclaimable: 81572 kB 226 | SUnreclaim: 84856 kB 227 | KernelStack: 199696 kB 228 | PageTables: 58136 kB 229 | NFS_Unstable: 0 kB 230 | Bounce: 0 kB 231 | WritebackTmp: 0 kB 232 | CommitLimit: 3028372 kB 233 | Committed_AS: 17825452 kB 234 | VmallocTotal: 34359738367 kB 235 | VmallocUsed: 0 kB 236 | VmallocChunk: 0 kB 237 | HardwareCorrupted: 0 kB 238 | AnonHugePages: 788480 kB 239 | CmaTotal: 0 kB 240 | CmaFree: 0 kB 241 | HugePages_Total: 0 242 | HugePages_Free: 0 243 | HugePages_Rsvd: 0 244 | HugePages_Surp: 0 245 | Hugepagesize: 2048 kB 246 | DirectMap4k: 110848 kB 247 | DirectMap2M: 6127616 kB 248 | 249 | 250 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 251 | 252 | /proc/cpuinfo: 253 | processor : 0 254 | vendor_id : GenuineIntel 255 | cpu family : 6 256 | model : 42 257 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 258 | stepping : 7 259 | microcode : 0x29 260 | cpu MHz : 2749.757 261 | cache size : 3072 KB 262 | physical id : 0 263 | siblings : 4 264 | core id : 0 265 | cpu cores : 2 266 | apicid : 0 267 | initial apicid : 0 268 | fpu : yes 269 | fpu_exception : yes 270 | cpuid level : 13 271 | wp : yes 272 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 273 | bugs : 274 | bogomips : 4589.60 275 | clflush size : 64 276 | cache_alignment : 64 277 | address sizes : 36 bits physical, 48 bits virtual 278 | power management: 279 | 280 | processor : 1 281 | vendor_id : GenuineIntel 282 | cpu family : 6 283 | model : 42 284 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 285 | stepping : 7 286 | microcode : 0x29 287 | cpu MHz : 2719.750 288 | cache size : 3072 KB 289 | physical id : 0 290 | siblings : 4 291 | core id : 0 292 | cpu cores : 2 293 | apicid : 1 294 | initial apicid : 1 295 | fpu : yes 296 | fpu_exception : yes 297 | cpuid level : 13 298 | wp : yes 299 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 300 | bugs : 301 | bogomips : 4589.60 302 | clflush size : 64 303 | cache_alignment : 64 304 | address sizes : 36 bits physical, 48 bits virtual 305 | power management: 306 | 307 | processor : 2 308 | vendor_id : GenuineIntel 309 | cpu family : 6 310 | model : 42 311 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 312 | stepping : 7 313 | microcode : 0x29 314 | cpu MHz : 2699.984 315 | cache size : 3072 KB 316 | physical id : 0 317 | siblings : 4 318 | core id : 1 319 | cpu cores : 2 320 | apicid : 2 321 | initial apicid : 2 322 | fpu : yes 323 | fpu_exception : yes 324 | cpuid level : 13 325 | wp : yes 326 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 327 | bugs : 328 | bogomips : 4589.60 329 | clflush size : 64 330 | cache_alignment : 64 331 | address sizes : 36 bits physical, 48 bits virtual 332 | power management: 333 | 334 | processor : 3 335 | vendor_id : GenuineIntel 336 | cpu family : 6 337 | model : 42 338 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 339 | stepping : 7 340 | microcode : 0x29 341 | cpu MHz : 2699.984 342 | cache size : 3072 KB 343 | physical id : 0 344 | siblings : 4 345 | core id : 1 346 | cpu cores : 2 347 | apicid : 3 348 | initial apicid : 3 349 | fpu : yes 350 | fpu_exception : yes 351 | cpuid level : 13 352 | wp : yes 353 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 354 | bugs : 355 | bogomips : 4589.60 356 | clflush size : 64 357 | cache_alignment : 64 358 | address sizes : 36 bits physical, 48 bits virtual 359 | power management: 360 | 361 | 362 | 363 | Memory: 4k page, physical 6056748k(2330676k free), swap 0k(0k free) 364 | 365 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 366 | 367 | time: Sun Oct 30 08:49:05 2016 368 | elapsed time: 0 seconds (0d 0h 0m 0s) 369 | 370 | -------------------------------------------------------------------------------- /hs_err_pid2238.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=2238, tid=0x00007f85309f7700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x00007f8528009800): JavaThread "Unknown thread" [_thread_in_vm, id=2240, stack(0x00007f85308f7000,0x00007f85309f8000)] 28 | 29 | Stack: [0x00007f85308f7000,0x00007f85309f8000], sp=0x00007f85309f65f0, free space=1021k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libpthread.so.0+0x76fa] start_thread+0xca 43 | 44 | 45 | --------------- P R O C E S S --------------- 46 | 47 | Java Threads: ( => current thread ) 48 | 49 | Other Threads: 50 | 51 | =>0x00007f8528009800 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=2240, stack(0x00007f85308f7000,0x00007f85309f8000)] 52 | 53 | VM state:not at safepoint (not fully initialized) 54 | 55 | VM Mutex/Monitor currently owned by a thread: None 56 | 57 | GC Heap History (0 events): 58 | No events 59 | 60 | Deoptimization events (0 events): 61 | No events 62 | 63 | Internal exceptions (0 events): 64 | No events 65 | 66 | Events (0 events): 67 | No events 68 | 69 | 70 | Dynamic libraries: 71 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 72 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 73 | 015cc000-015ed000 rw-p 00000000 00:00 0 [heap] 74 | a3800000-a7700000 rw-p 00000000 00:00 0 75 | a7700000-e1300000 ---p 00000000 00:00 0 76 | e1300000-e3200000 rw-p 00000000 00:00 0 77 | e3200000-100000000 ---p 00000000 00:00 0 78 | 7f8519000000-7f8519270000 rwxp 00000000 00:00 0 79 | 7f8519270000-7f8528000000 ---p 00000000 00:00 0 80 | 7f8528000000-7f8528039000 rw-p 00000000 00:00 0 81 | 7f8528039000-7f852c000000 ---p 00000000 00:00 0 82 | 7f852ce40000-7f852d0c7000 rw-p 00000000 00:00 0 83 | 7f852d0c7000-7f852d0c8000 ---p 00000000 00:00 0 84 | 7f852d0c8000-7f852d1e8000 rw-p 00000000 00:00 0 85 | 7f852d1e8000-7f852d3b6000 ---p 00000000 00:00 0 86 | 7f852d3b6000-7f852d3d6000 rw-p 00000000 00:00 0 87 | 7f852d3d6000-7f852d5a3000 ---p 00000000 00:00 0 88 | 7f852d5a3000-7f852d5b3000 rw-p 00000000 00:00 0 89 | 7f852d5b3000-7f852d69a000 ---p 00000000 00:00 0 90 | 7f852d69a000-7f852d6a5000 rw-p 00000000 00:00 0 91 | 7f852d6a5000-7f852da5b000 ---p 00000000 00:00 0 92 | 7f852da5b000-7f852da75000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7f852da75000-7f852dc75000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7f852dc75000-7f852dc76000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7f852dc76000-7f852dc81000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7f852dc81000-7f852de80000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7f852de80000-7f852de81000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7f852de81000-7f852de82000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7f852de82000-7f852de88000 rw-p 00000000 00:00 0 100 | 7f852de88000-7f852de93000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7f852de93000-7f852e092000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7f852e092000-7f852e093000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7f852e093000-7f852e094000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7f852e094000-7f852e0aa000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7f852e0aa000-7f852e2a9000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7f852e2a9000-7f852e2aa000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7f852e2aa000-7f852e2ab000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7f852e2ab000-7f852e2ad000 rw-p 00000000 00:00 0 109 | 7f852e2ad000-7f852e2b5000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7f852e2b5000-7f852e4b4000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7f852e4b4000-7f852e4b5000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7f852e4b5000-7f852e4b6000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7f852e4b6000-7f852e4e1000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7f852e4e1000-7f852e6e0000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7f852e6e0000-7f852e6e2000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7f852e6e2000-7f852e6ef000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7f852e6ef000-7f852e8ee000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7f852e8ee000-7f852e8f0000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7f852e8f0000-7f852e8f7000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7f852e8f7000-7f852eaf6000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7f852eaf6000-7f852eaf7000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7f852eaf7000-7f852eaf8000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7f852eaf8000-7f852ec00000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7f852ec00000-7f852edff000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7f852edff000-7f852ee00000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7f852ee00000-7f852ee01000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7f852ee01000-7f852face000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7f852face000-7f852fccd000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7f852fccd000-7f852fda6000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7f852fda6000-7f852fdf1000 rw-p 00000000 00:00 0 131 | 7f852fdf1000-7f852ffb1000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7f852ffb1000-7f85301b0000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7f85301b0000-7f85301b4000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7f85301b4000-7f85301b6000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7f85301b6000-7f85301ba000 rw-p 00000000 00:00 0 136 | 7f85301ba000-7f85301bd000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7f85301bd000-7f85303bc000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7f85303bc000-7f85303bd000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7f85303bd000-7f85303be000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7f85303be000-7f85303d3000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7f85303d3000-7f85305d3000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7f85305d3000-7f85305d4000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7f85305d4000-7f85305ec000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7f85305ec000-7f85307eb000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7f85307eb000-7f85307ec000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7f85307ec000-7f85307ed000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7f85307ed000-7f85307f1000 rw-p 00000000 00:00 0 148 | 7f85307f1000-7f8530817000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7f85308f7000-7f85308fa000 ---p 00000000 00:00 0 150 | 7f85308fa000-7f85309fc000 rw-p 00000000 00:00 0 151 | 7f8530a0a000-7f8530a12000 rw-s 00000000 08:03 2490581 /tmp/hsperfdata_ashmeet/2238 152 | 7f8530a12000-7f8530a13000 rw-p 00000000 00:00 0 153 | 7f8530a13000-7f8530a14000 r--p 00000000 00:00 0 154 | 7f8530a14000-7f8530a16000 rw-p 00000000 00:00 0 155 | 7f8530a16000-7f8530a17000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7f8530a17000-7f8530a18000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7f8530a18000-7f8530a19000 rw-p 00000000 00:00 0 158 | 7fffe96a8000-7fffe96c9000 rw-p 00000000 00:00 0 [stack] 159 | 7fffe9771000-7fffe9773000 r--p 00000000 00:00 0 [vvar] 160 | 7fffe9773000-7fffe9775000 r-xp 00000000 00:00 0 [vdso] 161 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 162 | 163 | VM Arguments: 164 | java_command: 165 | java_class_path (initial): . 166 | Launcher Type: SUN_STANDARD 167 | 168 | Environment Variables: 169 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 170 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 171 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 172 | SHELL=/bin/bash 173 | DISPLAY=:0 174 | 175 | Signal Handlers: 176 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 177 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 183 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 184 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 185 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | 189 | 190 | --------------- S Y S T E M --------------- 191 | 192 | OS:DISTRIB_ID=Ubuntu 193 | DISTRIB_RELEASE=16.04 194 | DISTRIB_CODENAME=xenial 195 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 196 | 197 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 198 | libc:glibc 2.23 NPTL 2.23 199 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 200 | load average:0.24 0.56 0.73 201 | 202 | /proc/meminfo: 203 | MemTotal: 6056748 kB 204 | MemFree: 2225040 kB 205 | MemAvailable: 3131500 kB 206 | Buffers: 84352 kB 207 | Cached: 1339740 kB 208 | SwapCached: 0 kB 209 | Active: 2581368 kB 210 | Inactive: 776752 kB 211 | Active(anon): 1937660 kB 212 | Inactive(anon): 343900 kB 213 | Active(file): 643708 kB 214 | Inactive(file): 432852 kB 215 | Unevictable: 32 kB 216 | Mlocked: 32 kB 217 | SwapTotal: 0 kB 218 | SwapFree: 0 kB 219 | Dirty: 60 kB 220 | Writeback: 0 kB 221 | AnonPages: 1933940 kB 222 | Mapped: 230608 kB 223 | Shmem: 347536 kB 224 | Slab: 172764 kB 225 | SReclaimable: 87496 kB 226 | SUnreclaim: 85268 kB 227 | KernelStack: 199456 kB 228 | PageTables: 56484 kB 229 | NFS_Unstable: 0 kB 230 | Bounce: 0 kB 231 | WritebackTmp: 0 kB 232 | CommitLimit: 3028372 kB 233 | Committed_AS: 17567896 kB 234 | VmallocTotal: 34359738367 kB 235 | VmallocUsed: 0 kB 236 | VmallocChunk: 0 kB 237 | HardwareCorrupted: 0 kB 238 | AnonHugePages: 1122304 kB 239 | CmaTotal: 0 kB 240 | CmaFree: 0 kB 241 | HugePages_Total: 0 242 | HugePages_Free: 0 243 | HugePages_Rsvd: 0 244 | HugePages_Surp: 0 245 | Hugepagesize: 2048 kB 246 | DirectMap4k: 110848 kB 247 | DirectMap2M: 6127616 kB 248 | 249 | 250 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 251 | 252 | /proc/cpuinfo: 253 | processor : 0 254 | vendor_id : GenuineIntel 255 | cpu family : 6 256 | model : 42 257 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 258 | stepping : 7 259 | microcode : 0x29 260 | cpu MHz : 2699.984 261 | cache size : 3072 KB 262 | physical id : 0 263 | siblings : 4 264 | core id : 0 265 | cpu cores : 2 266 | apicid : 0 267 | initial apicid : 0 268 | fpu : yes 269 | fpu_exception : yes 270 | cpuid level : 13 271 | wp : yes 272 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 273 | bugs : 274 | bogomips : 4589.60 275 | clflush size : 64 276 | cache_alignment : 64 277 | address sizes : 36 bits physical, 48 bits virtual 278 | power management: 279 | 280 | processor : 1 281 | vendor_id : GenuineIntel 282 | cpu family : 6 283 | model : 42 284 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 285 | stepping : 7 286 | microcode : 0x29 287 | cpu MHz : 2703.847 288 | cache size : 3072 KB 289 | physical id : 0 290 | siblings : 4 291 | core id : 0 292 | cpu cores : 2 293 | apicid : 1 294 | initial apicid : 1 295 | fpu : yes 296 | fpu_exception : yes 297 | cpuid level : 13 298 | wp : yes 299 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 300 | bugs : 301 | bogomips : 4589.60 302 | clflush size : 64 303 | cache_alignment : 64 304 | address sizes : 36 bits physical, 48 bits virtual 305 | power management: 306 | 307 | processor : 2 308 | vendor_id : GenuineIntel 309 | cpu family : 6 310 | model : 42 311 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 312 | stepping : 7 313 | microcode : 0x29 314 | cpu MHz : 2699.984 315 | cache size : 3072 KB 316 | physical id : 0 317 | siblings : 4 318 | core id : 1 319 | cpu cores : 2 320 | apicid : 2 321 | initial apicid : 2 322 | fpu : yes 323 | fpu_exception : yes 324 | cpuid level : 13 325 | wp : yes 326 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 327 | bugs : 328 | bogomips : 4589.60 329 | clflush size : 64 330 | cache_alignment : 64 331 | address sizes : 36 bits physical, 48 bits virtual 332 | power management: 333 | 334 | processor : 3 335 | vendor_id : GenuineIntel 336 | cpu family : 6 337 | model : 42 338 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 339 | stepping : 7 340 | microcode : 0x29 341 | cpu MHz : 2699.984 342 | cache size : 3072 KB 343 | physical id : 0 344 | siblings : 4 345 | core id : 1 346 | cpu cores : 2 347 | apicid : 3 348 | initial apicid : 3 349 | fpu : yes 350 | fpu_exception : yes 351 | cpuid level : 13 352 | wp : yes 353 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 354 | bugs : 355 | bogomips : 4589.60 356 | clflush size : 64 357 | cache_alignment : 64 358 | address sizes : 36 bits physical, 48 bits virtual 359 | power management: 360 | 361 | 362 | 363 | Memory: 4k page, physical 6056748k(2225040k free), swap 0k(0k free) 364 | 365 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 366 | 367 | time: Sun Oct 30 09:17:49 2016 368 | elapsed time: 0 seconds (0d 0h 0m 0s) 369 | 370 | -------------------------------------------------------------------------------- /hs_err_pid2249.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=2249, tid=0x00007f35d5c0b700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x00000000018e8000): JavaThread "Unknown thread" [_thread_in_vm, id=2249, stack(0x00007ffeaca62000,0x00007ffeacb62000)] 28 | 29 | Stack: [0x00007ffeaca62000,0x00007ffeacb62000], sp=0x00007ffeacb5b1d0, free space=996k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libjli.so+0xb223] ContinueInNewThread0+0x63 43 | C [libjli.so+0x697a] ContinueInNewThread+0x7a 44 | C [libjli.so+0x99f8] JLI_Launch+0x798 45 | C [java+0x696] JLI_Launch@@SUNWprivate_1.1+0x696 46 | C [libc.so.6+0x20830] __libc_start_main+0xf0 47 | 48 | 49 | --------------- P R O C E S S --------------- 50 | 51 | Java Threads: ( => current thread ) 52 | 53 | Other Threads: 54 | 55 | =>0x00000000018e8000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=2249, stack(0x00007ffeaca62000,0x00007ffeacb62000)] 56 | 57 | VM state:not at safepoint (not fully initialized) 58 | 59 | VM Mutex/Monitor currently owned by a thread: None 60 | 61 | GC Heap History (0 events): 62 | No events 63 | 64 | Deoptimization events (0 events): 65 | No events 66 | 67 | Internal exceptions (0 events): 68 | No events 69 | 70 | Events (0 events): 71 | No events 72 | 73 | 74 | Dynamic libraries: 75 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 76 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 77 | 018dd000-0191f000 rw-p 00000000 00:00 0 [heap] 78 | a3800000-a7700000 rw-p 00000000 00:00 0 79 | a7700000-e1300000 ---p 00000000 00:00 0 80 | e1300000-e3200000 rw-p 00000000 00:00 0 81 | e3200000-100000000 ---p 00000000 00:00 0 82 | 7f35c3153000-7f35c33fa000 rw-p 00000000 00:00 0 83 | 7f35c33fa000-7f35c35c8000 ---p 00000000 00:00 0 84 | 7f35c35c8000-7f35c35e8000 rw-p 00000000 00:00 0 85 | 7f35c35e8000-7f35c37b5000 ---p 00000000 00:00 0 86 | 7f35c37b5000-7f35c37c5000 rw-p 00000000 00:00 0 87 | 7f35c37c5000-7f35c38ac000 ---p 00000000 00:00 0 88 | 7f35c38ac000-7f35c38b7000 rw-p 00000000 00:00 0 89 | 7f35c38b7000-7f35c3c6d000 ---p 00000000 00:00 0 90 | 7f35c3c6d000-7f35c3edd000 rwxp 00000000 00:00 0 91 | 7f35c3edd000-7f35d2c6d000 ---p 00000000 00:00 0 92 | 7f35d2c6d000-7f35d2c87000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7f35d2c87000-7f35d2e87000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7f35d2e87000-7f35d2e88000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7f35d2e88000-7f35d2e93000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7f35d2e93000-7f35d3092000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7f35d3092000-7f35d3093000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7f35d3093000-7f35d3094000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7f35d3094000-7f35d309a000 rw-p 00000000 00:00 0 100 | 7f35d309a000-7f35d30a5000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7f35d30a5000-7f35d32a4000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7f35d32a4000-7f35d32a5000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7f35d32a5000-7f35d32a6000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7f35d32a6000-7f35d32bc000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7f35d32bc000-7f35d34bb000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7f35d34bb000-7f35d34bc000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7f35d34bc000-7f35d34bd000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7f35d34bd000-7f35d34bf000 rw-p 00000000 00:00 0 109 | 7f35d34bf000-7f35d34c7000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7f35d34c7000-7f35d36c6000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7f35d36c6000-7f35d36c7000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7f35d36c7000-7f35d36c8000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7f35d36c8000-7f35d36f3000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7f35d36f3000-7f35d38f2000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7f35d38f2000-7f35d38f4000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7f35d38f4000-7f35d3901000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7f35d3901000-7f35d3b00000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7f35d3b00000-7f35d3b02000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7f35d3b02000-7f35d3b09000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7f35d3b09000-7f35d3d08000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7f35d3d08000-7f35d3d09000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7f35d3d09000-7f35d3d0a000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7f35d3d0a000-7f35d3e12000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7f35d3e12000-7f35d4011000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7f35d4011000-7f35d4012000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7f35d4012000-7f35d4013000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7f35d4013000-7f35d4ce0000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7f35d4ce0000-7f35d4edf000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7f35d4edf000-7f35d4fb8000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7f35d4fb8000-7f35d5003000 rw-p 00000000 00:00 0 131 | 7f35d5003000-7f35d51c3000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7f35d51c3000-7f35d53c2000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7f35d53c2000-7f35d53c6000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7f35d53c6000-7f35d53c8000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7f35d53c8000-7f35d53cc000 rw-p 00000000 00:00 0 136 | 7f35d53cc000-7f35d53cf000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7f35d53cf000-7f35d55ce000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7f35d55ce000-7f35d55cf000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7f35d55cf000-7f35d55d0000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7f35d55d0000-7f35d55e5000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7f35d55e5000-7f35d57e5000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7f35d57e5000-7f35d57e6000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7f35d57e6000-7f35d57fe000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7f35d57fe000-7f35d59fd000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7f35d59fd000-7f35d59fe000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7f35d59fe000-7f35d59ff000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7f35d59ff000-7f35d5a03000 rw-p 00000000 00:00 0 148 | 7f35d5a03000-7f35d5a29000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7f35d5b09000-7f35d5b0a000 ---p 00000000 00:00 0 150 | 7f35d5b0a000-7f35d5c0e000 rw-p 00000000 00:00 0 151 | 7f35d5c1c000-7f35d5c24000 rw-s 00000000 08:03 2490581 /tmp/hsperfdata_ashmeet/2249 152 | 7f35d5c24000-7f35d5c25000 rw-p 00000000 00:00 0 153 | 7f35d5c25000-7f35d5c26000 r--p 00000000 00:00 0 154 | 7f35d5c26000-7f35d5c28000 rw-p 00000000 00:00 0 155 | 7f35d5c28000-7f35d5c29000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7f35d5c29000-7f35d5c2a000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7f35d5c2a000-7f35d5c2b000 rw-p 00000000 00:00 0 158 | 7ffeaca62000-7ffeaca65000 ---p 00000000 00:00 0 159 | 7ffeaca66000-7ffeacb62000 rw-p 00000000 00:00 0 [stack] 160 | 7ffeacb7f000-7ffeacb81000 r--p 00000000 00:00 0 [vvar] 161 | 7ffeacb81000-7ffeacb83000 r-xp 00000000 00:00 0 [vdso] 162 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 163 | 164 | VM Arguments: 165 | java_command: 166 | java_class_path (initial): . 167 | Launcher Type: SUN_STANDARD 168 | 169 | Environment Variables: 170 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 171 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 172 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 173 | SHELL=/bin/bash 174 | DISPLAY=:0 175 | 176 | Signal Handlers: 177 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 183 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 184 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 185 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 189 | 190 | 191 | --------------- S Y S T E M --------------- 192 | 193 | OS:DISTRIB_ID=Ubuntu 194 | DISTRIB_RELEASE=16.04 195 | DISTRIB_CODENAME=xenial 196 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 197 | 198 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 199 | libc:glibc 2.23 NPTL 2.23 200 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 201 | load average:0.24 0.54 0.72 202 | 203 | /proc/meminfo: 204 | MemTotal: 6056748 kB 205 | MemFree: 2046448 kB 206 | MemAvailable: 3119288 kB 207 | Buffers: 84396 kB 208 | Cached: 1511188 kB 209 | SwapCached: 0 kB 210 | Active: 2584628 kB 211 | Inactive: 947884 kB 212 | Active(anon): 1940716 kB 213 | Inactive(anon): 351192 kB 214 | Active(file): 643912 kB 215 | Inactive(file): 596692 kB 216 | Unevictable: 32 kB 217 | Mlocked: 32 kB 218 | SwapTotal: 0 kB 219 | SwapFree: 0 kB 220 | Dirty: 164020 kB 221 | Writeback: 4 kB 222 | AnonPages: 1936996 kB 223 | Mapped: 235976 kB 224 | Shmem: 354980 kB 225 | Slab: 177472 kB 226 | SReclaimable: 92164 kB 227 | SUnreclaim: 85308 kB 228 | KernelStack: 199520 kB 229 | PageTables: 56608 kB 230 | NFS_Unstable: 0 kB 231 | Bounce: 0 kB 232 | WritebackTmp: 0 kB 233 | CommitLimit: 3028372 kB 234 | Committed_AS: 17606284 kB 235 | VmallocTotal: 34359738367 kB 236 | VmallocUsed: 0 kB 237 | VmallocChunk: 0 kB 238 | HardwareCorrupted: 0 kB 239 | AnonHugePages: 1124352 kB 240 | CmaTotal: 0 kB 241 | CmaFree: 0 kB 242 | HugePages_Total: 0 243 | HugePages_Free: 0 244 | HugePages_Rsvd: 0 245 | HugePages_Surp: 0 246 | Hugepagesize: 2048 kB 247 | DirectMap4k: 110848 kB 248 | DirectMap2M: 6127616 kB 249 | 250 | 251 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 252 | 253 | /proc/cpuinfo: 254 | processor : 0 255 | vendor_id : GenuineIntel 256 | cpu family : 6 257 | model : 42 258 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 259 | stepping : 7 260 | microcode : 0x29 261 | cpu MHz : 2699.984 262 | cache size : 3072 KB 263 | physical id : 0 264 | siblings : 4 265 | core id : 0 266 | cpu cores : 2 267 | apicid : 0 268 | initial apicid : 0 269 | fpu : yes 270 | fpu_exception : yes 271 | cpuid level : 13 272 | wp : yes 273 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 274 | bugs : 275 | bogomips : 4589.60 276 | clflush size : 64 277 | cache_alignment : 64 278 | address sizes : 36 bits physical, 48 bits virtual 279 | power management: 280 | 281 | processor : 1 282 | vendor_id : GenuineIntel 283 | cpu family : 6 284 | model : 42 285 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 286 | stepping : 7 287 | microcode : 0x29 288 | cpu MHz : 2699.894 289 | cache size : 3072 KB 290 | physical id : 0 291 | siblings : 4 292 | core id : 0 293 | cpu cores : 2 294 | apicid : 1 295 | initial apicid : 1 296 | fpu : yes 297 | fpu_exception : yes 298 | cpuid level : 13 299 | wp : yes 300 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 301 | bugs : 302 | bogomips : 4589.60 303 | clflush size : 64 304 | cache_alignment : 64 305 | address sizes : 36 bits physical, 48 bits virtual 306 | power management: 307 | 308 | processor : 2 309 | vendor_id : GenuineIntel 310 | cpu family : 6 311 | model : 42 312 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 313 | stepping : 7 314 | microcode : 0x29 315 | cpu MHz : 2699.984 316 | cache size : 3072 KB 317 | physical id : 0 318 | siblings : 4 319 | core id : 1 320 | cpu cores : 2 321 | apicid : 2 322 | initial apicid : 2 323 | fpu : yes 324 | fpu_exception : yes 325 | cpuid level : 13 326 | wp : yes 327 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 328 | bugs : 329 | bogomips : 4589.60 330 | clflush size : 64 331 | cache_alignment : 64 332 | address sizes : 36 bits physical, 48 bits virtual 333 | power management: 334 | 335 | processor : 3 336 | vendor_id : GenuineIntel 337 | cpu family : 6 338 | model : 42 339 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 340 | stepping : 7 341 | microcode : 0x29 342 | cpu MHz : 2699.984 343 | cache size : 3072 KB 344 | physical id : 0 345 | siblings : 4 346 | core id : 1 347 | cpu cores : 2 348 | apicid : 3 349 | initial apicid : 3 350 | fpu : yes 351 | fpu_exception : yes 352 | cpuid level : 13 353 | wp : yes 354 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 355 | bugs : 356 | bogomips : 4589.60 357 | clflush size : 64 358 | cache_alignment : 64 359 | address sizes : 36 bits physical, 48 bits virtual 360 | power management: 361 | 362 | 363 | 364 | Memory: 4k page, physical 6056748k(2046448k free), swap 0k(0k free) 365 | 366 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 367 | 368 | time: Sun Oct 30 09:18:09 2016 369 | elapsed time: 0 seconds (0d 0h 0m 0s) 370 | 371 | -------------------------------------------------------------------------------- /hs_err_pid2281.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=2281, tid=0x00007f48eef63700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x00000000012b8000): JavaThread "Unknown thread" [_thread_in_vm, id=2281, stack(0x00007fff8c270000,0x00007fff8c370000)] 28 | 29 | Stack: [0x00007fff8c270000,0x00007fff8c370000], sp=0x00007fff8c368980, free space=994k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libjli.so+0xb223] ContinueInNewThread0+0x63 43 | C [libjli.so+0x697a] ContinueInNewThread+0x7a 44 | C [libjli.so+0x99f8] JLI_Launch+0x798 45 | C [java+0x696] JLI_Launch@@SUNWprivate_1.1+0x696 46 | C [libc.so.6+0x20830] __libc_start_main+0xf0 47 | 48 | 49 | --------------- P R O C E S S --------------- 50 | 51 | Java Threads: ( => current thread ) 52 | 53 | Other Threads: 54 | 55 | =>0x00000000012b8000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=2281, stack(0x00007fff8c270000,0x00007fff8c370000)] 56 | 57 | VM state:not at safepoint (not fully initialized) 58 | 59 | VM Mutex/Monitor currently owned by a thread: None 60 | 61 | GC Heap History (0 events): 62 | No events 63 | 64 | Deoptimization events (0 events): 65 | No events 66 | 67 | Internal exceptions (0 events): 68 | No events 69 | 70 | Events (0 events): 71 | No events 72 | 73 | 74 | Dynamic libraries: 75 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 76 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 77 | 012ad000-012ef000 rw-p 00000000 00:00 0 [heap] 78 | a3800000-a7700000 rw-p 00000000 00:00 0 79 | a7700000-e1300000 ---p 00000000 00:00 0 80 | e1300000-e3200000 rw-p 00000000 00:00 0 81 | e3200000-100000000 ---p 00000000 00:00 0 82 | 7f48dc4ab000-7f48dc752000 rw-p 00000000 00:00 0 83 | 7f48dc752000-7f48dc920000 ---p 00000000 00:00 0 84 | 7f48dc920000-7f48dc940000 rw-p 00000000 00:00 0 85 | 7f48dc940000-7f48dcb0d000 ---p 00000000 00:00 0 86 | 7f48dcb0d000-7f48dcb1d000 rw-p 00000000 00:00 0 87 | 7f48dcb1d000-7f48dcc04000 ---p 00000000 00:00 0 88 | 7f48dcc04000-7f48dcc0f000 rw-p 00000000 00:00 0 89 | 7f48dcc0f000-7f48dcfc5000 ---p 00000000 00:00 0 90 | 7f48dcfc5000-7f48dd235000 rwxp 00000000 00:00 0 91 | 7f48dd235000-7f48ebfc5000 ---p 00000000 00:00 0 92 | 7f48ebfc5000-7f48ebfdf000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7f48ebfdf000-7f48ec1df000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7f48ec1df000-7f48ec1e0000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7f48ec1e0000-7f48ec1eb000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7f48ec1eb000-7f48ec3ea000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7f48ec3ea000-7f48ec3eb000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7f48ec3eb000-7f48ec3ec000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7f48ec3ec000-7f48ec3f2000 rw-p 00000000 00:00 0 100 | 7f48ec3f2000-7f48ec3fd000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7f48ec3fd000-7f48ec5fc000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7f48ec5fc000-7f48ec5fd000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7f48ec5fd000-7f48ec5fe000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7f48ec5fe000-7f48ec614000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7f48ec614000-7f48ec813000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7f48ec813000-7f48ec814000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7f48ec814000-7f48ec815000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7f48ec815000-7f48ec817000 rw-p 00000000 00:00 0 109 | 7f48ec817000-7f48ec81f000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7f48ec81f000-7f48eca1e000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7f48eca1e000-7f48eca1f000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7f48eca1f000-7f48eca20000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7f48eca20000-7f48eca4b000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7f48eca4b000-7f48ecc4a000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7f48ecc4a000-7f48ecc4c000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7f48ecc4c000-7f48ecc59000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7f48ecc59000-7f48ece58000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7f48ece58000-7f48ece5a000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7f48ece5a000-7f48ece61000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7f48ece61000-7f48ed060000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7f48ed060000-7f48ed061000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7f48ed061000-7f48ed062000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7f48ed062000-7f48ed16a000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7f48ed16a000-7f48ed369000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7f48ed369000-7f48ed36a000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7f48ed36a000-7f48ed36b000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7f48ed36b000-7f48ee038000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7f48ee038000-7f48ee237000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7f48ee237000-7f48ee310000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7f48ee310000-7f48ee35b000 rw-p 00000000 00:00 0 131 | 7f48ee35b000-7f48ee51b000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7f48ee51b000-7f48ee71a000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7f48ee71a000-7f48ee71e000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7f48ee71e000-7f48ee720000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7f48ee720000-7f48ee724000 rw-p 00000000 00:00 0 136 | 7f48ee724000-7f48ee727000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7f48ee727000-7f48ee926000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7f48ee926000-7f48ee927000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7f48ee927000-7f48ee928000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7f48ee928000-7f48ee93d000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7f48ee93d000-7f48eeb3d000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7f48eeb3d000-7f48eeb3e000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7f48eeb3e000-7f48eeb56000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7f48eeb56000-7f48eed55000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7f48eed55000-7f48eed56000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7f48eed56000-7f48eed57000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7f48eed57000-7f48eed5b000 rw-p 00000000 00:00 0 148 | 7f48eed5b000-7f48eed81000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7f48eee61000-7f48eee62000 ---p 00000000 00:00 0 150 | 7f48eee62000-7f48eef66000 rw-p 00000000 00:00 0 151 | 7f48eef74000-7f48eef7c000 rw-s 00000000 08:03 2490596 /tmp/hsperfdata_ashmeet/2281 152 | 7f48eef7c000-7f48eef7d000 rw-p 00000000 00:00 0 153 | 7f48eef7d000-7f48eef7e000 r--p 00000000 00:00 0 154 | 7f48eef7e000-7f48eef80000 rw-p 00000000 00:00 0 155 | 7f48eef80000-7f48eef81000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7f48eef81000-7f48eef82000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7f48eef82000-7f48eef83000 rw-p 00000000 00:00 0 158 | 7fff8c270000-7fff8c273000 ---p 00000000 00:00 0 159 | 7fff8c274000-7fff8c370000 rw-p 00000000 00:00 0 [stack] 160 | 7fff8c3e2000-7fff8c3e4000 r--p 00000000 00:00 0 [vvar] 161 | 7fff8c3e4000-7fff8c3e6000 r-xp 00000000 00:00 0 [vdso] 162 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 163 | 164 | VM Arguments: 165 | java_command: 166 | java_class_path (initial): . 167 | Launcher Type: SUN_STANDARD 168 | 169 | Environment Variables: 170 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 171 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 172 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 173 | SHELL=/bin/bash 174 | DISPLAY=:0 175 | 176 | Signal Handlers: 177 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 183 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 184 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 185 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 189 | 190 | 191 | --------------- S Y S T E M --------------- 192 | 193 | OS:DISTRIB_ID=Ubuntu 194 | DISTRIB_RELEASE=16.04 195 | DISTRIB_CODENAME=xenial 196 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 197 | 198 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 199 | libc:glibc 2.23 NPTL 2.23 200 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 201 | load average:0.77 0.63 0.75 202 | 203 | /proc/meminfo: 204 | MemTotal: 6056748 kB 205 | MemFree: 2062364 kB 206 | MemAvailable: 3137196 kB 207 | Buffers: 84572 kB 208 | Cached: 1500440 kB 209 | SwapCached: 0 kB 210 | Active: 2579808 kB 211 | Inactive: 936120 kB 212 | Active(anon): 1934572 kB 213 | Inactive(anon): 338780 kB 214 | Active(file): 645236 kB 215 | Inactive(file): 597340 kB 216 | Unevictable: 32 kB 217 | Mlocked: 32 kB 218 | SwapTotal: 0 kB 219 | SwapFree: 0 kB 220 | Dirty: 1668 kB 221 | Writeback: 0 kB 222 | AnonPages: 1930968 kB 223 | Mapped: 230588 kB 224 | Shmem: 342432 kB 225 | Slab: 177540 kB 226 | SReclaimable: 92208 kB 227 | SUnreclaim: 85332 kB 228 | KernelStack: 199456 kB 229 | PageTables: 55536 kB 230 | NFS_Unstable: 0 kB 231 | Bounce: 0 kB 232 | WritebackTmp: 0 kB 233 | CommitLimit: 3028372 kB 234 | Committed_AS: 17537336 kB 235 | VmallocTotal: 34359738367 kB 236 | VmallocUsed: 0 kB 237 | VmallocChunk: 0 kB 238 | HardwareCorrupted: 0 kB 239 | AnonHugePages: 1134592 kB 240 | CmaTotal: 0 kB 241 | CmaFree: 0 kB 242 | HugePages_Total: 0 243 | HugePages_Free: 0 244 | HugePages_Rsvd: 0 245 | HugePages_Surp: 0 246 | Hugepagesize: 2048 kB 247 | DirectMap4k: 110848 kB 248 | DirectMap2M: 6127616 kB 249 | 250 | 251 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 252 | 253 | /proc/cpuinfo: 254 | processor : 0 255 | vendor_id : GenuineIntel 256 | cpu family : 6 257 | model : 42 258 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 259 | stepping : 7 260 | microcode : 0x29 261 | cpu MHz : 2699.984 262 | cache size : 3072 KB 263 | physical id : 0 264 | siblings : 4 265 | core id : 0 266 | cpu cores : 2 267 | apicid : 0 268 | initial apicid : 0 269 | fpu : yes 270 | fpu_exception : yes 271 | cpuid level : 13 272 | wp : yes 273 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 274 | bugs : 275 | bogomips : 4589.60 276 | clflush size : 64 277 | cache_alignment : 64 278 | address sizes : 36 bits physical, 48 bits virtual 279 | power management: 280 | 281 | processor : 1 282 | vendor_id : GenuineIntel 283 | cpu family : 6 284 | model : 42 285 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 286 | stepping : 7 287 | microcode : 0x29 288 | cpu MHz : 2699.984 289 | cache size : 3072 KB 290 | physical id : 0 291 | siblings : 4 292 | core id : 0 293 | cpu cores : 2 294 | apicid : 1 295 | initial apicid : 1 296 | fpu : yes 297 | fpu_exception : yes 298 | cpuid level : 13 299 | wp : yes 300 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 301 | bugs : 302 | bogomips : 4589.60 303 | clflush size : 64 304 | cache_alignment : 64 305 | address sizes : 36 bits physical, 48 bits virtual 306 | power management: 307 | 308 | processor : 2 309 | vendor_id : GenuineIntel 310 | cpu family : 6 311 | model : 42 312 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 313 | stepping : 7 314 | microcode : 0x29 315 | cpu MHz : 2699.984 316 | cache size : 3072 KB 317 | physical id : 0 318 | siblings : 4 319 | core id : 1 320 | cpu cores : 2 321 | apicid : 2 322 | initial apicid : 2 323 | fpu : yes 324 | fpu_exception : yes 325 | cpuid level : 13 326 | wp : yes 327 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 328 | bugs : 329 | bogomips : 4589.60 330 | clflush size : 64 331 | cache_alignment : 64 332 | address sizes : 36 bits physical, 48 bits virtual 333 | power management: 334 | 335 | processor : 3 336 | vendor_id : GenuineIntel 337 | cpu family : 6 338 | model : 42 339 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 340 | stepping : 7 341 | microcode : 0x29 342 | cpu MHz : 2708.070 343 | cache size : 3072 KB 344 | physical id : 0 345 | siblings : 4 346 | core id : 1 347 | cpu cores : 2 348 | apicid : 3 349 | initial apicid : 3 350 | fpu : yes 351 | fpu_exception : yes 352 | cpuid level : 13 353 | wp : yes 354 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 355 | bugs : 356 | bogomips : 4589.60 357 | clflush size : 64 358 | cache_alignment : 64 359 | address sizes : 36 bits physical, 48 bits virtual 360 | power management: 361 | 362 | 363 | 364 | Memory: 4k page, physical 6056748k(2062364k free), swap 0k(0k free) 365 | 366 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 367 | 368 | time: Sun Oct 30 09:18:36 2016 369 | elapsed time: 0 seconds (0d 0h 0m 0s) 370 | 371 | -------------------------------------------------------------------------------- /hs_err_pid2286.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=2286, tid=0x00007f97646ed700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x00007f975c009800): JavaThread "Unknown thread" [_thread_in_vm, id=2288, stack(0x00007f97645ed000,0x00007f97646ee000)] 28 | 29 | Stack: [0x00007f97645ed000,0x00007f97646ee000], sp=0x00007f97646ec5f0, free space=1021k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libpthread.so.0+0x76fa] start_thread+0xca 43 | 44 | 45 | --------------- P R O C E S S --------------- 46 | 47 | Java Threads: ( => current thread ) 48 | 49 | Other Threads: 50 | 51 | =>0x00007f975c009800 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=2288, stack(0x00007f97645ed000,0x00007f97646ee000)] 52 | 53 | VM state:not at safepoint (not fully initialized) 54 | 55 | VM Mutex/Monitor currently owned by a thread: None 56 | 57 | GC Heap History (0 events): 58 | No events 59 | 60 | Deoptimization events (0 events): 61 | No events 62 | 63 | Internal exceptions (0 events): 64 | No events 65 | 66 | Events (0 events): 67 | No events 68 | 69 | 70 | Dynamic libraries: 71 | 00400000-00401000 r-xp 00000000 08:03 4851635 /usr/lib/jvm/java-8-oracle/jre/bin/java 72 | 00600000-00601000 rw-p 00000000 08:03 4851635 /usr/lib/jvm/java-8-oracle/jre/bin/java 73 | 00c56000-00c77000 rw-p 00000000 00:00 0 [heap] 74 | a3800000-a7700000 rw-p 00000000 00:00 0 75 | a7700000-e1300000 ---p 00000000 00:00 0 76 | e1300000-e3200000 rw-p 00000000 00:00 0 77 | e3200000-100000000 ---p 00000000 00:00 0 78 | 7f974d000000-7f974d270000 rwxp 00000000 00:00 0 79 | 7f974d270000-7f975c000000 ---p 00000000 00:00 0 80 | 7f975c000000-7f975c039000 rw-p 00000000 00:00 0 81 | 7f975c039000-7f9760000000 ---p 00000000 00:00 0 82 | 7f9760b36000-7f9760dbd000 rw-p 00000000 00:00 0 83 | 7f9760dbd000-7f9760dbe000 ---p 00000000 00:00 0 84 | 7f9760dbe000-7f9760ede000 rw-p 00000000 00:00 0 85 | 7f9760ede000-7f97610ac000 ---p 00000000 00:00 0 86 | 7f97610ac000-7f97610cc000 rw-p 00000000 00:00 0 87 | 7f97610cc000-7f9761299000 ---p 00000000 00:00 0 88 | 7f9761299000-7f97612a9000 rw-p 00000000 00:00 0 89 | 7f97612a9000-7f9761390000 ---p 00000000 00:00 0 90 | 7f9761390000-7f976139b000 rw-p 00000000 00:00 0 91 | 7f976139b000-7f9761751000 ---p 00000000 00:00 0 92 | 7f9761751000-7f976176b000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7f976176b000-7f976196b000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7f976196b000-7f976196c000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7f976196c000-7f9761977000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7f9761977000-7f9761b76000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7f9761b76000-7f9761b77000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7f9761b77000-7f9761b78000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7f9761b78000-7f9761b7e000 rw-p 00000000 00:00 0 100 | 7f9761b7e000-7f9761b89000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7f9761b89000-7f9761d88000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7f9761d88000-7f9761d89000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7f9761d89000-7f9761d8a000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7f9761d8a000-7f9761da0000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7f9761da0000-7f9761f9f000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7f9761f9f000-7f9761fa0000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7f9761fa0000-7f9761fa1000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7f9761fa1000-7f9761fa3000 rw-p 00000000 00:00 0 109 | 7f9761fa3000-7f9761fab000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7f9761fab000-7f97621aa000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7f97621aa000-7f97621ab000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7f97621ab000-7f97621ac000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7f97621ac000-7f97621d7000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7f97621d7000-7f97623d6000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7f97623d6000-7f97623d8000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7f97623d8000-7f97623e5000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7f97623e5000-7f97625e4000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7f97625e4000-7f97625e6000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7f97625e6000-7f97625ed000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7f97625ed000-7f97627ec000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7f97627ec000-7f97627ed000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7f97627ed000-7f97627ee000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7f97627ee000-7f97628f6000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7f97628f6000-7f9762af5000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7f9762af5000-7f9762af6000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7f9762af6000-7f9762af7000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7f9762af7000-7f97637c4000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7f97637c4000-7f97639c3000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7f97639c3000-7f9763a9c000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7f9763a9c000-7f9763ae7000 rw-p 00000000 00:00 0 131 | 7f9763ae7000-7f9763ca7000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7f9763ca7000-7f9763ea6000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7f9763ea6000-7f9763eaa000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7f9763eaa000-7f9763eac000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7f9763eac000-7f9763eb0000 rw-p 00000000 00:00 0 136 | 7f9763eb0000-7f9763eb3000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7f9763eb3000-7f97640b2000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7f97640b2000-7f97640b3000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7f97640b3000-7f97640b4000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7f97640b4000-7f97640c9000 r-xp 00000000 08:03 4720485 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/jli/libjli.so 141 | 7f97640c9000-7f97642c9000 ---p 00015000 08:03 4720485 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/jli/libjli.so 142 | 7f97642c9000-7f97642ca000 rw-p 00015000 08:03 4720485 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/jli/libjli.so 143 | 7f97642ca000-7f97642e2000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7f97642e2000-7f97644e1000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7f97644e1000-7f97644e2000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7f97644e2000-7f97644e3000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7f97644e3000-7f97644e7000 rw-p 00000000 00:00 0 148 | 7f97644e7000-7f976450d000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7f97645ed000-7f97645f0000 ---p 00000000 00:00 0 150 | 7f97645f0000-7f97646f2000 rw-p 00000000 00:00 0 151 | 7f9764700000-7f9764708000 rw-s 00000000 08:03 2490596 /tmp/hsperfdata_ashmeet/2286 152 | 7f9764708000-7f9764709000 rw-p 00000000 00:00 0 153 | 7f9764709000-7f976470a000 r--p 00000000 00:00 0 154 | 7f976470a000-7f976470c000 rw-p 00000000 00:00 0 155 | 7f976470c000-7f976470d000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7f976470d000-7f976470e000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7f976470e000-7f976470f000 rw-p 00000000 00:00 0 158 | 7fff5a57d000-7fff5a59e000 rw-p 00000000 00:00 0 [stack] 159 | 7fff5a5ab000-7fff5a5ad000 r--p 00000000 00:00 0 [vvar] 160 | 7fff5a5ad000-7fff5a5af000 r-xp 00000000 00:00 0 [vdso] 161 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 162 | 163 | VM Arguments: 164 | java_command: 165 | java_class_path (initial): . 166 | Launcher Type: SUN_STANDARD 167 | 168 | Environment Variables: 169 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 170 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 171 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 172 | SHELL=/bin/bash 173 | DISPLAY=:0 174 | 175 | Signal Handlers: 176 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 177 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 183 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 184 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 185 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | 189 | 190 | --------------- S Y S T E M --------------- 191 | 192 | OS:DISTRIB_ID=Ubuntu 193 | DISTRIB_RELEASE=16.04 194 | DISTRIB_CODENAME=xenial 195 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 196 | 197 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 198 | libc:glibc 2.23 NPTL 2.23 199 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 200 | load average:0.77 0.63 0.75 201 | 202 | /proc/meminfo: 203 | MemTotal: 6056748 kB 204 | MemFree: 2060440 kB 205 | MemAvailable: 3135328 kB 206 | Buffers: 84572 kB 207 | Cached: 1499952 kB 208 | SwapCached: 0 kB 209 | Active: 2582432 kB 210 | Inactive: 935784 kB 211 | Active(anon): 1937184 kB 212 | Inactive(anon): 338424 kB 213 | Active(file): 645248 kB 214 | Inactive(file): 597360 kB 215 | Unevictable: 32 kB 216 | Mlocked: 32 kB 217 | SwapTotal: 0 kB 218 | SwapFree: 0 kB 219 | Dirty: 1692 kB 220 | Writeback: 0 kB 221 | AnonPages: 1933756 kB 222 | Mapped: 230248 kB 223 | Shmem: 341920 kB 224 | Slab: 177612 kB 225 | SReclaimable: 92256 kB 226 | SUnreclaim: 85356 kB 227 | KernelStack: 199488 kB 228 | PageTables: 55540 kB 229 | NFS_Unstable: 0 kB 230 | Bounce: 0 kB 231 | WritebackTmp: 0 kB 232 | CommitLimit: 3028372 kB 233 | Committed_AS: 17533000 kB 234 | VmallocTotal: 34359738367 kB 235 | VmallocUsed: 0 kB 236 | VmallocChunk: 0 kB 237 | HardwareCorrupted: 0 kB 238 | AnonHugePages: 1132544 kB 239 | CmaTotal: 0 kB 240 | CmaFree: 0 kB 241 | HugePages_Total: 0 242 | HugePages_Free: 0 243 | HugePages_Rsvd: 0 244 | HugePages_Surp: 0 245 | Hugepagesize: 2048 kB 246 | DirectMap4k: 110848 kB 247 | DirectMap2M: 6127616 kB 248 | 249 | 250 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 251 | 252 | /proc/cpuinfo: 253 | processor : 0 254 | vendor_id : GenuineIntel 255 | cpu family : 6 256 | model : 42 257 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 258 | stepping : 7 259 | microcode : 0x29 260 | cpu MHz : 2699.984 261 | cache size : 3072 KB 262 | physical id : 0 263 | siblings : 4 264 | core id : 0 265 | cpu cores : 2 266 | apicid : 0 267 | initial apicid : 0 268 | fpu : yes 269 | fpu_exception : yes 270 | cpuid level : 13 271 | wp : yes 272 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 273 | bugs : 274 | bogomips : 4589.60 275 | clflush size : 64 276 | cache_alignment : 64 277 | address sizes : 36 bits physical, 48 bits virtual 278 | power management: 279 | 280 | processor : 1 281 | vendor_id : GenuineIntel 282 | cpu family : 6 283 | model : 42 284 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 285 | stepping : 7 286 | microcode : 0x29 287 | cpu MHz : 2699.984 288 | cache size : 3072 KB 289 | physical id : 0 290 | siblings : 4 291 | core id : 0 292 | cpu cores : 2 293 | apicid : 1 294 | initial apicid : 1 295 | fpu : yes 296 | fpu_exception : yes 297 | cpuid level : 13 298 | wp : yes 299 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 300 | bugs : 301 | bogomips : 4589.60 302 | clflush size : 64 303 | cache_alignment : 64 304 | address sizes : 36 bits physical, 48 bits virtual 305 | power management: 306 | 307 | processor : 2 308 | vendor_id : GenuineIntel 309 | cpu family : 6 310 | model : 42 311 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 312 | stepping : 7 313 | microcode : 0x29 314 | cpu MHz : 2699.984 315 | cache size : 3072 KB 316 | physical id : 0 317 | siblings : 4 318 | core id : 1 319 | cpu cores : 2 320 | apicid : 2 321 | initial apicid : 2 322 | fpu : yes 323 | fpu_exception : yes 324 | cpuid level : 13 325 | wp : yes 326 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 327 | bugs : 328 | bogomips : 4589.60 329 | clflush size : 64 330 | cache_alignment : 64 331 | address sizes : 36 bits physical, 48 bits virtual 332 | power management: 333 | 334 | processor : 3 335 | vendor_id : GenuineIntel 336 | cpu family : 6 337 | model : 42 338 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 339 | stepping : 7 340 | microcode : 0x29 341 | cpu MHz : 2699.984 342 | cache size : 3072 KB 343 | physical id : 0 344 | siblings : 4 345 | core id : 1 346 | cpu cores : 2 347 | apicid : 3 348 | initial apicid : 3 349 | fpu : yes 350 | fpu_exception : yes 351 | cpuid level : 13 352 | wp : yes 353 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 354 | bugs : 355 | bogomips : 4589.60 356 | clflush size : 64 357 | cache_alignment : 64 358 | address sizes : 36 bits physical, 48 bits virtual 359 | power management: 360 | 361 | 362 | 363 | Memory: 4k page, physical 6056748k(2060440k free), swap 0k(0k free) 364 | 365 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 366 | 367 | time: Sun Oct 30 09:18:36 2016 368 | elapsed time: 0 seconds (0d 0h 0m 0s) 369 | 370 | -------------------------------------------------------------------------------- /hs_err_pid2294.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=2294, tid=0x00007fba8c4f1700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x00007fba84009800): JavaThread "Unknown thread" [_thread_in_vm, id=2295, stack(0x00007fba8c3f1000,0x00007fba8c4f2000)] 28 | 29 | Stack: [0x00007fba8c3f1000,0x00007fba8c4f2000], sp=0x00007fba8c4f05f0, free space=1021k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libpthread.so.0+0x76fa] start_thread+0xca 43 | 44 | 45 | --------------- P R O C E S S --------------- 46 | 47 | Java Threads: ( => current thread ) 48 | 49 | Other Threads: 50 | 51 | =>0x00007fba84009800 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=2295, stack(0x00007fba8c3f1000,0x00007fba8c4f2000)] 52 | 53 | VM state:not at safepoint (not fully initialized) 54 | 55 | VM Mutex/Monitor currently owned by a thread: None 56 | 57 | GC Heap History (0 events): 58 | No events 59 | 60 | Deoptimization events (0 events): 61 | No events 62 | 63 | Internal exceptions (0 events): 64 | No events 65 | 66 | Events (0 events): 67 | No events 68 | 69 | 70 | Dynamic libraries: 71 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 72 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 73 | 008fb000-0091c000 rw-p 00000000 00:00 0 [heap] 74 | a3800000-a7700000 rw-p 00000000 00:00 0 75 | a7700000-e1300000 ---p 00000000 00:00 0 76 | e1300000-e3200000 rw-p 00000000 00:00 0 77 | e3200000-100000000 ---p 00000000 00:00 0 78 | 7fba75000000-7fba75270000 rwxp 00000000 00:00 0 79 | 7fba75270000-7fba84000000 ---p 00000000 00:00 0 80 | 7fba84000000-7fba84039000 rw-p 00000000 00:00 0 81 | 7fba84039000-7fba88000000 ---p 00000000 00:00 0 82 | 7fba8893a000-7fba88bc1000 rw-p 00000000 00:00 0 83 | 7fba88bc1000-7fba88bc2000 ---p 00000000 00:00 0 84 | 7fba88bc2000-7fba88ce2000 rw-p 00000000 00:00 0 85 | 7fba88ce2000-7fba88eb0000 ---p 00000000 00:00 0 86 | 7fba88eb0000-7fba88ed0000 rw-p 00000000 00:00 0 87 | 7fba88ed0000-7fba8909d000 ---p 00000000 00:00 0 88 | 7fba8909d000-7fba890ad000 rw-p 00000000 00:00 0 89 | 7fba890ad000-7fba89194000 ---p 00000000 00:00 0 90 | 7fba89194000-7fba8919f000 rw-p 00000000 00:00 0 91 | 7fba8919f000-7fba89555000 ---p 00000000 00:00 0 92 | 7fba89555000-7fba8956f000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7fba8956f000-7fba8976f000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7fba8976f000-7fba89770000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7fba89770000-7fba8977b000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7fba8977b000-7fba8997a000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7fba8997a000-7fba8997b000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7fba8997b000-7fba8997c000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7fba8997c000-7fba89982000 rw-p 00000000 00:00 0 100 | 7fba89982000-7fba8998d000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7fba8998d000-7fba89b8c000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7fba89b8c000-7fba89b8d000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7fba89b8d000-7fba89b8e000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7fba89b8e000-7fba89ba4000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7fba89ba4000-7fba89da3000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7fba89da3000-7fba89da4000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7fba89da4000-7fba89da5000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7fba89da5000-7fba89da7000 rw-p 00000000 00:00 0 109 | 7fba89da7000-7fba89daf000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7fba89daf000-7fba89fae000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7fba89fae000-7fba89faf000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7fba89faf000-7fba89fb0000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7fba89fb0000-7fba89fdb000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7fba89fdb000-7fba8a1da000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7fba8a1da000-7fba8a1dc000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7fba8a1dc000-7fba8a1e9000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7fba8a1e9000-7fba8a3e8000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7fba8a3e8000-7fba8a3ea000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7fba8a3ea000-7fba8a3f1000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7fba8a3f1000-7fba8a5f0000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7fba8a5f0000-7fba8a5f1000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7fba8a5f1000-7fba8a5f2000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7fba8a5f2000-7fba8a6fa000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7fba8a6fa000-7fba8a8f9000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7fba8a8f9000-7fba8a8fa000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7fba8a8fa000-7fba8a8fb000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7fba8a8fb000-7fba8b5c8000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7fba8b5c8000-7fba8b7c7000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7fba8b7c7000-7fba8b8a0000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7fba8b8a0000-7fba8b8eb000 rw-p 00000000 00:00 0 131 | 7fba8b8eb000-7fba8baab000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7fba8baab000-7fba8bcaa000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7fba8bcaa000-7fba8bcae000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7fba8bcae000-7fba8bcb0000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7fba8bcb0000-7fba8bcb4000 rw-p 00000000 00:00 0 136 | 7fba8bcb4000-7fba8bcb7000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7fba8bcb7000-7fba8beb6000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7fba8beb6000-7fba8beb7000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7fba8beb7000-7fba8beb8000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7fba8beb8000-7fba8becd000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7fba8becd000-7fba8c0cd000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7fba8c0cd000-7fba8c0ce000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7fba8c0ce000-7fba8c0e6000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7fba8c0e6000-7fba8c2e5000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7fba8c2e5000-7fba8c2e6000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7fba8c2e6000-7fba8c2e7000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7fba8c2e7000-7fba8c2eb000 rw-p 00000000 00:00 0 148 | 7fba8c2eb000-7fba8c311000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7fba8c3f1000-7fba8c3f4000 ---p 00000000 00:00 0 150 | 7fba8c3f4000-7fba8c4f6000 rw-p 00000000 00:00 0 151 | 7fba8c504000-7fba8c50c000 rw-s 00000000 08:03 2490596 /tmp/hsperfdata_ashmeet/2294 152 | 7fba8c50c000-7fba8c50d000 rw-p 00000000 00:00 0 153 | 7fba8c50d000-7fba8c50e000 r--p 00000000 00:00 0 154 | 7fba8c50e000-7fba8c510000 rw-p 00000000 00:00 0 155 | 7fba8c510000-7fba8c511000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7fba8c511000-7fba8c512000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7fba8c512000-7fba8c513000 rw-p 00000000 00:00 0 158 | 7ffe54db8000-7ffe54dd9000 rw-p 00000000 00:00 0 [stack] 159 | 7ffe54dfb000-7ffe54dfd000 r--p 00000000 00:00 0 [vvar] 160 | 7ffe54dfd000-7ffe54dff000 r-xp 00000000 00:00 0 [vdso] 161 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 162 | 163 | VM Arguments: 164 | java_command: 165 | java_class_path (initial): . 166 | Launcher Type: SUN_STANDARD 167 | 168 | Environment Variables: 169 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 170 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 171 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 172 | SHELL=/bin/bash 173 | DISPLAY=:0 174 | 175 | Signal Handlers: 176 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 177 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 183 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 184 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 185 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | 189 | 190 | --------------- S Y S T E M --------------- 191 | 192 | OS:DISTRIB_ID=Ubuntu 193 | DISTRIB_RELEASE=16.04 194 | DISTRIB_CODENAME=xenial 195 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 196 | 197 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 198 | libc:glibc 2.23 NPTL 2.23 199 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 200 | load average:0.65 0.61 0.74 201 | 202 | /proc/meminfo: 203 | MemTotal: 6056748 kB 204 | MemFree: 2058636 kB 205 | MemAvailable: 3133568 kB 206 | Buffers: 84636 kB 207 | Cached: 1500296 kB 208 | SwapCached: 0 kB 209 | Active: 2584568 kB 210 | Inactive: 936128 kB 211 | Active(anon): 1939260 kB 212 | Inactive(anon): 338772 kB 213 | Active(file): 645308 kB 214 | Inactive(file): 597356 kB 215 | Unevictable: 32 kB 216 | Mlocked: 32 kB 217 | SwapTotal: 0 kB 218 | SwapFree: 0 kB 219 | Dirty: 1448 kB 220 | Writeback: 0 kB 221 | AnonPages: 1935804 kB 222 | Mapped: 230860 kB 223 | Shmem: 342264 kB 224 | Slab: 177584 kB 225 | SReclaimable: 92232 kB 226 | SUnreclaim: 85352 kB 227 | KernelStack: 199504 kB 228 | PageTables: 55540 kB 229 | NFS_Unstable: 0 kB 230 | Bounce: 0 kB 231 | WritebackTmp: 0 kB 232 | CommitLimit: 3028372 kB 233 | Committed_AS: 17532436 kB 234 | VmallocTotal: 34359738367 kB 235 | VmallocUsed: 0 kB 236 | VmallocChunk: 0 kB 237 | HardwareCorrupted: 0 kB 238 | AnonHugePages: 1136640 kB 239 | CmaTotal: 0 kB 240 | CmaFree: 0 kB 241 | HugePages_Total: 0 242 | HugePages_Free: 0 243 | HugePages_Rsvd: 0 244 | HugePages_Surp: 0 245 | Hugepagesize: 2048 kB 246 | DirectMap4k: 110848 kB 247 | DirectMap2M: 6127616 kB 248 | 249 | 250 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 251 | 252 | /proc/cpuinfo: 253 | processor : 0 254 | vendor_id : GenuineIntel 255 | cpu family : 6 256 | model : 42 257 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 258 | stepping : 7 259 | microcode : 0x29 260 | cpu MHz : 2699.984 261 | cache size : 3072 KB 262 | physical id : 0 263 | siblings : 4 264 | core id : 0 265 | cpu cores : 2 266 | apicid : 0 267 | initial apicid : 0 268 | fpu : yes 269 | fpu_exception : yes 270 | cpuid level : 13 271 | wp : yes 272 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 273 | bugs : 274 | bogomips : 4589.60 275 | clflush size : 64 276 | cache_alignment : 64 277 | address sizes : 36 bits physical, 48 bits virtual 278 | power management: 279 | 280 | processor : 1 281 | vendor_id : GenuineIntel 282 | cpu family : 6 283 | model : 42 284 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 285 | stepping : 7 286 | microcode : 0x29 287 | cpu MHz : 2699.984 288 | cache size : 3072 KB 289 | physical id : 0 290 | siblings : 4 291 | core id : 0 292 | cpu cores : 2 293 | apicid : 1 294 | initial apicid : 1 295 | fpu : yes 296 | fpu_exception : yes 297 | cpuid level : 13 298 | wp : yes 299 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 300 | bugs : 301 | bogomips : 4589.60 302 | clflush size : 64 303 | cache_alignment : 64 304 | address sizes : 36 bits physical, 48 bits virtual 305 | power management: 306 | 307 | processor : 2 308 | vendor_id : GenuineIntel 309 | cpu family : 6 310 | model : 42 311 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 312 | stepping : 7 313 | microcode : 0x29 314 | cpu MHz : 2699.984 315 | cache size : 3072 KB 316 | physical id : 0 317 | siblings : 4 318 | core id : 1 319 | cpu cores : 2 320 | apicid : 2 321 | initial apicid : 2 322 | fpu : yes 323 | fpu_exception : yes 324 | cpuid level : 13 325 | wp : yes 326 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 327 | bugs : 328 | bogomips : 4589.60 329 | clflush size : 64 330 | cache_alignment : 64 331 | address sizes : 36 bits physical, 48 bits virtual 332 | power management: 333 | 334 | processor : 3 335 | vendor_id : GenuineIntel 336 | cpu family : 6 337 | model : 42 338 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 339 | stepping : 7 340 | microcode : 0x29 341 | cpu MHz : 2699.984 342 | cache size : 3072 KB 343 | physical id : 0 344 | siblings : 4 345 | core id : 1 346 | cpu cores : 2 347 | apicid : 3 348 | initial apicid : 3 349 | fpu : yes 350 | fpu_exception : yes 351 | cpuid level : 13 352 | wp : yes 353 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 354 | bugs : 355 | bogomips : 4589.60 356 | clflush size : 64 357 | cache_alignment : 64 358 | address sizes : 36 bits physical, 48 bits virtual 359 | power management: 360 | 361 | 362 | 363 | Memory: 4k page, physical 6056748k(2058636k free), swap 0k(0k free) 364 | 365 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 366 | 367 | time: Sun Oct 30 09:18:43 2016 368 | elapsed time: 0 seconds (0d 0h 0m 0s) 369 | 370 | -------------------------------------------------------------------------------- /hs_err_pid2454.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=2454, tid=0x00007f8cb9b7b700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x0000000002303000): JavaThread "Unknown thread" [_thread_in_vm, id=2454, stack(0x00007ffc23ad3000,0x00007ffc23bd3000)] 28 | 29 | Stack: [0x00007ffc23ad3000,0x00007ffc23bd3000], sp=0x00007ffc23bcb9e0, free space=994k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libjli.so+0xb223] ContinueInNewThread0+0x63 43 | C [libjli.so+0x697a] ContinueInNewThread+0x7a 44 | C [libjli.so+0x99f8] JLI_Launch+0x798 45 | C [java+0x696] JLI_Launch@@SUNWprivate_1.1+0x696 46 | C [libc.so.6+0x20830] __libc_start_main+0xf0 47 | 48 | 49 | --------------- P R O C E S S --------------- 50 | 51 | Java Threads: ( => current thread ) 52 | 53 | Other Threads: 54 | 55 | =>0x0000000002303000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=2454, stack(0x00007ffc23ad3000,0x00007ffc23bd3000)] 56 | 57 | VM state:not at safepoint (not fully initialized) 58 | 59 | VM Mutex/Monitor currently owned by a thread: None 60 | 61 | GC Heap History (0 events): 62 | No events 63 | 64 | Deoptimization events (0 events): 65 | No events 66 | 67 | Internal exceptions (0 events): 68 | No events 69 | 70 | Events (0 events): 71 | No events 72 | 73 | 74 | Dynamic libraries: 75 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 76 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 77 | 022f8000-0233a000 rw-p 00000000 00:00 0 [heap] 78 | a3800000-a7700000 rw-p 00000000 00:00 0 79 | a7700000-e1300000 ---p 00000000 00:00 0 80 | e1300000-e3200000 rw-p 00000000 00:00 0 81 | e3200000-100000000 ---p 00000000 00:00 0 82 | 7f8ca70c3000-7f8ca736a000 rw-p 00000000 00:00 0 83 | 7f8ca736a000-7f8ca7538000 ---p 00000000 00:00 0 84 | 7f8ca7538000-7f8ca7558000 rw-p 00000000 00:00 0 85 | 7f8ca7558000-7f8ca7725000 ---p 00000000 00:00 0 86 | 7f8ca7725000-7f8ca7735000 rw-p 00000000 00:00 0 87 | 7f8ca7735000-7f8ca781c000 ---p 00000000 00:00 0 88 | 7f8ca781c000-7f8ca7827000 rw-p 00000000 00:00 0 89 | 7f8ca7827000-7f8ca7bdd000 ---p 00000000 00:00 0 90 | 7f8ca7bdd000-7f8ca7e4d000 rwxp 00000000 00:00 0 91 | 7f8ca7e4d000-7f8cb6bdd000 ---p 00000000 00:00 0 92 | 7f8cb6bdd000-7f8cb6bf7000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7f8cb6bf7000-7f8cb6df7000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7f8cb6df7000-7f8cb6df8000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7f8cb6df8000-7f8cb6e03000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7f8cb6e03000-7f8cb7002000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7f8cb7002000-7f8cb7003000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7f8cb7003000-7f8cb7004000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7f8cb7004000-7f8cb700a000 rw-p 00000000 00:00 0 100 | 7f8cb700a000-7f8cb7015000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7f8cb7015000-7f8cb7214000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7f8cb7214000-7f8cb7215000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7f8cb7215000-7f8cb7216000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7f8cb7216000-7f8cb722c000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7f8cb722c000-7f8cb742b000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7f8cb742b000-7f8cb742c000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7f8cb742c000-7f8cb742d000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7f8cb742d000-7f8cb742f000 rw-p 00000000 00:00 0 109 | 7f8cb742f000-7f8cb7437000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7f8cb7437000-7f8cb7636000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7f8cb7636000-7f8cb7637000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7f8cb7637000-7f8cb7638000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7f8cb7638000-7f8cb7663000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7f8cb7663000-7f8cb7862000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7f8cb7862000-7f8cb7864000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7f8cb7864000-7f8cb7871000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7f8cb7871000-7f8cb7a70000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7f8cb7a70000-7f8cb7a72000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7f8cb7a72000-7f8cb7a79000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7f8cb7a79000-7f8cb7c78000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7f8cb7c78000-7f8cb7c79000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7f8cb7c79000-7f8cb7c7a000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7f8cb7c7a000-7f8cb7d82000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7f8cb7d82000-7f8cb7f81000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7f8cb7f81000-7f8cb7f82000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7f8cb7f82000-7f8cb7f83000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7f8cb7f83000-7f8cb8c50000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7f8cb8c50000-7f8cb8e4f000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7f8cb8e4f000-7f8cb8f28000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7f8cb8f28000-7f8cb8f73000 rw-p 00000000 00:00 0 131 | 7f8cb8f73000-7f8cb9133000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7f8cb9133000-7f8cb9332000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7f8cb9332000-7f8cb9336000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7f8cb9336000-7f8cb9338000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7f8cb9338000-7f8cb933c000 rw-p 00000000 00:00 0 136 | 7f8cb933c000-7f8cb933f000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7f8cb933f000-7f8cb953e000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7f8cb953e000-7f8cb953f000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7f8cb953f000-7f8cb9540000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7f8cb9540000-7f8cb9555000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7f8cb9555000-7f8cb9755000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7f8cb9755000-7f8cb9756000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7f8cb9756000-7f8cb976e000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7f8cb976e000-7f8cb996d000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7f8cb996d000-7f8cb996e000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7f8cb996e000-7f8cb996f000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7f8cb996f000-7f8cb9973000 rw-p 00000000 00:00 0 148 | 7f8cb9973000-7f8cb9999000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7f8cb9a79000-7f8cb9a7a000 ---p 00000000 00:00 0 150 | 7f8cb9a7a000-7f8cb9b7e000 rw-p 00000000 00:00 0 151 | 7f8cb9b8c000-7f8cb9b94000 rw-s 00000000 08:03 2490716 /tmp/hsperfdata_ashmeet/2454 152 | 7f8cb9b94000-7f8cb9b95000 rw-p 00000000 00:00 0 153 | 7f8cb9b95000-7f8cb9b96000 r--p 00000000 00:00 0 154 | 7f8cb9b96000-7f8cb9b98000 rw-p 00000000 00:00 0 155 | 7f8cb9b98000-7f8cb9b99000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7f8cb9b99000-7f8cb9b9a000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7f8cb9b9a000-7f8cb9b9b000 rw-p 00000000 00:00 0 158 | 7ffc23ad3000-7ffc23ad6000 ---p 00000000 00:00 0 159 | 7ffc23ad7000-7ffc23bd3000 rw-p 00000000 00:00 0 [stack] 160 | 7ffc23bf4000-7ffc23bf6000 r--p 00000000 00:00 0 [vvar] 161 | 7ffc23bf6000-7ffc23bf8000 r-xp 00000000 00:00 0 [vdso] 162 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 163 | 164 | VM Arguments: 165 | java_command: 166 | java_class_path (initial): . 167 | Launcher Type: SUN_STANDARD 168 | 169 | Environment Variables: 170 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 171 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 172 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 173 | SHELL=/bin/bash 174 | DISPLAY=:0 175 | 176 | Signal Handlers: 177 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 183 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 184 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 185 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 189 | 190 | 191 | --------------- S Y S T E M --------------- 192 | 193 | OS:DISTRIB_ID=Ubuntu 194 | DISTRIB_RELEASE=16.04 195 | DISTRIB_CODENAME=xenial 196 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 197 | 198 | uname:Linux 4.4.0-21-generic #37-Ubuntu SMP Mon Apr 18 18:33:37 UTC 2016 x86_64 199 | libc:glibc 2.23 NPTL 2.23 200 | rlimit: STACK 8192k, CORE 0k, NPROC 23503, NOFILE 65536, AS infinity 201 | load average:0.24 0.36 0.42 202 | 203 | /proc/meminfo: 204 | MemTotal: 6056828 kB 205 | MemFree: 43920 kB 206 | MemAvailable: 2330912 kB 207 | Buffers: 276020 kB 208 | Cached: 2198084 kB 209 | SwapCached: 0 kB 210 | Active: 4023436 kB 211 | Inactive: 1390932 kB 212 | Active(anon): 2956712 kB 213 | Inactive(anon): 324896 kB 214 | Active(file): 1066724 kB 215 | Inactive(file): 1066036 kB 216 | Unevictable: 32 kB 217 | Mlocked: 32 kB 218 | SwapTotal: 0 kB 219 | SwapFree: 0 kB 220 | Dirty: 468 kB 221 | Writeback: 0 kB 222 | AnonPages: 2940836 kB 223 | Mapped: 351808 kB 224 | Shmem: 340636 kB 225 | Slab: 282736 kB 226 | SReclaimable: 190772 kB 227 | SUnreclaim: 91964 kB 228 | KernelStack: 199616 kB 229 | PageTables: 62076 kB 230 | NFS_Unstable: 0 kB 231 | Bounce: 0 kB 232 | WritebackTmp: 0 kB 233 | CommitLimit: 3028412 kB 234 | Committed_AS: 19323100 kB 235 | VmallocTotal: 34359738367 kB 236 | VmallocUsed: 0 kB 237 | VmallocChunk: 0 kB 238 | HardwareCorrupted: 0 kB 239 | AnonHugePages: 1042432 kB 240 | CmaTotal: 0 kB 241 | CmaFree: 0 kB 242 | HugePages_Total: 0 243 | HugePages_Free: 0 244 | HugePages_Rsvd: 0 245 | HugePages_Surp: 0 246 | Hugepagesize: 2048 kB 247 | DirectMap4k: 188672 kB 248 | DirectMap2M: 6049792 kB 249 | 250 | 251 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 252 | 253 | /proc/cpuinfo: 254 | processor : 0 255 | vendor_id : GenuineIntel 256 | cpu family : 6 257 | model : 42 258 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 259 | stepping : 7 260 | microcode : 0x29 261 | cpu MHz : 1299.050 262 | cache size : 3072 KB 263 | physical id : 0 264 | siblings : 4 265 | core id : 0 266 | cpu cores : 2 267 | apicid : 0 268 | initial apicid : 0 269 | fpu : yes 270 | fpu_exception : yes 271 | cpuid level : 13 272 | wp : yes 273 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 274 | bugs : 275 | bogomips : 4589.64 276 | clflush size : 64 277 | cache_alignment : 64 278 | address sizes : 36 bits physical, 48 bits virtual 279 | power management: 280 | 281 | processor : 1 282 | vendor_id : GenuineIntel 283 | cpu family : 6 284 | model : 42 285 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 286 | stepping : 7 287 | microcode : 0x29 288 | cpu MHz : 2699.984 289 | cache size : 3072 KB 290 | physical id : 0 291 | siblings : 4 292 | core id : 0 293 | cpu cores : 2 294 | apicid : 1 295 | initial apicid : 1 296 | fpu : yes 297 | fpu_exception : yes 298 | cpuid level : 13 299 | wp : yes 300 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 301 | bugs : 302 | bogomips : 4589.64 303 | clflush size : 64 304 | cache_alignment : 64 305 | address sizes : 36 bits physical, 48 bits virtual 306 | power management: 307 | 308 | processor : 2 309 | vendor_id : GenuineIntel 310 | cpu family : 6 311 | model : 42 312 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 313 | stepping : 7 314 | microcode : 0x29 315 | cpu MHz : 1898.308 316 | cache size : 3072 KB 317 | physical id : 0 318 | siblings : 4 319 | core id : 1 320 | cpu cores : 2 321 | apicid : 2 322 | initial apicid : 2 323 | fpu : yes 324 | fpu_exception : yes 325 | cpuid level : 13 326 | wp : yes 327 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 328 | bugs : 329 | bogomips : 4589.64 330 | clflush size : 64 331 | cache_alignment : 64 332 | address sizes : 36 bits physical, 48 bits virtual 333 | power management: 334 | 335 | processor : 3 336 | vendor_id : GenuineIntel 337 | cpu family : 6 338 | model : 42 339 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 340 | stepping : 7 341 | microcode : 0x29 342 | cpu MHz : 977.230 343 | cache size : 3072 KB 344 | physical id : 0 345 | siblings : 4 346 | core id : 1 347 | cpu cores : 2 348 | apicid : 3 349 | initial apicid : 3 350 | fpu : yes 351 | fpu_exception : yes 352 | cpuid level : 13 353 | wp : yes 354 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 355 | bugs : 356 | bogomips : 4589.64 357 | clflush size : 64 358 | cache_alignment : 64 359 | address sizes : 36 bits physical, 48 bits virtual 360 | power management: 361 | 362 | 363 | 364 | Memory: 4k page, physical 6056828k(43920k free), swap 0k(0k free) 365 | 366 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 367 | 368 | time: Sun Oct 30 08:40:07 2016 369 | elapsed time: 0 seconds (0d 0h 0m 0s) 370 | 371 | -------------------------------------------------------------------------------- /hs_err_pid8108.log: -------------------------------------------------------------------------------- 1 | # 2 | # There is insufficient memory for the Java Runtime Environment to continue. 3 | # Cannot create GC thread. Out of system resources. 4 | # Possible reasons: 5 | # The system is out of physical RAM or swap space 6 | # In 32 bit mode, the process size limit was hit 7 | # Possible solutions: 8 | # Reduce memory load on the system 9 | # Increase physical memory or swap space 10 | # Check if swap backing store is full 11 | # Use 64 bit Java on a 64 bit OS 12 | # Decrease Java heap size (-Xmx/-Xms) 13 | # Decrease number of Java threads 14 | # Decrease Java thread stack sizes (-Xss) 15 | # Set larger code cache with -XX:ReservedCodeCacheSize= 16 | # This output file may be truncated or incomplete. 17 | # 18 | # Out of Memory Error (gcTaskThread.cpp:48), pid=8108, tid=0x00007fafe5896700 19 | # 20 | # JRE version: (8.0_111-b14) (build ) 21 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) 22 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again 23 | # 24 | 25 | --------------- T H R E A D --------------- 26 | 27 | Current thread (0x0000000001cf6000): JavaThread "Unknown thread" [_thread_in_vm, id=8108, stack(0x00007ffee7cdc000,0x00007ffee7ddc000)] 28 | 29 | Stack: [0x00007ffee7cdc000,0x00007ffee7ddc000], sp=0x00007ffee7dd4870, free space=994k 30 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) 31 | V [libjvm.so+0xac5c2a] VMError::report_and_die()+0x2ba 32 | V [libjvm.so+0x4fc50b] report_vm_out_of_memory(char const*, int, unsigned long, VMErrorType, char const*)+0x8b 33 | V [libjvm.so+0x5d6e8f] GCTaskThread::GCTaskThread(GCTaskManager*, unsigned int, unsigned int)+0x15f 34 | V [libjvm.so+0x5d5c4b] GCTaskManager::initialize()+0x3ab 35 | V [libjvm.so+0x94600d] ParallelScavengeHeap::initialize()+0x34d 36 | V [libjvm.so+0xa8dd53] Universe::initialize_heap()+0xf3 37 | V [libjvm.so+0xa8e2be] universe_init()+0x3e 38 | V [libjvm.so+0x63c925] init_globals()+0x65 39 | V [libjvm.so+0xa719be] Threads::create_vm(JavaVMInitArgs*, bool*)+0x23e 40 | V [libjvm.so+0x6d11c4] JNI_CreateJavaVM+0x74 41 | C [libjli.so+0x745e] JavaMain+0x9e 42 | C [libjli.so+0xb223] ContinueInNewThread0+0x63 43 | C [libjli.so+0x697a] ContinueInNewThread+0x7a 44 | C [libjli.so+0x99f8] JLI_Launch+0x798 45 | C [java+0x696] JLI_Launch@@SUNWprivate_1.1+0x696 46 | C [libc.so.6+0x20830] __libc_start_main+0xf0 47 | 48 | 49 | --------------- P R O C E S S --------------- 50 | 51 | Java Threads: ( => current thread ) 52 | 53 | Other Threads: 54 | 55 | =>0x0000000001cf6000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=8108, stack(0x00007ffee7cdc000,0x00007ffee7ddc000)] 56 | 57 | VM state:not at safepoint (not fully initialized) 58 | 59 | VM Mutex/Monitor currently owned by a thread: None 60 | 61 | GC Heap History (0 events): 62 | No events 63 | 64 | Deoptimization events (0 events): 65 | No events 66 | 67 | Internal exceptions (0 events): 68 | No events 69 | 70 | Events (0 events): 71 | No events 72 | 73 | 74 | Dynamic libraries: 75 | 00400000-00401000 r-xp 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 76 | 00600000-00601000 rw-p 00000000 08:03 4720056 /usr/lib/jvm/java-8-oracle/bin/java 77 | 01ceb000-01d2d000 rw-p 00000000 00:00 0 [heap] 78 | a3800000-a7700000 rw-p 00000000 00:00 0 79 | a7700000-e1300000 ---p 00000000 00:00 0 80 | e1300000-e3200000 rw-p 00000000 00:00 0 81 | e3200000-100000000 ---p 00000000 00:00 0 82 | 7fafd2dde000-7fafd3085000 rw-p 00000000 00:00 0 83 | 7fafd3085000-7fafd3253000 ---p 00000000 00:00 0 84 | 7fafd3253000-7fafd3273000 rw-p 00000000 00:00 0 85 | 7fafd3273000-7fafd3440000 ---p 00000000 00:00 0 86 | 7fafd3440000-7fafd3450000 rw-p 00000000 00:00 0 87 | 7fafd3450000-7fafd3537000 ---p 00000000 00:00 0 88 | 7fafd3537000-7fafd3542000 rw-p 00000000 00:00 0 89 | 7fafd3542000-7fafd38f8000 ---p 00000000 00:00 0 90 | 7fafd38f8000-7fafd3b68000 rwxp 00000000 00:00 0 91 | 7fafd3b68000-7fafe28f8000 ---p 00000000 00:00 0 92 | 7fafe28f8000-7fafe2912000 r-xp 00000000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 93 | 7fafe2912000-7fafe2b12000 ---p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 94 | 7fafe2b12000-7fafe2b13000 rw-p 0001a000 08:03 4720462 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libzip.so 95 | 7fafe2b13000-7fafe2b1e000 r-xp 00000000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 96 | 7fafe2b1e000-7fafe2d1d000 ---p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 97 | 7fafe2d1d000-7fafe2d1e000 r--p 0000a000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 98 | 7fafe2d1e000-7fafe2d1f000 rw-p 0000b000 08:03 9441840 /lib/x86_64-linux-gnu/libnss_files-2.23.so 99 | 7fafe2d1f000-7fafe2d25000 rw-p 00000000 00:00 0 100 | 7fafe2d25000-7fafe2d30000 r-xp 00000000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 101 | 7fafe2d30000-7fafe2f2f000 ---p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 102 | 7fafe2f2f000-7fafe2f30000 r--p 0000a000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 103 | 7fafe2f30000-7fafe2f31000 rw-p 0000b000 08:03 9441850 /lib/x86_64-linux-gnu/libnss_nis-2.23.so 104 | 7fafe2f31000-7fafe2f47000 r-xp 00000000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 105 | 7fafe2f47000-7fafe3146000 ---p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 106 | 7fafe3146000-7fafe3147000 r--p 00015000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 107 | 7fafe3147000-7fafe3148000 rw-p 00016000 08:03 9441834 /lib/x86_64-linux-gnu/libnsl-2.23.so 108 | 7fafe3148000-7fafe314a000 rw-p 00000000 00:00 0 109 | 7fafe314a000-7fafe3152000 r-xp 00000000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 110 | 7fafe3152000-7fafe3351000 ---p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 111 | 7fafe3351000-7fafe3352000 r--p 00007000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 112 | 7fafe3352000-7fafe3353000 rw-p 00008000 08:03 9441836 /lib/x86_64-linux-gnu/libnss_compat-2.23.so 113 | 7fafe3353000-7fafe337e000 r-xp 00000000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 114 | 7fafe337e000-7fafe357d000 ---p 0002b000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 115 | 7fafe357d000-7fafe357f000 rw-p 0002a000 08:03 4720496 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libjava.so 116 | 7fafe357f000-7fafe358c000 r-xp 00000000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 117 | 7fafe358c000-7fafe378b000 ---p 0000d000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 118 | 7fafe378b000-7fafe378d000 rw-p 0000c000 08:03 4720436 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/libverify.so 119 | 7fafe378d000-7fafe3794000 r-xp 00000000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 120 | 7fafe3794000-7fafe3993000 ---p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 121 | 7fafe3993000-7fafe3994000 r--p 00006000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 122 | 7fafe3994000-7fafe3995000 rw-p 00007000 08:03 9441895 /lib/x86_64-linux-gnu/librt-2.23.so 123 | 7fafe3995000-7fafe3a9d000 r-xp 00000000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 124 | 7fafe3a9d000-7fafe3c9c000 ---p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 125 | 7fafe3c9c000-7fafe3c9d000 r--p 00107000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 126 | 7fafe3c9d000-7fafe3c9e000 rw-p 00108000 08:03 9441811 /lib/x86_64-linux-gnu/libm-2.23.so 127 | 7fafe3c9e000-7fafe496b000 r-xp 00000000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 128 | 7fafe496b000-7fafe4b6a000 ---p 00ccd000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 129 | 7fafe4b6a000-7fafe4c43000 rw-p 00ccc000 08:03 4720500 /usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so 130 | 7fafe4c43000-7fafe4c8e000 rw-p 00000000 00:00 0 131 | 7fafe4c8e000-7fafe4e4e000 r-xp 00000000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 132 | 7fafe4e4e000-7fafe504d000 ---p 001c0000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 133 | 7fafe504d000-7fafe5051000 r--p 001bf000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 134 | 7fafe5051000-7fafe5053000 rw-p 001c3000 08:03 9441741 /lib/x86_64-linux-gnu/libc-2.23.so 135 | 7fafe5053000-7fafe5057000 rw-p 00000000 00:00 0 136 | 7fafe5057000-7fafe505a000 r-xp 00000000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 137 | 7fafe505a000-7fafe5259000 ---p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 138 | 7fafe5259000-7fafe525a000 r--p 00002000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 139 | 7fafe525a000-7fafe525b000 rw-p 00003000 08:03 9441765 /lib/x86_64-linux-gnu/libdl-2.23.so 140 | 7fafe525b000-7fafe5270000 r-xp 00000000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 141 | 7fafe5270000-7fafe5470000 ---p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 142 | 7fafe5470000-7fafe5471000 rw-p 00015000 08:03 4602812 /usr/lib/jvm/java-8-oracle/lib/amd64/jli/libjli.so 143 | 7fafe5471000-7fafe5489000 r-xp 00000000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 144 | 7fafe5489000-7fafe5688000 ---p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 145 | 7fafe5688000-7fafe5689000 r--p 00017000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 146 | 7fafe5689000-7fafe568a000 rw-p 00018000 08:03 9441887 /lib/x86_64-linux-gnu/libpthread-2.23.so 147 | 7fafe568a000-7fafe568e000 rw-p 00000000 00:00 0 148 | 7fafe568e000-7fafe56b4000 r-xp 00000000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 149 | 7fafe5794000-7fafe5795000 ---p 00000000 00:00 0 150 | 7fafe5795000-7fafe5899000 rw-p 00000000 00:00 0 151 | 7fafe58a7000-7fafe58af000 rw-s 00000000 08:03 2490601 /tmp/hsperfdata_ashmeet/8108 152 | 7fafe58af000-7fafe58b0000 rw-p 00000000 00:00 0 153 | 7fafe58b0000-7fafe58b1000 r--p 00000000 00:00 0 154 | 7fafe58b1000-7fafe58b3000 rw-p 00000000 00:00 0 155 | 7fafe58b3000-7fafe58b4000 r--p 00025000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 156 | 7fafe58b4000-7fafe58b5000 rw-p 00026000 08:03 9441713 /lib/x86_64-linux-gnu/ld-2.23.so 157 | 7fafe58b5000-7fafe58b6000 rw-p 00000000 00:00 0 158 | 7ffee7cdc000-7ffee7cdf000 ---p 00000000 00:00 0 159 | 7ffee7ce0000-7ffee7ddc000 rw-p 00000000 00:00 0 [stack] 160 | 7ffee7de7000-7ffee7de9000 r--p 00000000 00:00 0 [vvar] 161 | 7ffee7de9000-7ffee7deb000 r-xp 00000000 00:00 0 [vdso] 162 | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] 163 | 164 | VM Arguments: 165 | java_command: 166 | java_class_path (initial): . 167 | Launcher Type: SUN_STANDARD 168 | 169 | Environment Variables: 170 | JAVA_HOME=/usr/lib/jvm/java-8-oracle 171 | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin 172 | LD_LIBRARY_PATH=/usr/lib/jvm/java-8-oracle/jre/lib/amd64:/usr/lib/jvm/java-8-oracle/jre/lib/i386: 173 | SHELL=/bin/bash 174 | DISPLAY=:0 175 | 176 | Signal Handlers: 177 | SIGSEGV: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 178 | SIGBUS: [libjvm.so+0xac64b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 179 | SIGFPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 180 | SIGPIPE: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 181 | SIGXFSZ: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 182 | SIGILL: [libjvm.so+0x91f950], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO 183 | SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 184 | SIGUSR2: [libjvm.so+0x920f80], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO 185 | SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 186 | SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 187 | SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 188 | SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none 189 | 190 | 191 | --------------- S Y S T E M --------------- 192 | 193 | OS:DISTRIB_ID=Ubuntu 194 | DISTRIB_RELEASE=16.04 195 | DISTRIB_CODENAME=xenial 196 | DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 197 | 198 | uname:Linux 4.4.0-45-generic #66-Ubuntu SMP Wed Oct 19 14:12:37 UTC 2016 x86_64 199 | libc:glibc 2.23 NPTL 2.23 200 | rlimit: STACK 8192k, CORE 0k, NPROC 23502, NOFILE 65536, AS infinity 201 | load average:0.41 0.71 0.76 202 | 203 | /proc/meminfo: 204 | MemTotal: 6056748 kB 205 | MemFree: 2265676 kB 206 | MemAvailable: 3009940 kB 207 | Buffers: 75668 kB 208 | Cached: 1156688 kB 209 | SwapCached: 0 kB 210 | Active: 2651956 kB 211 | Inactive: 670988 kB 212 | Active(anon): 2093208 kB 213 | Inactive(anon): 312548 kB 214 | Active(file): 558748 kB 215 | Inactive(file): 358440 kB 216 | Unevictable: 32 kB 217 | Mlocked: 32 kB 218 | SwapTotal: 0 kB 219 | SwapFree: 0 kB 220 | Dirty: 204 kB 221 | Writeback: 0 kB 222 | AnonPages: 2090920 kB 223 | Mapped: 271240 kB 224 | Shmem: 314944 kB 225 | Slab: 166824 kB 226 | SReclaimable: 81848 kB 227 | SUnreclaim: 84976 kB 228 | KernelStack: 199440 kB 229 | PageTables: 57172 kB 230 | NFS_Unstable: 0 kB 231 | Bounce: 0 kB 232 | WritebackTmp: 0 kB 233 | CommitLimit: 3028372 kB 234 | Committed_AS: 17827044 kB 235 | VmallocTotal: 34359738367 kB 236 | VmallocUsed: 0 kB 237 | VmallocChunk: 0 kB 238 | HardwareCorrupted: 0 kB 239 | AnonHugePages: 913408 kB 240 | CmaTotal: 0 kB 241 | CmaFree: 0 kB 242 | HugePages_Total: 0 243 | HugePages_Free: 0 244 | HugePages_Rsvd: 0 245 | HugePages_Surp: 0 246 | Hugepagesize: 2048 kB 247 | DirectMap4k: 110848 kB 248 | DirectMap2M: 6127616 kB 249 | 250 | 251 | CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit 252 | 253 | /proc/cpuinfo: 254 | processor : 0 255 | vendor_id : GenuineIntel 256 | cpu family : 6 257 | model : 42 258 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 259 | stepping : 7 260 | microcode : 0x29 261 | cpu MHz : 2699.984 262 | cache size : 3072 KB 263 | physical id : 0 264 | siblings : 4 265 | core id : 0 266 | cpu cores : 2 267 | apicid : 0 268 | initial apicid : 0 269 | fpu : yes 270 | fpu_exception : yes 271 | cpuid level : 13 272 | wp : yes 273 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 274 | bugs : 275 | bogomips : 4589.60 276 | clflush size : 64 277 | cache_alignment : 64 278 | address sizes : 36 bits physical, 48 bits virtual 279 | power management: 280 | 281 | processor : 1 282 | vendor_id : GenuineIntel 283 | cpu family : 6 284 | model : 42 285 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 286 | stepping : 7 287 | microcode : 0x29 288 | cpu MHz : 2699.984 289 | cache size : 3072 KB 290 | physical id : 0 291 | siblings : 4 292 | core id : 0 293 | cpu cores : 2 294 | apicid : 1 295 | initial apicid : 1 296 | fpu : yes 297 | fpu_exception : yes 298 | cpuid level : 13 299 | wp : yes 300 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 301 | bugs : 302 | bogomips : 4589.60 303 | clflush size : 64 304 | cache_alignment : 64 305 | address sizes : 36 bits physical, 48 bits virtual 306 | power management: 307 | 308 | processor : 2 309 | vendor_id : GenuineIntel 310 | cpu family : 6 311 | model : 42 312 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 313 | stepping : 7 314 | microcode : 0x29 315 | cpu MHz : 2699.984 316 | cache size : 3072 KB 317 | physical id : 0 318 | siblings : 4 319 | core id : 1 320 | cpu cores : 2 321 | apicid : 2 322 | initial apicid : 2 323 | fpu : yes 324 | fpu_exception : yes 325 | cpuid level : 13 326 | wp : yes 327 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 328 | bugs : 329 | bogomips : 4589.60 330 | clflush size : 64 331 | cache_alignment : 64 332 | address sizes : 36 bits physical, 48 bits virtual 333 | power management: 334 | 335 | processor : 3 336 | vendor_id : GenuineIntel 337 | cpu family : 6 338 | model : 42 339 | model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz 340 | stepping : 7 341 | microcode : 0x29 342 | cpu MHz : 2699.984 343 | cache size : 3072 KB 344 | physical id : 0 345 | siblings : 4 346 | core id : 1 347 | cpu cores : 2 348 | apicid : 3 349 | initial apicid : 3 350 | fpu : yes 351 | fpu_exception : yes 352 | cpuid level : 13 353 | wp : yes 354 | flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts 355 | bugs : 356 | bogomips : 4589.60 357 | clflush size : 64 358 | cache_alignment : 64 359 | address sizes : 36 bits physical, 48 bits virtual 360 | power management: 361 | 362 | 363 | 364 | Memory: 4k page, physical 6056748k(2265676k free), swap 0k(0k free) 365 | 366 | vm_info: Java HotSpot(TM) 64-Bit Server VM (25.111-b14) for linux-amd64 JRE (1.8.0_111-b14), built on Sep 22 2016 16:14:03 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8) 367 | 368 | time: Sun Oct 30 08:57:34 2016 369 | elapsed time: 0 seconds (0d 0h 0m 0s) 370 | 371 | -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /nbproject/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | $label=Run as WebStart 3 | -------------------------------------------------------------------------------- /nbproject/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | $label=Run in Browser 3 | -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=0a8e9bf3 2 | build.xml.script.CRC32=75de0119 3 | build.xml.stylesheet.CRC32=8064a381@1.79.1.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=ec375f5e 7 | nbproject/build-impl.xml.script.CRC32=d355b6ce 8 | nbproject/build-impl.xml.stylesheet.CRC32=05530350@1.79.1.48 9 | -------------------------------------------------------------------------------- /nbproject/private/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | javafx.run.as=webstart 3 | -------------------------------------------------------------------------------- /nbproject/private/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- 1 | # Do not modify this property in this configuration. It can be re-generated. 2 | javafx.run.as=embedded 3 | -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | auxiliary.org-netbeans-modules-projectapi.issue214819_5f_fx_5f_enabled=true 2 | # No need to modify this property unless customizing JavaFX Ant task infrastructure 3 | endorsed.javafx.ant.classpath=. 4 | user.properties.file=/home/ashmeet/.netbeans/8.1/build.properties 5 | -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/home/ashmeet/Chat%20Application/src/Server.java 7 | file:/home/ashmeet/Chat%20Application/src/LoginWindow.java 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | application.title=Chat Application 8 | application.vendor=ashmeet 9 | build.classes.dir=${build.dir}/classes 10 | build.classes.excludes=**/*.java,**/*.form 11 | # This directory is removed when the project is cleaned: 12 | build.dir=build 13 | build.generated.dir=${build.dir}/generated 14 | build.generated.sources.dir=${build.dir}/generated-sources 15 | # Only compile against the classpath explicitly listed here: 16 | build.sysclasspath=ignore 17 | build.test.classes.dir=${build.dir}/test/classes 18 | build.test.results.dir=${build.dir}/test/results 19 | compile.on.save=true 20 | compile.on.save.unsupported.javafx=true 21 | # Uncomment to specify the preferred debugger connection transport: 22 | #debug.transport=dt_socket 23 | debug.classpath=\ 24 | ${run.classpath} 25 | debug.test.classpath=\ 26 | ${run.test.classpath} 27 | # This directory is removed when the project is cleaned: 28 | dist.dir=dist 29 | dist.jar=${dist.dir}/Simple Chat Application.jar 30 | dist.javadoc.dir=${dist.dir}/javadoc 31 | endorsed.classpath= 32 | excludes= 33 | file.reference.NetBeansProjects-Image_Repository=/home/ashmeet/NetBeansProjects/Image Repository 34 | includes=** 35 | # Non-JavaFX jar file creation is deactivated in JavaFX 2.0+ projects 36 | jar.archive.disabled=true 37 | jar.compress=false 38 | javac.classpath=\ 39 | ${javafx.classpath.extension}:\ 40 | ${file.reference.NetBeansProjects-Image_Repository} 41 | # Space-separated list of extra javac options 42 | javac.compilerargs= 43 | javac.deprecation=false 44 | javac.processorpath=\ 45 | ${javac.classpath} 46 | javac.source=1.8 47 | javac.target=1.8 48 | javac.test.classpath=\ 49 | ${javac.classpath}:\ 50 | ${build.classes.dir} 51 | javac.test.processorpath=\ 52 | ${javac.test.classpath} 53 | javadoc.additionalparam= 54 | javadoc.author=false 55 | javadoc.encoding=${source.encoding} 56 | javadoc.noindex=false 57 | javadoc.nonavbar=false 58 | javadoc.notree=false 59 | javadoc.private=false 60 | javadoc.splitindex=true 61 | javadoc.use=true 62 | javadoc.version=false 63 | javadoc.windowtitle= 64 | javafx.application.implementation.version=1.0 65 | javafx.binarycss=false 66 | javafx.classpath.extension=\ 67 | ${java.home}/lib/javaws.jar:\ 68 | ${java.home}/lib/deploy.jar:\ 69 | ${java.home}/lib/plugin.jar 70 | javafx.deploy.allowoffline=true 71 | # If true, application update mode is set to 'background', if false, update mode is set to 'eager' 72 | javafx.deploy.backgroundupdate=false 73 | javafx.deploy.embedJNLP=true 74 | javafx.deploy.includeDT=true 75 | # Set true to prevent creation of temporary copy of deployment artifacts before each run (disables concurrent runs) 76 | javafx.disable.concurrent.runs=false 77 | # Set true to enable multiple concurrent runs of the same WebStart or Run-in-Browser project 78 | javafx.enable.concurrent.external.runs=false 79 | # This is a JavaFX project 80 | javafx.enabled=true 81 | javafx.fallback.class=com.javafx.main.NoJavaFXFallback 82 | # Main class for JavaFX 83 | javafx.main.class=LoginWindow 84 | javafx.preloader.class= 85 | # This project does not use Preloader 86 | javafx.preloader.enabled=false 87 | javafx.preloader.jar.filename= 88 | javafx.preloader.jar.path= 89 | javafx.preloader.project.path= 90 | javafx.preloader.type=none 91 | # Set true for GlassFish only. Rebases manifest classpaths of JARs in lib dir. Not usable with signed JARs. 92 | javafx.rebase.libs=false 93 | javafx.run.height=600 94 | javafx.run.width=800 95 | # Pre-JavaFX 2.0 WebStart is deactivated in JavaFX 2.0+ projects 96 | jnlp.enabled=false 97 | # Main class for Java launcher 98 | main.class=com.javafx.main.Main 99 | # For improved security specify narrower Codebase manifest attribute to prevent RIAs from being repurposed 100 | manifest.custom.codebase=* 101 | # Specify Permissions manifest attribute to override default (choices: sandbox, all-permissions) 102 | manifest.custom.permissions= 103 | manifest.file=manifest.mf 104 | meta.inf.dir=${src.dir}/META-INF 105 | platform.active=default_platform 106 | run.classpath=\ 107 | ${dist.jar}:\ 108 | ${javac.classpath}:\ 109 | ${build.classes.dir} 110 | run.test.classpath=\ 111 | ${javac.test.classpath}:\ 112 | ${build.test.classes.dir} 113 | source.encoding=UTF-8 114 | src.dir=src 115 | test.src.dir=test 116 | -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | Chat Application 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/ChatCSS.css: -------------------------------------------------------------------------------- 1 | .conosle{ 2 | -fx-font-color:#e70707; 3 | -fx-text-fill: #e70707; 4 | } -------------------------------------------------------------------------------- /src/ChatImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/ChatImage.png -------------------------------------------------------------------------------- /src/LoginWindow.java: -------------------------------------------------------------------------------- 1 | 2 | import java.io.IOException; 3 | import java.net.DatagramPacket; 4 | import java.net.DatagramSocket; 5 | import java.net.InetAddress; 6 | import java.net.SocketException; 7 | import java.net.UnknownHostException; 8 | import java.util.ArrayList; 9 | import java.util.List; 10 | import javafx.application.Application; 11 | import javafx.geometry.Insets; 12 | import javafx.geometry.Pos; 13 | import javafx.scene.Scene; 14 | import javafx.scene.control.*; 15 | import javafx.scene.control.Alert.AlertType; 16 | import javafx.scene.image.Image; 17 | import javafx.scene.image.ImageView; 18 | import javafx.scene.input.KeyCode; 19 | import javafx.scene.layout.BorderPane; 20 | import javafx.scene.layout.GridPane; 21 | import javafx.scene.layout.HBox; 22 | import javafx.scene.layout.StackPane; 23 | import javafx.scene.layout.VBox; 24 | import javafx.scene.text.Font; 25 | import javafx.scene.text.FontWeight; 26 | import javafx.scene.text.Text; 27 | import javafx.stage.Stage; 28 | 29 | /** 30 | * 31 | * @author ashmeet 32 | */ 33 | public class LoginWindow extends Application implements Runnable { 34 | 35 | Stage window; 36 | Scene scene1, scene2; 37 | Text login; 38 | Label lblWelcome, lblUser, lblIp; 39 | TextField txtUser, txtIp, messageField; 40 | Button loginBtn, clearBtn, sendBtn, logoutBtn; //browse for images 41 | TextArea textArea = new TextArea(); 42 | VBox vBox; 43 | Image chatImage = new Image("ChatImage.png", 200, 200, true, true); 44 | 45 | InetAddress ip; 46 | DatagramSocket socket; 47 | int port = 4293, ID = -1; 48 | Thread send, receive, listen, run, updateClients; 49 | boolean running = false; 50 | boolean text = false, typeAttempt = true, seenAttempt = false, messageReceived = false, clientStatus; 51 | String disconnectedUser; 52 | // Server server=new Server(4293); 53 | 54 | List connectedClients = new ArrayList<>(); 55 | 56 | public static void main(String[] args) { 57 | launch(args); 58 | } 59 | 60 | public void start(Stage primaryStage) throws Exception { 61 | window = primaryStage; 62 | window.setTitle("Login Window"); 63 | lblWelcome = new Label("Welcome To Ashmeet Instant Messagener"); 64 | lblWelcome.setFont(Font.font("Serif", FontWeight.BOLD, 15)); 65 | lblWelcome.setPadding(new Insets(0, 0, 0, 140)); 66 | GridPane grid = new GridPane(); 67 | grid.setVgap(10); 68 | grid.setHgap(10); 69 | grid.setPadding(new Insets(25, 50, 0, 25)); 70 | Separator separator = new Separator(); 71 | Separator sep1 = new Separator(); 72 | sep1.setVisible(true); 73 | sep1.setPadding(new Insets(25, 0, 0, 0)); 74 | login = new Text("Please Login"); 75 | login.setFont(Font.font("Serif", FontWeight.BOLD, 20)); 76 | vBox = new VBox(); 77 | vBox.getChildren().addAll(lblWelcome, sep1, login); 78 | 79 | lblUser = new Label("User name"); 80 | grid.add(lblUser, 0, 0); 81 | txtUser = new TextField(); 82 | grid.add(txtUser, 1, 0); 83 | lblIp = new Label("Host IP"); 84 | grid.add(lblIp, 0, 1); 85 | txtIp = new TextField(); 86 | grid.add(txtIp, 1, 1); 87 | loginBtn = new Button("Login"); 88 | loginBtn.setOnAction(e -> { 89 | window.setScene(clientWindow(txtIp.getText(), port)); 90 | //for current time 91 | long clientCurrentTime = System.currentTimeMillis(); 92 | // long timeDifference=server.getServerStartTime()-clientCurrentTime; 93 | 94 | }); 95 | clearBtn = new Button("Clear"); 96 | clearBtn.setOnAction(e -> { 97 | txtUser.clear(); 98 | txtIp.clear(); 99 | }); 100 | ImageView chatImageView = new ImageView(chatImage); 101 | StackPane stackPane = new StackPane(); 102 | stackPane.getChildren().add(chatImageView); 103 | stackPane.setAlignment(Pos.TOP_RIGHT); 104 | 105 | HBox hBox = new HBox(); 106 | hBox.setSpacing(15); 107 | hBox.getChildren().addAll(loginBtn, clearBtn); 108 | grid.add(hBox, 1, 2); 109 | 110 | BorderPane borderPane = new BorderPane(); 111 | borderPane.setTop(vBox); 112 | borderPane.setCenter(grid); 113 | borderPane.setRight(stackPane); 114 | //borderPane.setBottom(hBox); 115 | scene1 = new Scene(borderPane, 600, 500); 116 | window.setOnCloseRequest(e -> { 117 | // if (clientStatus) { 118 | String disconnected = "/d/" + ID + "/e/"; 119 | send(disconnected, 2); 120 | running = false; 121 | window.close(); 122 | // } 123 | }); 124 | window.setScene(scene1); 125 | window.show(); 126 | 127 | } 128 | 129 | private Scene clientWindow(String address, int port) { 130 | 131 | boolean checkConnect = openConnection(address, port); 132 | if (checkConnect) { 133 | String message = "/c/" + txtUser.getText() + "/e/"; 134 | send(message.getBytes()); 135 | } 136 | running = true; 137 | run = new Thread(this, "Running"); 138 | run.start(); 139 | 140 | window.setTitle(txtUser.getText() + " Window"); 141 | textArea.setEditable(false); 142 | textArea.setMaxWidth(500); 143 | textArea.setMinHeight(400); 144 | textArea.setPadding(new Insets(0, 0, 0, 10)); 145 | messageField = new TextField(); 146 | messageField.setPromptText("Type message here"); 147 | messageField.setMinWidth(500); 148 | messageField.setOnKeyPressed(e -> { 149 | if (e.getCode() == KeyCode.ENTER) { 150 | System.out.println(messageField.getText()); 151 | send(messageField.getText(), 0); 152 | typeAttempt = true; 153 | } else { 154 | send(" : is Typing", 1); 155 | //typeAttempt=true; 156 | // System.out.println(txtUser.getText()+" is Typing"); 157 | } 158 | }); 159 | sendBtn = new Button("Send"); 160 | sendBtn.setOnAction(e -> { 161 | 162 | }); 163 | logoutBtn = new Button("Logout"); 164 | logoutBtn.setOnAction(e -> { 165 | System.out.println("Logout : " + clientStatus); 166 | // if (clientStatus) { 167 | window.setScene(scene1); 168 | String disconnected = "/d/" + ID + "/e/"; 169 | send(disconnected.getBytes()); 170 | System.out.println("Disconnection Request "); 171 | running = false; 172 | // } 173 | window.setScene(scene1); 174 | textArea.clear(); 175 | txtUser.clear(); 176 | txtIp.clear(); 177 | }); 178 | HBox hBox = new HBox(); 179 | hBox.getChildren().add(logoutBtn); 180 | hBox.setAlignment(Pos.TOP_RIGHT); 181 | VBox vBox1 = new VBox(); 182 | vBox1.getChildren().addAll(textArea); 183 | HBox hBox1 = new HBox(); 184 | hBox1.setPadding(new Insets(0, 0, 10, 10)); 185 | hBox1.setSpacing(10); 186 | hBox1.getChildren().addAll(messageField, sendBtn); 187 | 188 | BorderPane borderPane = new BorderPane(); 189 | borderPane.setTop(hBox); 190 | borderPane.setCenter(vBox1); 191 | borderPane.setBottom(hBox1); 192 | scene2 = new Scene(borderPane, 600, 500); 193 | scene2.getStylesheets().add("ChatCSS.css"); 194 | 195 | if (messageReceived) { 196 | scene2.setOnMousePressed(e -> { 197 | seenAttempt = true; 198 | send("message seen", 3); 199 | // seenAttempt=false; 200 | //System.out.println("Message Seen "); 201 | }); 202 | } 203 | return scene2; 204 | } 205 | 206 | private void console(String message) { 207 | textArea.appendText(message + " \n"); 208 | } 209 | 210 | private boolean openConnection(String address, int port) { 211 | try { 212 | ip = InetAddress.getByName(address); 213 | socket = new DatagramSocket(); 214 | console(txtUser.getText() + " Attempting to create a socket Connection "); 215 | } catch (UnknownHostException | SocketException ex) { 216 | ex.printStackTrace(); 217 | return false; 218 | } 219 | return true; 220 | } 221 | 222 | private void send(String message, int text) { 223 | // if(message.isEmpty()) return; 224 | //String text=message; 225 | // console(txtUser.getText()+" : "+message); 226 | switch (text) { 227 | case 0: 228 | if (message.isEmpty()) { 229 | System.out.println("Message is empty"); 230 | return; 231 | } 232 | if (message.startsWith("/time/")) { 233 | send(message.getBytes()); 234 | } else if (message.startsWith("/ip/")) { 235 | send(message.getBytes()); 236 | } else if (message.startsWith("/number/")) { 237 | send(message.getBytes()); 238 | } 239 | message = "/m/" + txtUser.getText() + " : " + message + "/e/"; 240 | send(message.getBytes()); 241 | messageField.clear(); 242 | break; 243 | 244 | case 1: 245 | message = "/t/" + txtUser.getText() + " IS TYPING "; 246 | send(message.getBytes()); 247 | // messageField.clear(); 248 | break; 249 | case 2://disconnected 250 | send(message.getBytes()); 251 | break; 252 | case 3://seen 253 | message = "/s/" + "message seen" + "/e/"; 254 | send(message.getBytes()); 255 | break; 256 | default: 257 | break; 258 | } 259 | 260 | } 261 | 262 | private void send(final byte[] data) { 263 | send = new Thread("Send Thread") { 264 | public void run() { 265 | DatagramPacket packet = new DatagramPacket(data, data.length, ip, port); 266 | try { 267 | socket.send(packet); 268 | } catch (IOException ex) { 269 | ex.printStackTrace(); 270 | } 271 | } 272 | }; 273 | send.start(); 274 | } 275 | 276 | private String receive() { 277 | byte[] data = new byte[1024]; 278 | DatagramPacket packet = new DatagramPacket(data, data.length); 279 | try { 280 | socket.receive(packet); 281 | } catch (IOException ex) { 282 | ex.printStackTrace(); 283 | } 284 | String string = new String(packet.getData()); 285 | return string; 286 | } 287 | 288 | private void listen() { // for checking to client and server 289 | listen = new Thread("Listen Thread") { 290 | int attempt; 291 | 292 | @Override 293 | public void run() { 294 | while (running) { 295 | String message = receive(); 296 | if (message.startsWith("/c/")) { 297 | ID = Integer.parseInt(message.split("/c/|/e/")[1]); 298 | console("Successfully Connected to Server! Client ID : " + ID); 299 | } else if (message.startsWith("/d/")) { 300 | String disconnectUser = message.split("/d/|/i/")[1]; 301 | String disconnectID = message.split("/i/|/e/")[1]; 302 | // String disconnectMessage = message.split("/d/|/e/")[1]; 303 | // alertBox("Client Disconnected",disconnectMessage+ " left the Chat"); 304 | System.out.println("Disconnected User : " + disconnectUser); 305 | System.out.println("Disconnected ID : " + disconnectID); 306 | disconnectedUser = disconnectUser; 307 | console(disconnectUser + " left the Chat"); 308 | clientStatus = true; 309 | System.out.println("sent cleint status " + clientStatus); 310 | } else if (message.startsWith("/m/")) { 311 | String text = message.substring(3); 312 | text = text.split("/e/")[0]; 313 | console(text); 314 | messageReceived = true; 315 | } else if (message.startsWith("/time/")) { 316 | String receivedTime = message.substring(6); 317 | receivedTime = receivedTime.split("/e/")[0]; 318 | // System.out.println(receivedTime.length()); 319 | long serverTime = Long.parseLong(receivedTime); 320 | long currentTime = System.currentTimeMillis(); 321 | long totalTime = currentTime - serverTime; 322 | double sec = totalTime / 1000; 323 | 324 | console(sec + " sec"); 325 | System.out.println(sec + " seconds"); 326 | } else if (message.startsWith("/ip/")) { 327 | String receivedIp = message.substring(4); 328 | receivedIp = receivedIp.split("/e/")[0]; 329 | System.out.println("server ip : " + receivedIp); 330 | console("server ip : " + receivedIp); 331 | } else if (message.startsWith("/number/")) { 332 | String number = message.substring(8); 333 | number = number.split("/e/")[0]; 334 | System.out.println("Number of clients located : " + number); 335 | } else if (message.startsWith("/s/")) { 336 | //seenAttempt=!seenAttempt; 337 | if (seenAttempt) { 338 | String seenStatus = message.split("/s/|/e/")[1]; 339 | console(seenStatus); 340 | seenAttempt = false; 341 | } 342 | } 343 | if (message.startsWith("/t/")) { 344 | if (typeAttempt) { 345 | String textStatus = message.split("/t/")[1]; 346 | System.out.println(textStatus); 347 | console(textStatus); 348 | typeAttempt = false; 349 | } 350 | 351 | } 352 | } 353 | } 354 | }; 355 | listen.start(); 356 | } 357 | 358 | @Override 359 | public void run() { 360 | listen(); 361 | } 362 | 363 | protected void alertBox(String header, String text) { 364 | Alert alert = new Alert(AlertType.INFORMATION); 365 | alert.setHeaderText(header); 366 | alert.setTitle(header); 367 | alert.setContentText(text); 368 | alert.showAndWait(); 369 | } 370 | } 371 | -------------------------------------------------------------------------------- /src/Server$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/Server$1.class -------------------------------------------------------------------------------- /src/Server$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/Server$2.class -------------------------------------------------------------------------------- /src/Server$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/Server$3.class -------------------------------------------------------------------------------- /src/Server.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/Server.class -------------------------------------------------------------------------------- /src/Server.java: -------------------------------------------------------------------------------- 1 | 2 | import java.io.IOException; 3 | import java.net.DatagramPacket; 4 | import java.net.DatagramSocket; 5 | import java.net.InetAddress; 6 | import java.net.SocketException; 7 | import java.net.UnknownHostException; 8 | import java.util.ArrayList; 9 | import java.util.List; 10 | import java.util.Scanner; 11 | import java.util.logging.Level; 12 | import java.util.logging.Logger; 13 | 14 | public class Server implements Runnable { 15 | 16 | private int port; 17 | Thread run, send, receive, manage; 18 | public long serverStartTime; 19 | InetAddress ip; 20 | 21 | Boolean running = false, raw = false, exits = false; 22 | DatagramSocket socket; 23 | 24 | public List clients = new ArrayList(); 25 | 26 | public Server(int port) { 27 | this.port = port; 28 | try { 29 | socket = new DatagramSocket(port); 30 | } catch (SocketException ex) { 31 | ex.printStackTrace(); 32 | } 33 | 34 | try { 35 | ip = InetAddress.getLocalHost(); 36 | System.out.println("Ip of server : " + ip.getHostAddress()); 37 | } catch (UnknownHostException ex) { 38 | Logger.getLogger(Server.class.getName()).log(Level.SEVERE, null, ex); 39 | } 40 | 41 | run = new Thread(this, "Run Thread"); 42 | run.start(); 43 | } 44 | 45 | public void run() { 46 | running = true; 47 | serverStartTime = System.currentTimeMillis(); 48 | System.out.println("Server Started Time : " + serverStartTime); 49 | System.out.println("Server Started on Port " + port); 50 | manageClients(); 51 | receive(); 52 | 53 | Scanner scanner = new Scanner(System.in); 54 | while (running) { 55 | String text = scanner.nextLine(); 56 | if (!text.startsWith("/")) { 57 | sendToAll("/m/Server : " + text + "/e/"); 58 | } 59 | text = text.substring(1); 60 | if (text.startsWith("raw")) { 61 | raw = !raw; 62 | if (raw) { 63 | System.out.println("raw mode on "); 64 | } else { 65 | System.out.println("raw mode off"); 66 | } 67 | } else if (text.startsWith("online")) { 68 | System.out.println("^^^^^^^^^^^^^^^^^^"); 69 | for (int i = 0; i < clients.size(); i++) { 70 | ServerClient client = clients.get(i); 71 | System.out.println("ID : " + client.getID() + " UserName : " + client.getName()); 72 | } 73 | System.out.println("|| No of Clients : " + clients.size()); 74 | System.out.println("===================="); 75 | } else if (text.startsWith("time")) { 76 | System.out.println(serverStartTime); 77 | } else if (text.startsWith("kick")) { 78 | String clientName = text.split(" ")[1]; 79 | boolean num = true; 80 | int id = 0; 81 | try { 82 | id = Integer.parseInt(clientName); 83 | // num=true; 84 | } catch (Exception ex) { 85 | num = false; 86 | } 87 | if (num) { 88 | for (int i = 0; i < clients.size(); i++) { 89 | ServerClient c = clients.get(i); 90 | if (id == c.getID()) { 91 | disconnect(id, true); 92 | System.out.println("Client " + id + " has been kicked by Server"); 93 | break; 94 | } else { 95 | System.out.println("Client Doesnot Exists ! Check ID number"); 96 | } 97 | } 98 | } else { 99 | for (int i = 0; i < clients.size(); i++) { 100 | ServerClient c = clients.get(i); 101 | if (clientName.equals(c.name)) { 102 | disconnect(c.getID(), true); 103 | System.out.println("client " + clientName + " has been kicked by server"); 104 | } else { 105 | System.out.println("client " + clientName + " doesnot exists ! Check username and try again !"); 106 | } 107 | } 108 | } 109 | } else if (text.startsWith("help")) { 110 | System.out.println("==============================================================="); 111 | System.out.println("/raw => raw mode"); 112 | System.out.println("/online => To View online connected clients"); 113 | System.out.println("/kick [username or userID] => To kick particular clients"); 114 | System.out.println("/help => help menu"); 115 | System.out.println("/quit => To quit Server "); 116 | System.out.println("==============================================================="); 117 | 118 | } else if (text.startsWith("quit")) { 119 | quit(); 120 | } 121 | } 122 | } 123 | 124 | public void manageClients() { 125 | manage = new Thread("Manage") { 126 | public void run() { 127 | System.out.println("Manage Thead is running"); 128 | } 129 | }; 130 | manage.start(); 131 | } 132 | 133 | private void send(final byte[] data, final InetAddress address, final int port) { 134 | Thread send = new Thread("Server Send Thread") { 135 | public void run() { 136 | DatagramPacket packet = new DatagramPacket(data, data.length, address, port); 137 | try { 138 | socket.send(packet); 139 | } catch (IOException ex) { 140 | ex.printStackTrace(); 141 | } 142 | } 143 | }; 144 | send.start(); 145 | } 146 | 147 | private void send(String message, InetAddress address, int port) { 148 | message += "/e/"; 149 | send(message.getBytes(), address, port); 150 | } 151 | 152 | public void receive() { 153 | receive = new Thread(" Server Receive Thread") { 154 | @Override 155 | public void run() { 156 | while (running) { 157 | byte[] data = new byte[1024]; 158 | DatagramPacket packet = new DatagramPacket(data, data.length); 159 | try { 160 | socket.receive(packet); 161 | } catch (IOException ex) { 162 | ex.printStackTrace(); 163 | } 164 | process(packet); 165 | // clients.add(new ServerClient("Ashmeet",packet.getAddress(),packet.getPort(),50)); 166 | //System.out.println(clients.get(0).address.toString()+ " : "+clients.get(0).port); 167 | // System.out.println("Clients Size : "+clients.size()); 168 | String string = new String(packet.getData()); 169 | string.substring(3); 170 | string = string.split("/e/")[0]; 171 | System.out.println("received String " + string);// shows the String that are Recived VIA socket 172 | } 173 | } 174 | }; 175 | receive.start(); 176 | } 177 | 178 | private void process(DatagramPacket packet) { 179 | String string = new String(packet.getData()); 180 | if (raw) { 181 | System.out.println(string); 182 | } 183 | if (string.startsWith("/c/")) { 184 | int id = UniqueIdentifier.getIdentifier(); 185 | System.out.println("Client ID : " + id); 186 | String name = string.split("/c/|/e/")[1]; 187 | 188 | 189 | System.out.println("client connected " + name + " || clients no : " + clients.size()); 190 | String ID = "/c/" + id; 191 | send(ID, packet.getAddress(), packet.getPort()); 192 | } else if (string.startsWith("/m/")) { 193 | sendToAll(string); 194 | } else if (string.startsWith("/t/")) { 195 | sendToAll(string); 196 | } else if (string.startsWith("/d/")) { 197 | String id = string.split("/d/|/e/")[1]; 198 | System.out.println("Disconnected Message received "); 199 | disconnect(Integer.parseInt(id), true); 200 | } else if (string.startsWith("/s/")) { 201 | sendToAll(string); 202 | System.out.println("Server send the seen message request "); 203 | } else { 204 | System.out.println("No Connetion packet ReceiveD"); 205 | } 206 | } 207 | 208 | private void sendToAll(String message) { 209 | if (message.startsWith("/m/")) { 210 | String text = message.split("/m/|/e/")[1]; 211 | System.out.println(text); 212 | } 213 | for (int i = 0; i < clients.size(); i++) { 214 | ServerClient client = clients.get(i); 215 | send(message.getBytes(), client.address, client.port); 216 | } 217 | } 218 | 219 | public void disconnect(int id, boolean status) { 220 | ServerClient c = null; 221 | for (int i = 0; i < clients.size(); i++) { 222 | if (clients.get(i).getID() == id) { 223 | c = clients.get(i); 224 | clients.remove(i); 225 | break; 226 | } 227 | } 228 | String message = ""; 229 | if (status) { 230 | message = "username: " + c.name.toString() + " || ID: " + c.getID() + " || IP: " + c.address.toString() + " || port: " + c.port + " || Status: disconnected"; 231 | String string = c.name.toString() + "/i/" + c.getID(); 232 | // System.out.println(string); 233 | sendToAll("/d/" + string + "/e/"); 234 | } else { 235 | message = "username: " + c.name.toString() + " || ID: " + c.getID() + " || IP: " + c.address.toString() + " || port: " + c.port + " || Status: Timed Out"; 236 | } 237 | System.out.println(message); 238 | } 239 | 240 | private void quit() { 241 | for (int i = 0; i < clients.size(); i++) { 242 | disconnect(clients.get(i).getID(), true); 243 | } 244 | running = false; 245 | try { 246 | socket.close(); 247 | System.out.println("Server Down ! "); 248 | } catch (Exception ex) { 249 | ex.printStackTrace(); 250 | } 251 | } 252 | 253 | } 254 | -------------------------------------------------------------------------------- /src/ServerClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/ServerClient.class -------------------------------------------------------------------------------- /src/ServerClient.java: -------------------------------------------------------------------------------- 1 | 2 | import java.net.InetAddress; 3 | 4 | 5 | public class ServerClient { 6 | public int port; 7 | public String name; 8 | public InetAddress address; 9 | public int ID; 10 | public int attempt=0; 11 | 12 | public ServerClient(String name,InetAddress address, int port,final int ID){ 13 | this.port=port; 14 | this.name=name; 15 | this.address=address; 16 | this.ID=ID; 17 | } 18 | 19 | public String getName() { 20 | return name; 21 | } 22 | 23 | public int getID() { 24 | return ID; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/ServerMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/ServerMain.class -------------------------------------------------------------------------------- /src/ServerMain.java: -------------------------------------------------------------------------------- 1 | 2 | public class ServerMain { 3 | int port; 4 | Server server; 5 | public ServerMain(int port){ 6 | this.port=port; 7 | server=new Server(port); 8 | System.out.println("Server Started "); 9 | } 10 | public static void main(String []args){ 11 | int port; 12 | if(args.length!=1){ 13 | System.out.println("Please Enter port number For Server "); 14 | return; 15 | } 16 | port=Integer.parseInt(args[0]); 17 | new ServerMain(port); 18 | } 19 | 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/UniqueIdentifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmeet4293/Chat-Application-in-java-using-javafx/890b2a57536cc8fe9aee8f70e551568f4ad9df79/src/UniqueIdentifier.class -------------------------------------------------------------------------------- /src/UniqueIdentifier.java: -------------------------------------------------------------------------------- 1 | import java.util.ArrayList; 2 | import java.util.Collections; 3 | import java.util.List; 4 | 5 | public class UniqueIdentifier { 6 | private static List ids= new ArrayList<>(); 7 | private static final int RANGE=10000; 8 | private static int index=0; 9 | 10 | static{ 11 | for(int i=0;iids.size()-1) index=0; 21 | return ids.get(index++); 22 | } 23 | } 24 | --------------------------------------------------------------------------------