Problemas recorrentes de BSOD durante a execução de um servidor Minecraft (Java)

2

Eu estou querendo saber se alguém pode me ajudar a ler os dois BSODs recentes que ocorreram durante a execução de um servidor Minecraft. Eu venho hospedando um servidor para meus amigos e eu de vez em quando, por alguns meses, por anos. Isso nunca foi um problema no passado.

Aqui está um .zip dos dois dumps associados às BSODs.

link

Eu vi "FAILURE_BUCKET_ID: X64_0x124_AuthenticAMD_PROCESSOR_CACHE" lá, o que me levaria a acreditar que é hardware, mas não tenho nenhuma experiência anterior analisando esses arquivos de dump e a ajuda seria muito apreciada!

    
por Brend2b 20.10.2017 / 06:58

1 resposta

1

Analisando o despejo com o windbg mostra que você tem um L1 Problema de cache ao gravar dados DCACHEL1_DWR_ERR :

*******************************************************************************
*                                                                             *
*                        Bugcheck Analysis                                    *
*                                                                             *
*******************************************************************************

WHEA_UNCORRECTABLE_ERROR (124)
A fatal hardware error has occurred. Parameter 1 identifies the type of error
source that reported the error. Parameter 2 holds the address of the
WHEA_ERROR_RECORD structure that describes the error conditon.
Arguments:
Arg1: 0000000000000000, Machine Check Exception
Arg2: fffffa800d1cc028, Address of the WHEA_ERROR_RECORD structure.
Arg3: 00000000f6602000, High order 32-bits of the MCi_STATUS value.
Arg4: 0000000000000145, Low order 32-bits of the MCi_STATUS value.

Debugging Details:
------------------

3: kd> !errrec fffffa800d1cc028
===============================================================================
Common Platform Error Record @ fffffa800d1cc028
-------------------------------------------------------------------------------
Record Id     : 01d3494b99e06845
Severity      : Fatal (1)
Length        : 928
Creator       : Microsoft
Notify Type   : Machine Check Exception
Timestamp     : 10/20/2017 4:19:02 (UTC)
Flags         : 0x00000000

===============================================================================
Section 0     : Processor Generic
-------------------------------------------------------------------------------
Descriptor    @ fffffa800d1cc0a8
Section       @ fffffa800d1cc180
Offset        : 344
Length        : 192
Flags         : 0x00000001 Primary
Severity      : Fatal

Proc. Type    : x86/x64
Instr. Set    : x64
Error Type    : Cache error
Operation     : Data Write
Flags         : 0x00
Level         : 1
CPU Version   : 0x0000000000100fa0
Processor ID  : 0x0000000000000003

===============================================================================
Section 1     : x86/x64 Processor Specific
-------------------------------------------------------------------------------
Descriptor    @ fffffa800d1cc0f0
Section       @ fffffa800d1cc240
Offset        : 536
Length        : 128
Flags         : 0x00000000
Severity      : Fatal

Local APIC Id : 0x0000000000000003
CPU Id        : a0 0f 10 00 00 08 06 03 - 09 20 80 00 ff fb 8b 17
                00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00
                00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00

Proc. Info 0  @ fffffa800d1cc240

===============================================================================
Section 2     : x86/x64 MCA
-------------------------------------------------------------------------------
Descriptor    @ fffffa800d1cc138
Section       @ fffffa800d1cc2c0
Offset        : 664
Length        : 264
Flags         : 0x00000000
Severity      : Fatal

Error         : DCACHEL1_DWR_ERR (Proc 3 Bank 0)
  Status      : 0xf660200000000145
  Address     : 0x000000028939fe00
  Misc.       : 0x0000000000000000

3: kd> !sysinfo machineid
BiosVersion = 2101   
BiosReleaseDate = 04/08/2011
BaseBoardProduct = M4A89GTD-PRO/USB3
BaseBoardVersion = Rev 1.xx

Atualize para o BIOS 3030 e veja se isso ajuda. Também tente aumentar um pouco a tensão da CPU. Se nada ajudar, o AMD Phenom (tm) II X6 1090T está danificado e precisa ser substituído.

    
por 20.10.2017 / 16:31