java crach 日誌解析

在java開發中,或許會出現以下錯誤,這種錯誤大多出如今開發中涉及本地代碼的地方。html

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000057441b5f, pid=9272, tid=0x0000000000004534
#           信號名稱             信號碼         程序計數器的值       進程號     線程號
# JRE version: Java(TM) SE Runtime Environment (8.0_171-b11) (build 1.8.0_171-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.171-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V  [jvm.dll+0xc1b5f]
  問題幀信息(和pc等價,但表達方式爲 本地庫+偏移量)
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
#
java

這種錯誤主要來源:nginx

  1. 自定義本地方法有誤,有不合邏輯,很大多是參數傳遞有誤(或者參數自己有誤)
  2. 虛擬機內存問題,根據日誌進行GC分析,合理配置內存參數
  3. 虛擬機自己錯誤(可能性很小)

問題分析參考:http://www.javashuo.com/article/p-bnaepzyg-a.htmlredis

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000057441b5f, pid=9272, tid=0x0000000000004534
#           信號名稱             信號碼         程序計數器的值       進程號     線程號
# JRE version: Java(TM) SE Runtime Environment (8.0_171-b11) (build 1.8.0_171-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.171-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V  [jvm.dll+0xc1b5f]
  問題幀信息(和pc等價,但表達方式爲 本地庫+偏移量)
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
#

---------------  T H R E A D  ---------------
//當前線程
Current thread (0x0000000003422800):  JavaThread "main" [_thread_in_vm, id=17716, stack(0x0000000003130000,0x0000000003230000)]
                   指針                線程類型    名       何種線程     線程id       棧區間
                 
//致使虛擬機終止的非預期的信號信息                 
siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000240
                         信號碼                       出問題的指針  


Registers: //寄存器上下文
RAX=0x000000001821ba50, RBX=0x00000000033184c0, RCX=0x000000000000000a, RDX=0x000000000000000b
RSP=0x000000000322ca30, RBP=0x0000000003422800, RSI=0x0000000003422800, RDI=0x0000000000000220
R8 =0x000000000000000b, R9 =0x00000000033184c0, R10=0x0000000000000000, R11=0x0000000000000005
R12=0x0000000000000006, R13=0x000000000322cb10, R14=0x0000000000000001, R15=0x000000000322cbb0
RIP=0x0000000057441b5f, EFLAGS=0x0000000000010202

Top of Stack: (sp=0x000000000322ca30) //棧頂程序計數器旁的操做嗎,能夠被反彙編成系統崩潰前的指令
0x000000000322ca30:   0000000003472450 00000000575b7021
0x000000000322ca40:   0000000000000000 0000000057597b75
0x000000000322ca50:   0000000000000000 0000000019cf8f3b
0x000000000322ca60:   0000670b2094b49f 00007ff94fa70428
0x000000000322ca70:   0000000000000010 0000000000000010
0x000000000322ca80:   0000000000000000 0000000000000000
0x000000000322ca90:   000000000322cbb0 00000000033184c0
0x000000000322caa0:   000000000322cda8 000000000322cc60
0x000000000322cab0:   0000000003422800 00000000574431c7
0x000000000322cac0:   0000000017b11288 0000000003422800
0x000000000322cad0:   0000000100002368 0000000003422800
0x000000000322cae0:   0000000100001ef8 00007ff94be84301
0x000000000322caf0:   0000000003422800 00000000013f0f00
0x000000000322cb00:   0000000017b11288 0000000003422800
0x000000000322cb10:   0000000017b11288 0000000003422800
0x000000000322cb20:   000000000322cf08 0000000000000000 

Instructions: (pc=0x0000000057441b5f)//出異常處的指令,可反編譯爲彙編幫助分析 0x0000000057441b3f:   f8 48 89 44 0a f0 45 3b 01 7c e6 41 ff 09 48 85
0x0000000057441b4f:   ff 0f 84 7c 02 00 00 45 84 f6 0f 84 23 01 00 00
0x0000000057441b5f:   8b 47 20 c1 e8 0a a8 01 0f 84 15 01 00 00 4c 8b
0x0000000057441b6f:   a5 30 01 00 00 48 8b 1d 8d 73 73 00 49 8b 44 24 


Register to memory mapping: //寄存器和內存映射信息

RAX=0x000000001821ba50 is an unknown value
RBX=0x00000000033184c0 is an unknown value
RCX=0x000000000000000a is an unknown value
RDX=0x000000000000000b is an unknown value
RSP=0x000000000322ca30 is pointing into the stack for thread: 0x0000000003422800
RBP=0x0000000003422800 is a thread
RSI=0x0000000003422800 is a thread
RDI=0x0000000000000220 is an unknown value
R8 =0x000000000000000b is an unknown value
R9 =0x00000000033184c0 is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x0000000000000005 is an unknown value
R12=0x0000000000000006 is an unknown value
R13=0x000000000322cb10 is pointing into the stack for thread: 0x0000000003422800
R14=0x0000000000000001 is an unknown value
R15=0x000000000322cbb0 is pointing into the stack for thread: 0x0000000003422800

//線程棧。包含了地址,棧頂,棧計數器和線程還沒有使用的棧信息
Stack: [0x0000000003130000,0x0000000003230000],  sp=0x000000000322ca30,  free space=1010k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V  [jvm.dll+0xc1b5f]
V  [jvm.dll+0xc31c7]
V  [jvm.dll+0x215877]
V  [jvm.dll+0x215bea]
V  [jvm.dll+0x7cad5]
V  [jvm.dll+0x7d164]
V  [jvm.dll+0x7e836]
V  [jvm.dll+0x7a2f7]
V  [jvm.dll+0x5e02f]
V  [jvm.dll+0x7c544]
V  [jvm.dll+0x192731]
V  [jvm.dll+0x192acb]
C  [java.dll+0x1ead]
C  [ag.dll+0x190e]
C  0x0000000003538c67

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  wqz.zoom.instrument.NativeAgent.another_foo(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+0
j  java.lang.ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+34
j  java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+27
j  java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;+12
j  java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+138
j  java.net.URLClassLoader.access$100(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+3
j  java.net.URLClassLoader$1.run()Ljava/lang/Class;+43
j  java.net.URLClassLoader$1.run()Ljava/lang/Object;+1
v  ~StubRoutines::call_stub
j  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
j  java.net.URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+13
j  java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+70
j  sun.misc.Launcher$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+81
j  java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+3
j  sun.launcher.LauncherHelper.checkAndLoadMain(ZILjava/lang/String;)Ljava/lang/Class;+93
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread ) //線程信息
  0x0000000019cc9800 JavaThread "Service Thread" daemon [_thread_blocked, id=26172, stack(0x000000001a4d0000,0x000000001a5d0000)]
  0x0000000019cf8800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=19348, stack(0x000000001a3d0000,0x000000001a4d0000)]
  0x0000000019cc8800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=13820, stack(0x000000001a2d0000,0x000000001a3d0000)]
  0x0000000019cb1000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=13952, stack(0x000000001a1d0000,0x000000001a2d0000)]
  0x0000000018263000 JavaThread "Attach Listener" daemon [_thread_blocked, id=12732, stack(0x000000001a0d0000,0x000000001a1d0000)]
  0x0000000019c1b800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=24360, stack(0x0000000019fd0000,0x000000001a0d0000)]
  0x000000001823c800 JavaThread "Finalizer" daemon [_thread_blocked, id=9820, stack(0x0000000019ad0000,0x0000000019bd0000)]
  0x0000000003514000 JavaThread "Reference Handler" daemon [_thread_blocked, id=10248, stack(0x00000000199d0000,0x0000000019ad0000)]
=>0x0000000003422800 JavaThread "main" [_thread_in_vm, id=17716, stack(0x0000000003130000,0x0000000003230000)]

Other Threads: //其餘線程
  0x0000000018218000 VMThread [stack: 0x00000000198d0000,0x00000000199d0000] [id=10868]
  0x0000000019d8b800 WatcherThread [stack: 0x000000001a5d0000,0x000000001a6d0000] [id=3052]

  
//虛擬機狀態
VM state:not at safepoint (normal execution)
//not at a safepoint:正常運行狀態;
//at safepoint:全部線程都由於虛擬機等待狀態而阻塞,等待一個虛擬機操做完成;
//synchronizing:一個特殊的虛擬機操做,要求虛擬機內的其它線程保持等待狀態

//虛擬機的Mutex和Monitor目前沒有被線程持有。Mutex是虛擬機內部的鎖,而Monitor則關聯到了Java對象
VM Mutex/Monitor currently owned by a thread: None

Heap://堆信息。新生代、老生代、永久代
 PSYoungGen      total 37888K, used 7316K [0x00000000d6000000, 0x00000000d8a00000, 0x0000000100000000)
  eden space 32768K, 22% used [0x00000000d6000000,0x00000000d6725040,0x00000000d8000000)
  from space 5120K, 0% used [0x00000000d8500000,0x00000000d8500000,0x00000000d8a00000)
  to   space 5120K, 0% used [0x00000000d8000000,0x00000000d8000000,0x00000000d8500000)
 ParOldGen       total 86016K, used 0K [0x0000000082000000, 0x0000000087400000, 0x00000000d6000000)
  object space 86016K, 0% used [0x0000000082000000,0x0000000082000000,0x0000000087400000)
 Metaspace       used 4343K, capacity 5654K, committed 6016K, reserved 1056768K
  class space    used 473K, capacity 522K, committed 640K, reserved 1048576K

Card table byte_map: [0x00000000128e0000,0x0000000012ce0000] byte_map_base: 0x00000000124d0000

Marking Bits: (ParMarkBitMap*) 0x0000000057ba08c0
 Begin Bits: [0x0000000013580000, 0x0000000015500000)
 End Bits:   [0x0000000015500000, 0x0000000017480000)

Polling page: 0x0000000000f60000


//代碼緩存,這是一塊用於編譯和保存本地代碼的內存,注意是本地代碼,它和PermGen(永久代)是不同的,永久帶是用來存放Java類定義的。
CodeCache: size=245760Kb used=1114Kb max_used=1116Kb free=244645Kb
 bounds [0x0000000003520000, 0x0000000003790000, 0x0000000012520000]
 total_blobs=292 nmethods=19 adapters=187
 compilation: enabled

Compilation events (10 events):
Event: 0.192 Thread 0x0000000019cc8800 nmethod 1 0x0000000003636410 code [0x0000000003636540, 0x00000000036365d8]
Event: 0.192 Thread 0x0000000019cc8800    9       4       java.lang.String::charAt (29 bytes)
Event: 0.192 Thread 0x0000000019cb1000 nmethod 11 0x0000000003633d50 code [0x0000000003633ea0, 0x0000000003634058]
Event: 0.193 Thread 0x0000000019cc8800 nmethod 9 0x0000000003633a50 code [0x0000000003633ba0, 0x0000000003633c58]
Event: 0.194 Thread 0x0000000019cf8800   17       3       java.lang.AbstractStringBuilder::append (50 bytes)
Event: 0.194 Thread 0x0000000019cf8800 nmethod 17 0x0000000003636f50 code [0x0000000003637120, 0x0000000003637878]
Event: 0.194 Thread 0x0000000019cf8800   18       3       sun.nio.cs.ext.DoubleByte$Encoder::encodeChar (21 bytes)
Event: 0.194 Thread 0x0000000019cf8800 nmethod 18 0x0000000003636ad0 code [0x0000000003636c40, 0x0000000003636df0]
Event: 0.195 Thread 0x0000000019cf8800   19       3       java.util.Arrays::copyOfRange (63 bytes)
Event: 0.196 Thread 0x0000000019cf8800 nmethod 19 0x0000000003634750 code [0x0000000003634960, 0x0000000003635498]

GC Heap History (0 events)://GC歷史紀錄
No events

Deoptimization events (0 events)://非優化事件
No events

Classes redefined (1 events): //重定義
Event: 0.186 Thread 0x0000000018218000 redefined class name=java.lang.ClassLoader, count=1

Internal exceptions (9 events)://內部異常
Event: 0.030 Thread 0x0000000003422800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x00000000d6007cb0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot
Event: 0.030 Thread 0x0000000003422800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000d6007f98) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prim
Event: 0.071 Thread 0x0000000003422800 Exception <a 'java/util/zip/ZipException'> (0x00000000d60da258) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 0.071 Thread 0x0000000003422800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d60da908) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jvm.cpp, line 1435]
Event: 0.071 Thread 0x0000000003422800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d60dab18) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jvm.cpp, line 1435]
Event: 0.140 Thread 0x0000000003422800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64faf48) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jvm.cpp, line 1435]
Event: 0.140 Thread 0x0000000003422800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64fb340) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jvm.cpp, line 1435]
Event: 0.140 Thread 0x0000000003422800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64fdc98) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jvm.cpp, line 1435]
Event: 0.140 Thread 0x0000000003422800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64fe090) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jvm.cpp, line 1435]

Events (10 events):
Event: 0.189 loading class sun/usagetracker/UsageTrackerClient$3
Event: 0.189 loading class sun/usagetracker/UsageTrackerClient$3 done
Event: 0.191 loading class java/io/FileOutputStream$1
Event: 0.191 loading class java/io/FileOutputStream$1 done
Event: 0.191 loading class sun/launcher/LauncherHelper
Event: 0.191 loading class sun/launcher/LauncherHelper done
Event: 0.191 loading class wqz/zoom/instrument/Native
Event: 0.191 loading class wqz/zoom/instrument/Native done
Event: 0.195 loading class wqz/zoom/instrument/NativeAgent
Event: 0.195 loading class wqz/zoom/instrument/NativeAgent done


Dynamic libraries: //內存映射:虛擬機崩潰時虛擬機內存列表區域
            內存   -   區域                   正在被使用的類庫
0x00007ff79e9c0000 - 0x00007ff79e9f7000     C:\Program Files (x86)\Common Files\Oracle\Java\javapath\java.exe
0x00007ff94fa60000 - 0x00007ff94fc41000     C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ff94d3f0000 - 0x00007ff94d4a2000     C:\WINDOWS\System32\KERNEL32.DLL
0x00007ff94be30000 - 0x00007ff94c0a3000     C:\WINDOWS\System32\KERNELBASE.dll
0x00007ff94f8f0000 - 0x00007ff94f991000     C:\WINDOWS\System32\ADVAPI32.dll
0x00007ff94cfd0000 - 0x00007ff94d06e000     C:\WINDOWS\System32\msvcrt.dll
0x00007ff94f9a0000 - 0x00007ff94f9fb000     C:\WINDOWS\System32\sechost.dll
0x00007ff94d1d0000 - 0x00007ff94d2f4000     C:\WINDOWS\System32\RPCRT4.dll
0x00007ff94f550000 - 0x00007ff94f6e0000     C:\WINDOWS\System32\USER32.dll
0x00007ff94c330000 - 0x00007ff94c350000     C:\WINDOWS\System32\win32u.dll
0x00007ff94f6f0000 - 0x00007ff94f718000     C:\WINDOWS\System32\GDI32.dll
0x00007ff94c350000 - 0x00007ff94c4e2000     C:\WINDOWS\System32\gdi32full.dll
0x00007ff94cc00000 - 0x00007ff94cc9f000     C:\WINDOWS\System32\msvcp_win.dll
0x00007ff94c0b0000 - 0x00007ff94c1aa000     C:\WINDOWS\System32\ucrtbase.dll
0x00007ff93fe80000 - 0x00007ff9400e9000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17134.345_none_fb429a5930656358\COMCTL32.dll
0x00007ff94f220000 - 0x00007ff94f543000     C:\WINDOWS\System32\combase.dll
0x00007ff94c2b0000 - 0x00007ff94c32a000     C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ff94fa00000 - 0x00007ff94fa2d000     C:\WINDOWS\System32\IMM32.DLL
0x00000000570d0000 - 0x00000000571a2000     D:\java\jre1.8.0_171\bin\msvcr100.dll
0x0000000057380000 - 0x0000000057c20000     D:\java\jre1.8.0_171\bin\server\jvm.dll
0x00007ff94f8e0000 - 0x00007ff94f8e8000     C:\WINDOWS\System32\PSAPI.DLL
0x00007ff93e120000 - 0x00007ff93e143000     C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ff942a10000 - 0x00007ff942a1a000     C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ff948900000 - 0x00007ff948909000     C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ff94f1b0000 - 0x00007ff94f21c000     C:\WINDOWS\System32\WS2_32.dll
0x00007ff942d70000 - 0x00007ff942d9a000     C:\WINDOWS\SYSTEM32\winmmbase.dll
0x00007ff94c260000 - 0x00007ff94c2a9000     C:\WINDOWS\System32\cfgmgr32.dll
0x0000000057290000 - 0x000000005729f000     D:\java\jre1.8.0_171\bin\verify.dll
0x0000000057260000 - 0x0000000057289000     D:\java\jre1.8.0_171\bin\java.dll
0x00000000570a0000 - 0x00000000570c3000     D:\java\jre1.8.0_171\bin\instrument.dll
0x0000000057240000 - 0x0000000057256000     D:\java\jre1.8.0_171\bin\zip.dll
0x00007ff94dcc0000 - 0x00007ff94f0ff000     C:\WINDOWS\System32\SHELL32.dll
0x00007ff94f100000 - 0x00007ff94f1a9000     C:\WINDOWS\System32\shcore.dll
0x00007ff94c4f0000 - 0x00007ff94cbfd000     C:\WINDOWS\System32\windows.storage.dll
0x00007ff94cf50000 - 0x00007ff94cfa1000     C:\WINDOWS\System32\shlwapi.dll
0x00007ff94be10000 - 0x00007ff94be21000     C:\WINDOWS\System32\kernel.appcore.dll
0x00007ff94bdd0000 - 0x00007ff94bdef000     C:\WINDOWS\System32\profapi.dll
0x00007ff94bd80000 - 0x00007ff94bdcc000     C:\WINDOWS\System32\powrprof.dll
0x00007ff94bd70000 - 0x00007ff94bd7a000     C:\WINDOWS\System32\FLTLIB.DLL
0x000000006a100000 - 0x000000006a115000     D:\java\eeworkspace\javassist\ag.dll
0x0000000057070000 - 0x0000000057099000     D:\java\jdk1.8.0_171\jre\bin\java.dll
0x00007ff948170000 - 0x00007ff948339000     C:\WINDOWS\SYSTEM32\dbghelp.dll

VM Arguments://虛擬機參數
jvm_args: -javaagent:agent.jar 
java_command: wqz.zoom.instrument.Native
java_class_path (initial): agent.jar;agent.jar
Launcher Type: SUN_STANDARD

Environment Variables://環境變量
JAVA_HOME=D:\java\jdk1.8.0_171
CLASSPATH=.;D:\java\jdk1.8.0_171\lib;D:\java\jdk1.8.0_171\jre\lib;D:\java\jdk1.8.0_171\lib\tools.jar;
PATH=C:\Perl64\site\bin;C:\Perl64\bin;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Program Files\Git\cmd;C:\WINDOWS\System32\OpenSSH\;C:\WINDOWS\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;D:\java\jdk1.8.0_171\jre\bin;C:\Users\qizhuang\.dnx\bin;C:\Users\qizhuang\AppData\Local\Microsoft\WindowsApps;D:\java\jdk1.8.0_171\bin;D:\tomcat\apache-tomcat-8.5.32\bin;D:\java\apache-maven-3.5.4\bin;D:\minio;C:\OpenSSL-Win64\bin;C:\Program Files\MySQL\MySQL Server 8.0\bin;D:\Program Files\Docker Toolbox;D:\Program Files\win64-build\bin;D:\java\redis;D:\Program Files\erl7.2.1\bin;D:\Program Files\rabbitmq_3.6.0\rabbitmq_server-3.6.0\sbin;D:\Program Files\nginx\nginx-1.14.0;C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin;D:\java\textspace\helloworld;
USERNAME=qizhuang
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 10, GenuineIntel



---------------  S Y S T E M  ---------------

OS: Windows 10.0 , 64 bit Build 17134 (10.0.17134.1)

CPU:total 6 (initial active 6) (6 cores per cpu, 1 threads per core) family 6 model 158 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, tsc, tscinvbit, bmi1, bmi2, adx

Memory: 4k page, physical 8253040k(3680832k free), swap 14008564k(7055292k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.171-b11) for windows-amd64 JRE (1.8.0_171-b11), built on Mar 28 2018 16:06:12 by "java_re" with MS VC++ 10.0 (VS2010)

time: Thu Oct 18 10:45:08 2018
elapsed time: 0 seconds (0d 0h 0m 0s)
相關文章
相關標籤/搜索